/* =========================================================
   Twonine0 Beauty Salon — Premium Modern Stylesheet
   ========================================================= */

:root {
  --ink: #1a1814;
  --ink-soft: #4a4640;
  --taupe: #9a8f7c;
  --taupe-deep: #7a6f5e;
  --olive-dark: #1e2018;
  --olive-darker: #141510;
  --sand: #d4c9b4;
  --cream: #f5f0e8;
  --paper: #fdfbf7;
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --line: rgba(26, 24, 20, 0.10);
  --line-on-dark: rgba(243, 239, 230, 0.12);
  --on-dark: #f5f0e8;
  --on-dark-soft: #c8c0ae;
  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --shadow-soft: 0 24px 80px -20px rgba(20, 18, 14, 0.35);
  --shadow-card: 0 4px 24px rgba(20, 18, 14, 0.08);
  --container: 1200px;
  --section-pad: clamp(80px, 10vw, 140px);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 16px; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: var(--section-pad) 0; position: relative; }
.section--dark { background: var(--olive-dark); color: var(--on-dark); }
.section--cream { background: var(--cream); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}
.section--dark .eyebrow { color: var(--gold-light); }
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}
h2.section-title { font-size: clamp(34px, 4.6vw, 58px); max-width: 18ch; }
.section-lead { font-size: clamp(16px, 1.4vw, 18px); color: var(--ink-soft); max-width: 48ch; line-height: 1.75; }
.section--dark .section-lead { color: var(--on-dark-soft); }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20,18,14,0.18); }
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--olive-darker); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--cream); }
.btn-ghost-dark { background: transparent; border-color: rgba(243,239,230,0.25); color: var(--on-dark); }
.btn-ghost-dark:hover { background: rgba(243,239,230,0.1); border-color: rgba(243,239,230,0.5); }
.btn-gold { background: var(--gold); color: var(--olive-darker); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); }
.btn-wa { background: #25543c; color: #fff; }
.btn-wa:hover { background: #1e4330; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 22px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-scrolled {
  background: rgba(253, 251, 247, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line), 0 4px 20px rgba(20,18,14,0.06);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 36px; width: auto; transition: all 0.3s ease; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--on-dark);
  transition: color 0.3s ease;
}
.site-header.is-scrolled .brand-name { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.site-header.is-scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a:hover { color: var(--on-dark); }
.site-header.is-scrolled .nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none; border: none; padding: 8px;
  color: var(--on-dark);
  transition: color var(--transition);
}
.site-header.is-scrolled .nav-toggle { color: var(--ink); }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-outline { display: none; }
}

.mobile-nav {
  position: fixed; inset: 0;
  background: var(--olive-darker);
  z-index: 70;
  display: flex; flex-direction: column;
  padding: 32px 32px 48px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.7, 0, 0.3, 1);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 56px; }
