/* =========================================================
   Fah Makeup Studio — "Soft Luxe"
   Light editorial · warm cream · sage-green + antique gold
   Display: Cormorant Garamond   ·   Body: Lato
   ========================================================= */

:root {
  /* ---- Palette (warm light) ---- */
  --bg:        #f6f5f3;   /* cream base */
  --bg-2:      #eeeae3;   /* deeper cream — alt sections / footer */
  --blush:     #f1e8e3;   /* soft dusty-rose band */
  --surface:   #ffffff;   /* cards / forms */
  --surface-2: #fbfaf8;

  --ink:       #2b2a27;   /* headings  ~13:1 on --bg */
  --ink-soft:  #46443f;   /* body      ~8:1 */
  --muted:     #6c675f;   /* meta      ~5.2:1 */

  --sage:        #85b69c; /* brand accent (fills / button bg) */
  --sage-deep:   #43755a; /* sage text / links / icons ~6:1 */
  --sage-soft:   #d9e8df;
  --gold:        #9a7b33; /* accent display words ~4.4:1 (large) */
  --gold-deep:   #7c611f; /* small gold text ~6:1 */

  --line:      rgba(43, 42, 39, 0.12);
  --line-2:    rgba(43, 42, 39, 0.20);
  --shadow:    0 30px 60px -30px rgba(70, 60, 42, 0.30);
  --shadow-sm: 0 16px 38px -24px rgba(70, 60, 42, 0.22);

  /* ---- Type ---- */
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body:    "Lato", system-ui, -apple-system, sans-serif;

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);

  /* ---- Spatial ---- */
  --container: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(5rem, 12vh, 9rem);
  --radius: 1.5rem;

  /* ---- z-scale ---- */
  --z-grain: 60;
  --z-nav: 100;
  --z-float: 90;
  --z-menu: 110;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--sage-deep); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--sage-deep); color: #fff; padding: .6rem 1.2rem; border-radius: 0 0 .6rem .6rem;
  z-index: 200; font-weight: 600; transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Film grain ---------- */
.grain {
  position: fixed; inset: 0; z-index: var(--z-grain);
  pointer-events: none; opacity: .03; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography helpers ---------- */
.serif-italic { font-family: var(--display); font-style: italic; font-weight: 500; }
.accent { color: var(--gold); }
.muted { color: var(--muted); }

.kicker {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--sage-deep);
  margin-bottom: 1rem;
  letter-spacing: .01em;
}
.kicker::before { content: "✦  "; font-style: normal; font-size: .7em; vertical-align: middle; color: var(--gold); }

.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.3rem, 5.4vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.012em;
  text-wrap: balance;
  color: var(--ink);
}

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-lead { margin-top: 1.25rem; color: var(--ink-soft); font-size: 1.12rem; max-width: 56ch; }

p { max-width: 68ch; }
.about-copy p, .contact-copy p { font-size: 1.06rem; margin-bottom: 1.1rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--body); font-weight: 700; font-size: .92rem;
  letter-spacing: .01em; border-radius: 999px;
  padding: .95rem 1.6rem;
  transition: transform .5s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), box-shadow .5s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(.97); }

.btn-solid {
  background: var(--sage);
  color: #1d2a22;
  padding-right: .5rem;
  box-shadow: 0 14px 30px -14px rgba(67,117,90,.55);
}
.btn-solid:hover { background: #76aa8e; transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(67,117,90,.6); }

.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--sage-deep); color: var(--sage-deep); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; margin-top: .5rem; }

/* button-in-button trailing icon */
.btn .arrow {
  display: inline-grid; place-items: center;
  width: 2rem; height: 2rem; border-radius: 999px;
  background: rgba(29,42,34,.18); font-size: 1rem; line-height: 1;
  transition: transform .5s var(--ease), background .4s var(--ease);
}
.btn-ghost .arrow { background: rgba(43,42,39,.08); width: 1.7rem; height: 1.7rem; }
.btn:hover .arrow { transform: translate(3px,-1px); }

.btn-pill {
  background: var(--sage); color: #1d2a22;
  padding: .7rem 1.3rem; font-size: .85rem;
}
.btn-pill:hover { background: #76aa8e; }

.link-underline {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .92rem; color: var(--sage-deep);
  padding-bottom: 3px; border-bottom: 1px solid var(--line-2);
  transition: border-color .4s var(--ease), gap .4s var(--ease);
  width: fit-content;
}
.link-underline:hover { border-color: var(--sage-deep); gap: .9rem; }
.link-underline .arrow { transition: transform .4s var(--ease); }
.link-underline:hover .arrow { transform: translateX(3px); }

/* =========================================================
   NAV — floating glass island
   ========================================================= */
.nav {
  position: fixed; top: 1rem; left: 0; right: 0; margin-inline: auto;
  width: calc(100% - 2rem); max-width: var(--container);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: .7rem .7rem .7rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  z-index: var(--z-nav);
  transition: box-shadow .5s var(--ease), top .5s var(--ease);
}
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: rgba(246,245,243,.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background .5s var(--ease);
}
.nav.scrolled::before { background: rgba(246,245,243,.92); }
.nav.scrolled { box-shadow: var(--shadow-sm); top: .6rem; }

.brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand-mark {
  display: grid; place-items: center; width: 2.1rem; height: 2.1rem;
  border-radius: 50%; background: linear-gradient(150deg, #d9b45a, var(--sage));
  font-family: var(--display); font-style: italic; font-weight: 600;
  color: #28261f; font-size: 1.25rem;
}
.brand-text { font-family: var(--display); font-size: 1.2rem; font-weight: 600; letter-spacing: .01em; color: var(--ink); }
.brand-text em { font-style: italic; color: var(--gold); font-weight: 500; }
.brand-text.big { font-size: 1.9rem; }

.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a {
  position: relative; font-size: .92rem; color: var(--ink-soft); font-weight: 400;
  transition: color .35s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px;
  background: var(--sage-deep); transition: width .4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { flex-shrink: 0; }
.m-only { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .45s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center;
  padding: 9rem var(--gutter) 4rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(55% 50% at 80% 26%, rgba(133,182,156,.22), transparent 70%),
    radial-gradient(50% 55% at 8% 82%, rgba(241,232,227,.85), transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(2rem, 6vw, 5rem);
}

.hero-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(3rem, 8.4vw, 5.8rem);
  line-height: 1; letter-spacing: -0.015em;
  margin: .4rem 0 1.6rem; text-wrap: balance; color: var(--ink);
}
.hero-title span { display: block; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 50ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-stats { display: flex; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 3.2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.hero-stats .stat dt { font-family: var(--display); font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 600; color: var(--sage-deep); line-height: 1; font-variant-numeric: tabular-nums; }
.hero-stats .stat dd { font-size: .78rem; color: var(--muted); margin-top: .45rem; letter-spacing: .08em; text-transform: uppercase; }

/* Hero visual — z-axis cascade */
.hero-visual { position: relative; aspect-ratio: 4/4.4; }
.hero-frame {
  position: absolute; overflow: hidden; border-radius: var(--radius);
  padding: .4rem; background: rgba(255,255,255,.7);
  border: 1px solid var(--line-2); box-shadow: var(--shadow);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--radius) - .4rem); }
.hero-frame.f1 { width: 66%; height: 78%; top: 0; right: 0; transform: rotate(2deg); z-index: 2; }
.hero-frame.f2 { width: 52%; height: 58%; bottom: 0; left: 0; transform: rotate(-3deg); z-index: 3; }
.hero-badge {
  position: absolute; z-index: 4; top: 62%; right: 4%;
  display: grid; place-items: center; text-align: center;
  width: 7.4rem; height: 7.4rem; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--sage);
  box-shadow: var(--shadow-sm);
  animation: spinwobble 16s ease-in-out infinite alternate;
}
.hero-badge .badge-sub { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.hero-badge .badge-main { font-family: var(--display); font-style: italic; font-weight: 600; font-size: 1.5rem; color: var(--sage-deep); }
@keyframes spinwobble { from { transform: rotate(-5deg);} to { transform: rotate(5deg);} }

.scroll-hint {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted);
}
.scroll-hint span { width: 1px; height: 38px; background: linear-gradient(var(--sage-deep), transparent); animation: scrolldrop 2s var(--ease) infinite; }
@keyframes scrolldrop { 0%{transform:scaleY(0);transform-origin:top;} 50%{transform:scaleY(1);transform-origin:top;} 51%{transform-origin:bottom;} 100%{transform:scaleY(0);transform-origin:bottom;} }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2); overflow: hidden; padding: 1.4rem 0;
}
.marquee-track { display: flex; align-items: center; gap: 2.5rem; width: max-content; animation: marquee 42s linear infinite; }
.marquee-track span { font-family: var(--display); font-size: 1.7rem; font-style: italic; font-weight: 500; color: var(--ink); white-space: nowrap; }
.marquee-track i { color: var(--sage); font-style: normal; font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding: var(--section-y) var(--gutter); max-width: var(--container); margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.about-tag {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--surface); border: 1px solid var(--sage);
  color: var(--sage-deep); font-family: var(--display); font-style: italic; font-weight: 600;
  padding: .8rem 1.3rem; border-radius: 999px; font-size: 1.05rem; box-shadow: var(--shadow-sm);
}
.about-copy .link-underline { margin-top: 1.4rem; }