.mobile-nav-close { background: none; border: none; color: var(--on-dark); padding: 8px; }
.mobile-nav-close svg { width: 26px; height: 26px; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--on-dark);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-on-dark);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-nav a:hover { color: var(--gold); padding-left: 8px; }
.mobile-nav .btn { margin-top: 32px; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--on-dark);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 78% 30%; transition: transform 8s ease; }
.hero:hover .hero-media img { transform: scale(1.04); }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,18,14,0.2) 0%, rgba(20,18,14,0.3) 40%, rgba(14,13,10,0.95) 100%),
    linear-gradient(90deg, rgba(14,13,10,0.7) 0%, rgba(14,13,10,0.05) 60%);
}
.hero-content { position: relative; z-index: 1; padding: 180px 0 100px; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.hero-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.hero h1 {
  font-size: clamp(44px, 7.5vw, 104px);
  max-width: 16ch;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero p.lead { max-width: 44ch; font-size: clamp(16px, 1.5vw, 18px); color: rgba(245,240,232,0.75); margin-bottom: 44px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }
.hero-meta {
  display: flex; gap: 48px; flex-wrap: wrap;
  border-top: 1px solid rgba(243,239,230,0.12);
  padding-top: 32px;
}
.hero-meta div strong {
  font-family: var(--font-display);
  font-size: 30px;
  display: block;
  color: var(--on-dark);
  font-weight: 400;
}
.hero-meta div span { font-size: 12px; color: rgba(245,240,232,0.55); letter-spacing: 0.04em; text-transform: uppercase; }

.scroll-cue {
  position: absolute; right: 32px; bottom: 32px; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(245,240,232,0.45); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); animation: scrollline 2s ease-in-out infinite; }
@keyframes scrollline { 0% { transform: scaleY(0); transform-origin: top; opacity: 1; } 100% { transform: scaleY(1); transform-origin: top; opacity: 0; } }
@media (max-width: 640px) { .scroll-cue { display: none; } }

/* ---------------- Brand strip ---------------- */
.brands-strip {
  background: var(--ink);
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.marquee { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee-track { display: flex; align-items: center; gap: 72px; padding-right: 72px; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: 17px;
  color: rgba(245,240,232,0.45);
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.marquee-track span:hover { color: var(--gold); }
.marquee-track span.dot::before { content: "◆"; margin-right: 72px; color: var(--gold); font-size: 8px; vertical-align: middle; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- About ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-media:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(253,251,247,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 32px rgba(20,18,14,0.15);
}
.about-badge img { height: 28px; width: auto; }
.about-badge p { margin: 0; font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.about-body p { color: var(--ink-soft); margin: 0 0 20px; max-width: 52ch; line-height: 1.75; }
.about-stats { display: grid; grid-template-columns: repeat(3, auto); gap: 32px; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--line); }
.about-stats div strong { font-family: var(--font-display); font-size: 34px; display: block; font-weight: 400; color: var(--ink); }
.about-stats div span { font-size: 12px; color: var(--taupe); letter-spacing: 0.04em; text-transform: uppercase; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ---------------- Services ---------------- */
.service-tabs {
  display: flex; gap: 8px; overflow-x: auto;
  padding-bottom: 6px; margin-bottom: 44px;
  scrollbar-width: none;
}
.service-tabs::-webkit-scrollbar { display: none; }
.service-tab {
  flex: 0 0 auto;
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.service-tab.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.service-tab:not(.is-active):hover { border-color: var(--gold); color: var(--ink); background: rgba(201,169,110,0.06); }

.service-panel { display: none; }
.service-panel.is-active { display: block; animation: fadeUp 0.4s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.service-subtitle { color: var(--ink-soft); margin-bottom: 28px; max-width: 60ch; }

.service-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.service-row {
  background: var(--paper);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  transition: background var(--transition);
}
.service-row:hover { background: var(--cream); }
.service-row-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.service-row-head h4 { margin: 0; font-size: 18px; font-weight: 600; }
.service-row-head .duration { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.service-row p { margin: 6px 0 0; color: var(--ink-soft); font-size: 14px; max-width: 56ch; line-height: 1.65; }
.service-price { font-family: var(--font-display); font-size: 17px; white-space: nowrap; text-align: right; color: var(--ink); font-weight: 400; }

.brand-table { display: grid; gap: 16px; }
.brand-row {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.brand-row:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.brand-row h4 { margin: 0 0 8px; font-size: 20px; font-weight: 600; }
.brand-row p { margin: 0 0 20px; color: var(--ink-soft); font-size: 14px; max-width: 60ch; }
.brand-chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.brand-chip {
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  display: flex; gap: 8px; align-items: center;
  transition: border-color var(--transition), background var(--transition);
}
.brand-chip:hover { border-color: var(--gold); background: rgba(201,169,110,0.06); }
.brand-chip strong { font-weight: 700; }

.size-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); }
table.size-table { width: 100%; border-collapse: collapse; min-width: 560px; }
table.size-table th, table.size-table td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
table.size-table th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--taupe); font-weight: 700; background: var(--cream); }
table.size-table th:not(:first-child), table.size-table td:not(:first-child) { text-align: center; }
table.size-table tr:last-child td { border-bottom: none; }
table.size-table td:first-child { font-weight: 600; white-space: normal; min-width: 200px; }
table.size-table tr:hover td { background: var(--cream); }

.coloring-extra { display: flex; justify-content: space-between; gap: 16px; padding: 18px 22px; border: 1.5px dashed var(--line); border-radius: var(--radius-md); margin-top: 20px; font-size: 14px; flex-wrap: wrap; }
.grey-blend { margin-top: 32px; padding: 32px; background: var(--olive-dark); color: var(--on-dark); border-radius: var(--radius-xl); }
.grey-blend h4 { font-size: 24px; margin-bottom: 12px; font-weight: 400; }
.grey-blend p { color: var(--on-dark-soft); max-width: 60ch; margin-bottom: 24px; line-height: 1.7; }
.grey-blend-tiers { display: flex; gap: 14px; flex-wrap: wrap; }
.grey-blend-tiers div { border: 1px solid rgba(201,169,110,0.3); border-radius: var(--radius-md); padding: 16px 22px; background: rgba(201,169,110,0.06); }
.grey-blend-tiers strong { display: block; font-family: var(--font-display); font-size: 16px; font-weight: 400; }
.grey-blend-tiers span { font-size: 13px; color: var(--gold); }

.service-note { margin-top: 24px; font-size: 13px; color: var(--taupe); border-top: 1px solid var(--line); padding-top: 20px; line-height: 1.7; }

.simple-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; }
.simple-chip {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  transition: all var(--transition);
  background: var(--paper);
}
.simple-chip:hover { border-color: var(--gold); background: rgba(201,169,110,0.04); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.simple-chip span:first-child { font-weight: 600; font-size: 15px; }
.simple-chip span:last-child { font-family: var(--font-display); color: var(--taupe-deep); }

@media (max-width: 640px) {
  .service-row { grid-template-columns: 1fr; }
  .service-price { text-align: left; }
}

/* ---------------- Photo break ---------------- */
.photo-break { position: relative; height: clamp(380px, 56vw, 580px); overflow: hidden; }
.photo-break img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.photo-break:hover img { transform: scale(1.04); }
.photo-break::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,13,10,0.82) 0%, rgba(14,13,10,0.12) 65%); }
.photo-break-content { position: absolute; inset: 0; display: flex; align-items: center; z-index: 1; }
.photo-break-content .container { color: var(--on-dark); }
.photo-break-content h3 { font-size: clamp(30px, 4.6vw, 54px); max-width: 14ch; font-weight: 400; }
.photo-break-content p { color: var(--on-dark-soft); max-width: 40ch; margin-bottom: 28px; line-height: 1.7; }

/* ---------------- Gallery ---------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--cream);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,13,10,0.65));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item span {
  position: absolute; bottom: 14px; left: 16px; z-index: 1;
  color: var(--on-dark); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px); transition: all 0.35s ease;
}
.gallery-item:hover span { opacity: 1; transform: translateY(0); }
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.row-2 { grid-row: span 2; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.span-2 { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 8px; }
}

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10,9,7,0.96);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(960px, 90vw);
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.lightbox-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: rgba(245,240,232,0.6); padding: 10px; transition: color var(--transition); }
.lightbox-close:hover { color: var(--on-dark); }
.lightbox-close svg { width: 28px; height: 28px; }

/* ---------------- Quote block ---------------- */
.quote-block { position: relative; overflow: hidden; }
.quote-watercolor {
  position: absolute; inset: -10%;
  background:
    radial-gradient(38% 32% at 18% 22%, rgba(201,169,110,0.12), transparent 60%),
    radial-gradient(45% 40% at 82% 70%, rgba(154,143,124,0.15), transparent 65%),
    radial-gradient(30% 30% at 60% 10%, rgba(243,239,230,0.06), transparent 60%);
  filter: blur(48px);
  animation: drift 24s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(2%, -3%) scale(1.06); } }
.quote-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.7fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.quote-media { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-soft); }
.quote-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.quote-media:hover img { transform: scale(1.04); }
.quote-block blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.25;
  margin: 0 0 24px;
  max-width: 22ch;
  font-weight: 300;
  color: var(--on-dark);
}
.quote-block blockquote::before { content: '\201C'; color: var(--gold); }
.quote-block blockquote::after { content: '\201D'; color: var(--gold); }
.quote-cite { font-size: 13px; color: var(--on-dark-soft); letter-spacing: 0.04em; }
.quote-cite strong { color: var(--gold); display: block; font-style: normal; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; margin-bottom: 4px; }

@media (max-width: 880px) { .quote-grid { grid-template-columns: 1fr; } }

/* ---------------- Booking ---------------- */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.booking-steps { display: grid; gap: 0; margin: 36px 0 40px; }
.booking-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.booking-step:first-child { padding-top: 0; }
.booking-step:last-child { border-bottom: none; }
.booking-step .num {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.4);
  background: rgba(201,169,110,0.06);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 17px; color: var(--gold);
  font-weight: 300; letter-spacing: -0.02em;
  transition: all var(--transition);
}
.booking-step:hover .num {
  background: var(--gold);
  color: var(--olive-darker);
  border-color: var(--gold);
  transform: scale(1.08);
}
.booking-step h5 { margin: 0 0 5px; font-size: 15px; font-weight: 700; letter-spacing: 0.01em; }
.booking-step p { margin: 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.65; }

.booking-aside-card {
  background: linear-gradient(145deg, #1a1c15 0%, #0f1009 100%);
  color: var(--on-dark);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(201,169,110,0.15);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}
.booking-aside-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.booking-aside-card .eyebrow { color: var(--gold); margin-bottom: 12px; }
.booking-aside-card p { color: rgba(245,240,232,0.6); font-size: 13.5px; margin: 10px 0 24px; line-height: 1.75; }

.booking-card {
  background: #ffffff;
  border: 1px solid rgba(26,24,20,0.08);
  border-radius: 28px;
  padding: clamp(32px, 4vw, 52px);
  box-shadow: 0 32px 80px -20px rgba(20,18,14,0.14), 0 0 0 1px rgba(201,169,110,0.06);
  position: relative;
}
.booking-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201,169,110,0.3), transparent);
  border-radius: 28px 28px 0 0;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 11px; font-weight: 700;
  color: var(--taupe-deep);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.form-field label .opt { font-weight: 400; color: var(--taupe); text-transform: none; letter-spacing: 0; font-size: 11px; }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid rgba(26,24,20,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fafaf8;
  color: var(--ink);
  transition: all var(--transition);
  font-size: 15px;
}
.form-field input:hover, .form-field select:hover, .form-field textarea:hover {
  border-color: rgba(201,169,110,0.4);
  background: #ffffff;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.12);
  outline: none;
  background: #ffffff;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(74,70,64,0.35); }
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239a8f7c' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.form-field textarea { resize: none; min-height: 110px; line-height: 1.6; }
.form-error { font-size: 11.5px; color: #9c4a3a; min-height: 16px; }
.form-alert { padding: 14px 18px; border-radius: 12px; font-size: 14px; margin-bottom: 20px; display: none; }
.form-alert.is-visible { display: block; }
.form-alert.error { background: #fdf0ed; color: #7a2f20; border: 1px solid #f0c4b5; }
.form-alert ul { padding-left: 18px; list-style: disc; margin: 6px 0 0; }

/* Send button override for booking */
#bookingForm .btn-primary {
  background: linear-gradient(135deg, #1a1814 0%, #2a2620 100%);
  border-radius: 14px;
  padding: 18px 32px;
  font-size: 13px;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 24px rgba(20,18,14,0.25);
}
#bookingForm .btn-primary:hover {
  background: linear-gradient(135deg, #0f0d0b 0%, #1a1814 100%);
  box-shadow: 0 12px 32px rgba(20,18,14,0.35);
  transform: translateY(-2px);
}

.booking-success { display: none; text-align: center; padding: 32px 0; }
.booking-success.is-visible { display: block; }
.booking-success .check {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(201,169,110,0.04));
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 0 0 8px rgba(201,169,110,0.06);
}
.booking-success .check svg { width: 34px; height: 34px; color: var(--gold); }
.booking-success h4 { font-size: 26px; margin-bottom: 10px; font-weight: 400; }
.booking-success p { color: var(--ink-soft); margin-bottom: 32px; line-height: 1.75; }
.booking-summary {
  background: linear-gradient(135deg, var(--cream) 0%, #ede8df 100%);
  border-radius: 16px;
  padding: 22px 24px;
  text-align: left; margin-bottom: 28px;
  font-size: 14px; display: grid; gap: 0;
  border: 1px solid rgba(201,169,110,0.15);
}
.booking-summary div {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26,24,20,0.07);
}
.booking-summary div:last-child { border-bottom: none; padding-bottom: 0; }
.booking-summary div span:first-child { color: var(--taupe); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.booking-summary div span:last-child { font-weight: 600; font-size: 14px; }
.booking-success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 960px) {
  .booking-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------------- Contact ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-card {
  display: grid;
  gap: 0;
  align-content: start;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(26,24,20,0.07);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(20,18,14,0.06);
}
.contact-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(26,24,20,0.06);
  transition: background var(--transition);
  position: relative;
}
.contact-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}
.contact-item:hover::before { opacity: 1; }
.contact-item:hover { background: rgba(201,169,110,0.03); }
.contact-item:last-child { border-bottom: none; }
.contact-item .icon {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 14px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.contact-item:hover .icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
}
.contact-item:hover .icon svg { color: var(--olive-darker); }
.contact-item .icon svg { width: 18px; height: 18px; color: var(--gold); transition: color var(--transition); }
.contact-item-body { flex: 1; }
.contact-item h5 { margin: 0 0 5px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); }
.contact-item p, .contact-item a { margin: 0; color: var(--ink); font-size: 14.5px; line-height: 1.65; font-weight: 500; }
.contact-item a { transition: color var(--transition); }
.contact-item a:hover { color: var(--gold); }