/* =========================================================
   SERVICES — editorial rows
   ========================================================= */
.services { padding: var(--section-y) var(--gutter); max-width: var(--container); margin: 0 auto; }
.svc-list { display: flex; flex-direction: column; gap: clamp(2rem, 5vw, 4rem); }
.svc {
  display: grid; grid-template-columns: 4rem 1fr 38%; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
  padding-bottom: clamp(2rem, 5vw, 4rem); border-bottom: 1px solid var(--line);
}
.svc:last-child { border-bottom: none; }
.svc-index { font-family: var(--display); font-style: italic; font-weight: 600; font-size: 1.8rem; color: var(--gold); }
.svc-title { font-family: var(--display); font-weight: 600; font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -.01em; line-height: 1.05; margin-bottom: .9rem; color: var(--ink); }
.svc-desc { color: var(--ink-soft); font-size: 1.05rem; max-width: 52ch; margin-bottom: 1.5rem; }
.svc-desc em { font-family: var(--display); font-style: italic; font-weight: 600; color: var(--sage-deep); }
.svc-tags { display: flex; flex-wrap: wrap; gap: .55rem; }
.svc-tags li {
  font-size: .82rem; color: var(--muted); padding: .4rem .85rem;
  border: 1px solid var(--line-2); border-radius: 999px;
  transition: color .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.svc-tags li:hover { color: var(--sage-deep); border-color: var(--sage); background: var(--sage-soft); }
.svc-media { overflow: hidden; border-radius: var(--radius); padding: .4rem; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.svc-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: calc(var(--radius) - .4rem); transition: transform .9s var(--ease); }
.svc:hover .svc-media img { transform: scale(1.05); }

/* =========================================================
   WHY US — interactive showcase
   ========================================================= */
.why { padding: var(--section-y) var(--gutter); background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-inner { max-width: var(--container); margin: 0 auto; }
.why-showcase { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: stretch; }

/* --- Cinematic stage (text sits on photos, so it stays light) --- */
.why-stage { position: relative; }
.why-stage-frame {
  position: relative; height: 100%; min-height: 480px; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line-2);
  box-shadow: var(--shadow); background: #2a2622;
}
.why-stage-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.07);
  transition: opacity .8s var(--ease), transform 1.3s var(--ease);
}
.why-stage-frame img.active { opacity: 1; transform: scale(1); }
.why-stage-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,16,12,.92) 4%, rgba(20,16,12,.42) 44%, rgba(20,16,12,.04) 100%);
}
.why-stage-num {
  position: absolute; top: 1.3rem; left: 1.6rem; z-index: 2;
  font-family: var(--display); font-style: italic; font-weight: 600;
  font-size: clamp(2.8rem, 5vw, 3.8rem); line-height: 1; color: #ecd49f;
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.why-stage-cap { position: absolute; z-index: 2; left: 1.9rem; right: 1.9rem; bottom: 1.8rem; }
.why-stage-title { font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -.01em; margin-bottom: .5rem; color: #fbf8f3; }
.why-stage-desc { color: rgba(251,248,243,.86); font-size: 1.05rem; max-width: 42ch; }
.why-stage-cap.swap .why-stage-title, .why-stage-cap.swap .why-stage-desc { animation: capIn .55s var(--ease) both; }
.why-stage-cap.swap .why-stage-desc { animation-delay: .06s; }
@keyframes capIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* --- Interactive reason list --- */
.why-reasons { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; justify-content: center; gap: .15rem; }
.why-reasons li { list-style: none; }
.why-reason {
  width: 100%; display: flex; align-items: center; gap: 1.1rem; text-align: left;
  padding: 1.15rem 1.2rem; border-radius: 1rem; border: 1px solid transparent;
  color: var(--ink-soft); cursor: pointer;
  transition: background .45s var(--ease), border-color .45s var(--ease), color .45s var(--ease), transform .45s var(--ease);
}
.why-reason:hover, .why-reason.active { background: var(--surface); border-color: var(--line); color: var(--ink); box-shadow: var(--shadow-sm); }
.wr-num { font-family: var(--display); font-style: italic; font-weight: 600; font-size: 1.3rem; color: var(--gold); min-width: 1.9rem; transition: color .45s var(--ease); }
.why-reason.active .wr-num { color: var(--sage-deep); }
.wr-body { flex: 1; display: flex; flex-direction: column; gap: .25rem; }
.wr-title { font-family: var(--display); font-weight: 600; font-size: 1.5rem; letter-spacing: -.01em; line-height: 1.15; color: var(--ink); }
.wr-desc { color: var(--muted); font-size: .95rem; line-height: 1.45; }
.js .wr-desc { display: none; }
.wr-arrow { color: var(--sage-deep); font-size: 1.1rem; opacity: 0; transform: translateX(-8px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.why-reason:hover .wr-arrow, .why-reason.active .wr-arrow { opacity: 1; transform: none; }

/* =========================================================
   LOCATIONS
   ========================================================= */
.locations { padding: var(--section-y) var(--gutter); max-width: var(--container); margin: 0 auto; }
.loc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.loc-list { display: flex; flex-direction: column; }
.loc-list li {
  display: flex; align-items: center; gap: 1.2rem;
  font-family: var(--display); font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 500;
  color: var(--ink); padding: 1.1rem 0; border-bottom: 1px solid var(--line);
  transition: color .4s var(--ease), padding-left .4s var(--ease);
}
.loc-list li:hover { color: var(--sage-deep); padding-left: .8rem; }
.loc-flag { font-size: 1.6rem; }

/* =========================================================
   GALLERY — masonry columns
   ========================================================= */
.gallery { padding: var(--section-y) var(--gutter); max-width: var(--container); margin: 0 auto; }
.gallery-grid { columns: 4 220px; column-gap: 1rem; }
.g-item { break-inside: avoid; margin-bottom: 1rem; overflow: hidden; border-radius: 1.1rem; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.g-item img { width: 100%; height: auto; object-fit: cover; transition: transform .9s var(--ease), filter .6s var(--ease); }
.g-item.tall img { aspect-ratio: 3/4.4; object-fit: cover; }
.g-item:hover img { transform: scale(1.06); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { padding: var(--section-y) var(--gutter); background: var(--blush); border-top: 1px solid var(--line); }
.testimonials .section-head { max-width: var(--container); margin-left: auto; margin-right: auto; text-align: center; margin-bottom: clamp(2.5rem,6vw,4rem); }
.quote-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 1.25rem; }
.quote {
  padding: 2.6rem 2rem 2.2rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); position: relative; box-shadow: var(--shadow-sm);
}
.quote::before { content: "“"; position: absolute; top: .4rem; left: 1.3rem; font-family: var(--display); font-weight: 600; font-size: 4rem; color: var(--sage); opacity: .5; line-height: 1; }
.quote p { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1.32rem; line-height: 1.45; color: var(--ink); margin: 1.4rem 0 1.4rem; }
.quote footer { font-weight: 700; color: var(--sage-deep); font-size: .95rem; }
.quote footer span { display: block; font-weight: 400; color: var(--muted); font-size: .82rem; margin-top: .2rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { padding: var(--section-y) var(--gutter); max-width: var(--container); margin: 0 auto; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact-meta { margin: 2rem 0 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-meta li { display: flex; align-items: center; gap: .9rem; color: var(--ink-soft); }
.contact-meta svg { width: 1.25rem; height: 1.25rem; color: var(--sage-deep); flex-shrink: 0; }
.contact-meta a:hover { color: var(--sage-deep); }

.socials { display: flex; gap: .8rem; }
.soc {
  display: grid; place-items: center; width: 2.8rem; height: 2.8rem; border-radius: 50%;
  border: 1px solid var(--line-2); color: var(--ink-soft);
  transition: transform .45s var(--ease), color .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.soc svg { width: 1.25rem; height: 1.25rem; }
.soc:hover { color: var(--sage-deep); border-color: var(--sage); transform: translateY(-3px); background: var(--sage-soft); }

/* Form */
.contact-form {
  padding: clamp(1.5rem, 3vw, 2.4rem); border-radius: calc(var(--radius) + .4rem);
  background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%; padding: 1.25rem 1rem .55rem; font: inherit; color: var(--ink);
  background: var(--surface-2); border: 1px solid var(--line-2); border-radius: .9rem;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
  appearance: none;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(133,182,156,.25); outline: none; }
.field label {
  position: absolute; left: 1rem; top: .95rem; color: var(--muted); pointer-events: none;
  transition: transform .3s var(--ease), color .3s var(--ease), font-size .3s var(--ease);
  font-size: 1rem;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field .label-static {
  transform: translateY(-.7rem); font-size: .72rem; color: var(--sage-deep); letter-spacing: .03em; font-weight: 700;
}
.field .label-static { top: .55rem; }
.field select { color: var(--ink); }
.field select:invalid { color: var(--muted); }
.field select option { background: var(--surface); color: var(--ink); }
.select-caret { position: absolute; right: 1rem; top: 1.1rem; width: 1.1rem; height: 1.1rem; color: var(--muted); pointer-events: none; }
.hp { position: absolute; left: -9999px; }
.form-status { font-size: .9rem; color: var(--sage-deep); min-height: 1.2em; text-align: center; font-weight: 700; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: clamp(3rem,7vw,5rem) var(--gutter) 2rem; }
.footer-top { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem,6vw,5rem); padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.footer-brand p { color: var(--muted); margin-top: 1rem; max-width: 46ch; }
.footer-nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.footer-nav h4 { font-family: var(--display); font-style: italic; font-weight: 600; color: var(--sage-deep); font-size: 1.1rem; margin-bottom: 1rem; }
.footer-nav a { display: block; color: var(--muted); padding: .35rem 0; transition: color .3s var(--ease); }
.footer-nav a:hover { color: var(--ink); }
.footer-bottom { max-width: var(--container); margin: 2rem auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: var(--muted); }
.fb-tag i { color: var(--sage); font-style: normal; }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: var(--z-float);
  display: grid; place-items: center; width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: #25d366; color: #fff; box-shadow: 0 14px 30px -10px rgba(37,211,102,.55);
  transition: transform .5s var(--ease);
}
.wa-float svg { width: 1.8rem; height: 1.8rem; }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }

/* =========================================================
   REVEAL ANIMATIONS (progressive enhancement)
   ========================================================= */
.js .reveal { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft), filter .9s var(--ease-soft); transition-delay: var(--d, 0s); }
.js .reveal.in { opacity: 1; transform: none; filter: blur(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 460px; width: 100%; margin: 0 auto; aspect-ratio: 4/3.6; }
  .about-grid, .loc-inner, .contact-inner, .footer-top { grid-template-columns: 1fr; }
  .why-showcase { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-stage-frame { min-height: 340px; }
  .about-tag { right: 1rem; bottom: 1rem; }
  .svc { grid-template-columns: 3rem 1fr; }
  .svc-media { grid-column: 1 / -1; }
  .gallery-grid { columns: 3 180px; }
}

@media (max-width: 760px) {
  .nav { padding: .6rem .6rem .6rem 1.1rem; }
  .nav-links {
    position: fixed; inset: 0; z-index: var(--z-menu);
    flex-direction: column; justify-content: center; gap: 1.6rem;
    background: rgba(246,245,243,.97);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%); transition: transform .55s var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-family: var(--display); font-weight: 600; font-size: 2rem; color: var(--ink); opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
  .nav-links a::after { display: none; }
  .nav-links.open a { opacity: 1; transform: none; }
  .nav-links.open a:nth-child(1){transition-delay:.08s}
  .nav-links.open a:nth-child(2){transition-delay:.14s}
  .nav-links.open a:nth-child(3){transition-delay:.2s}
  .nav-links.open a:nth-child(4){transition-delay:.26s}
  .nav-links.open a:nth-child(5){transition-delay:.32s}
  .nav-links.open a:nth-child(6){transition-delay:.38s}
  .m-only { display: block; }
  .nav-toggle { display: flex; position: relative; z-index: calc(var(--z-menu) + 1); }
  .nav-cta { display: none; }

  .hero { padding-top: 7.5rem; min-height: auto; padding-bottom: 3rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.4rem 2rem; }

  /* Services: stack to one column with the index above the title */
  .svc { grid-template-columns: 1fr; gap: 1.1rem; }
  .svc-index { font-size: 1.5rem; }
  .svc-title { font-size: clamp(1.7rem, 7vw, 2.1rem); }
  .field-row { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2 140px; }
  .footer-bottom { flex-direction: column; }
  .marquee-track span { font-size: 1.4rem; }
  .why-reason { padding: 1rem; }
  .wr-title { font-size: 1.3rem; }
}

@media (max-width: 420px) {
  .gallery-grid { columns: 2 120px; }
  .hero-badge { width: 6rem; height: 6rem; right: 0; }
  .hero-badge .badge-main { font-size: 1.2rem; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; filter: none; }
  .marquee-track { animation: none; }
  .hero-badge { animation: none; }
}