.contact-map-wrap { display: flex; flex-direction: column; gap: 16px; }
.map-frame {
  border-radius: 28px; overflow: hidden;
  border: 1px solid rgba(26,24,20,0.07);
  min-height: 380px;
  box-shadow: 0 8px 40px rgba(20,18,14,0.1);
  position: relative;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.map-open-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink);
  transition: all var(--transition);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}
.map-open-btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20,18,14,0.15);
}
.map-open-btn svg { width: 16px; height: 16px; }

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--olive-darker);
  color: var(--on-dark-soft);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(201,169,110,0.1);
}
.footer-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; padding-bottom: 48px; border-bottom: 1px solid var(--line-on-dark); margin-bottom: 32px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { height: 32px; }
.footer-brand span { font-family: var(--font-display); color: var(--on-dark); font-size: 19px; font-weight: 400; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-links h6 { color: var(--gold); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 16px; font-family: var(--font-body); font-weight: 700; }
.footer-links ul { display: grid; gap: 12px; font-size: 14px; }
.footer-links a { color: var(--on-dark-soft); transition: color var(--transition); }
.footer-links a:hover { color: var(--on-dark); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(245,240,232,0.35); letter-spacing: 0.04em; }

/* ---------------- Floating WhatsApp ---------------- */
.fab-wa {
  position: fixed; right: 24px; bottom: 24px; z-index: 50;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25543c; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(30,50,38,0.45);
  transition: all var(--transition);
}
.fab-wa:hover { transform: scale(1.1) translateY(-2px); background: #1e4330; box-shadow: 0 16px 40px rgba(30,50,38,0.55); }
.fab-wa svg { width: 28px; height: 28px; }

/* ---------------- Reveal ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------------- Utilities ---------------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* =========================================================
   RESPONSIVE — Mobile First (iPhone & Android)
   ========================================================= */

/* ---------------- Tablet 768px ---------------- */
@media (max-width: 768px) {
  :root { --section-pad: clamp(56px, 8vw, 80px); }

  .container { padding: 0 20px; }

  /* Header */
  .site-header { padding: 16px 0; }
  .brand-name { font-size: 16px; }
  .brand img { height: 30px; }

  /* Hero */
  .hero-content { padding: 140px 0 72px; }
  .hero h1 { font-size: clamp(36px, 9vw, 56px); }
  .hero p.lead { font-size: 15px; max-width: 100%; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 14px 24px; font-size: 13px; }
  .hero-meta { gap: 28px; }
  .hero-meta div strong { font-size: 24px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-media { aspect-ratio: 4/3; border-radius: 20px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .about-stats div strong { font-size: 26px; }

  /* Services */
  .service-tabs { gap: 6px; }
  .service-tab { padding: 10px 16px; font-size: 12px; }
  .service-row { padding: 18px 20px; }
  .service-row-head h4 { font-size: 16px; }
  .grey-blend { padding: 24px 20px; border-radius: 20px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 8px;
  }

  /* Quote */
  .quote-grid { grid-template-columns: 1fr; gap: 32px; }
  .quote-media { aspect-ratio: 16/9; border-radius: 20px; }
  .quote-block blockquote { font-size: clamp(22px, 5vw, 32px); }

  /* Booking */
  .booking-grid { grid-template-columns: 1fr; gap: 32px; }
  .booking-card { padding: 24px 20px; border-radius: 20px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .booking-aside-card { padding: 24px 20px; border-radius: 20px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-frame { min-height: 260px; border-radius: 20px; }
  .map-frame iframe { min-height: 260px; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Section titles */
  h2.section-title { font-size: clamp(28px, 7vw, 40px); }
  .section-lead { font-size: 15px; }
}

/* ---------------- Mobile 480px ---------------- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Header */
  .site-header { padding: 14px 0; }
  .brand-name { font-size: 15px; }
  .brand img { height: 28px; }
  .nav-cta .btn-primary { padding: 11px 18px; font-size: 12px; }

  /* Hero */
  .hero-content { padding: 120px 0 60px; }
  .hero h1 { font-size: clamp(32px, 10vw, 48px); max-width: 100%; }
  .hero p.lead { font-size: 14px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 16px 24px; }
  .hero-meta { gap: 20px; padding-top: 20px; }
  .hero-meta div strong { font-size: 22px; }
  .hero-meta div span { font-size: 11px; }
  .hero-eyebrow { font-size: 10px; }

  /* About */
  .about-media { aspect-ratio: 3/2; border-radius: 16px; }
  .about-badge { padding: 12px 14px; border-radius: 12px; }
  .about-badge img { height: 22px; }
  .about-badge p { font-size: 12px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; padding-top: 20px; }
  .about-stats div strong { font-size: 22px; }
  .about-stats div span { font-size: 11px; }

  /* Services */
  .service-tabs { padding-bottom: 4px; margin-bottom: 28px; }
  .service-tab { padding: 9px 14px; font-size: 11.5px; }
  .service-row { padding: 16px; gap: 10px; }
  .service-row-head h4 { font-size: 15px; }
  .service-row p { font-size: 13px; }
  .service-price { font-size: 15px; }
  .brand-row { padding: 18px 16px; border-radius: 16px; }
  .brand-chip { padding: 7px 14px; font-size: 12px; }
  .simple-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .simple-chip { padding: 14px 12px; }
  .grey-blend { padding: 20px 16px; border-radius: 16px; }
  .grey-blend-tiers { flex-direction: column; gap: 10px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
    gap: 6px;
  }
  .gallery-item { border-radius: 10px; }
  .gallery-item.span-2 { grid-column: span 2; }
  .gallery-item.row-2 { grid-row: span 1; }

  /* Photo break */
  .photo-break { height: clamp(280px, 60vw, 360px); }
  .photo-break-content h3 { font-size: clamp(22px, 6vw, 32px); }
  .photo-break-content p { font-size: 14px; }

  /* Quote */
  .quote-block blockquote { font-size: clamp(20px, 6vw, 28px); }
  .quote-media { display: none; }

  /* Booking */
  .booking-card { padding: 20px 16px; border-radius: 16px; }
  .booking-card::before { height: 2px; border-radius: 16px 16px 0 0; }
  .booking-step { padding: 18px 0; gap: 14px; }
  .booking-step .num { width: 38px; height: 38px; font-size: 15px; }
  .booking-step h5 { font-size: 14px; }
  .booking-step p { font-size: 13px; }
  .booking-aside-card { padding: 20px 16px; border-radius: 16px; }
  .form-field input, .form-field select, .form-field textarea {
    padding: 13px 14px; font-size: 16px; border-radius: 10px;
  }
  .form-field label { font-size: 10.5px; }
  #bookingForm .btn-primary { border-radius: 12px; padding: 16px 24px; }

  /* Contact */
  .contact-item { gap: 14px; padding: 18px 0; }
  .contact-item .icon { width: 38px; height: 38px; border-radius: 10px; }
  .contact-item h5 { font-size: 14px; }
  .contact-item p, .contact-item a { font-size: 13.5px; }
  .map-frame { min-height: 220px; border-radius: 16px; }
  .map-frame iframe { min-height: 220px; }

  /* Footer */
  .site-footer { padding: 48px 0 24px; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-brand span { font-size: 16px; }

  /* Buttons global */
  .btn { padding: 14px 22px; font-size: 13px; }
  .btn-block { width: 100%; }

  /* FAB WhatsApp */
  .fab-wa { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .fab-wa svg { width: 24px; height: 24px; }

  /* Section */
  h2.section-title { font-size: clamp(26px, 8vw, 36px); max-width: 100%; }
  .section-lead { font-size: 14px; }
  .section-head { margin-bottom: 36px; }
  .eyebrow { font-size: 10px; letter-spacing: 0.16em; }
}

/* ---------------- Small iPhone 375px ---------------- */
@media (max-width: 375px) {
  .container { padding: 0 14px; }
  .hero h1 { font-size: 30px; }
  .about-stats { gap: 8px; }
  .about-stats div strong { font-size: 20px; }
  .gallery-grid { grid-auto-rows: 110px; gap: 5px; }
  .service-tab { padding: 8px 12px; font-size: 11px; }
  .booking-card { padding: 18px 14px; }
  .form-field input, .form-field select, .form-field textarea { font-size: 16px; }
}

/* ---------------- Landscape mobile ---------------- */
@media (max-width: 768px) and (orientation: landscape) {
  .hero { min-height: 100svh; }
  .hero-content { padding: 100px 0 48px; }
  .hero h1 { font-size: clamp(28px, 6vw, 44px); }
  .hero-actions { flex-direction: row; }
  .hero-meta { gap: 24px; }
}

/* ---------------- Touch improvements ---------------- */
@media (hover: none) and (pointer: coarse) {
  .btn:hover { transform: none; box-shadow: none; }
  .gallery-item:hover img { transform: none; }
  .gallery-item::after { opacity: 1; }
  .gallery-item span { opacity: 1; transform: translateY(0); }
  .service-row:hover { background: var(--paper); }
  .about-media:hover img { transform: none; }
  .brand-row:hover { transform: none; box-shadow: none; }
  .simple-chip:hover { transform: none; box-shadow: none; }
  .fab-wa:hover { transform: none; }

  /* Bigger tap targets */
  .nav-toggle { padding: 12px; }
  .mobile-nav a { padding: 18px 0; }
  .service-tab { padding: 12px 18px; }
  .contact-item a { padding: 4px 0; }
}
