/* ==========================================================================
   Dan Ganz, MD — Cosmetic Surgery
   Luxury-minimal static site stylesheet
   --------------------------------------------------------------------------
   Palette and type are driven by CSS variables in :root — change them in one
   place to re-skin the entire site (e.g. swap the gold accent).
   ========================================================================== */

/* ---------- Design tokens ------------------------------------------------- */
:root {
  /* Color */
  --ink:        #0e0e0f;   /* near-black, primary text & dark sections      */
  --ink-soft:   #2b2b2d;   /* softer body text                              */
  --ink-mute:   #6d6a64;   /* muted captions / meta                         */
  --cream:      #f7f3ec;   /* page background                               */
  --cream-2:    #efe8dc;   /* alternating section background                */
  --line:       #e2d9c9;   /* hairline borders on cream                     */
  --white:      #ffffff;
  --gold:       #b08d57;   /* primary accent                                */
  --gold-deep:  #94733f;   /* accent hover / on-light text                  */
  --gold-soft:  #cbb189;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container:    1200px;
  --container-narrow: 880px;
  --gutter:       clamp(1.25rem, 5vw, 4rem);
  --section-y:    clamp(4.5rem, 9vw, 8.5rem);
  --radius:       2px;

  /* Motion */
  --ease:         cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast:       0.25s var(--ease);
  --t-med:        0.45s var(--ease);
}

/* ---------- Reset / base -------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; padding: 0; }

/* ---------- Typography ---------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.75rem, 6.5vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

p { max-width: 68ch; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-block;
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 0.9rem;
  transform: translateY(-2px);
}

.lead {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
}

.serif-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.9rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

/* ---------- Layout helpers ------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container.narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }

.section--alt { background: var(--cream-2); }

.section--dark {
  background: var(--ink);
  color: #d9d4ca;
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: var(--gold-soft); }
.section--dark .eyebrow::before { background: var(--gold-soft); }

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow { margin-right: 0; }

/* ---------- Buttons ------------------------------------------------------- */
.btn {
  --btn-pad-y: 1.05rem;
  --btn-pad-x: 2.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  background: transparent;
  color: var(--ink);
  line-height: 1;
}

.btn-solid {
  background: var(--gold);
  color: var(--white);
}
.btn-solid:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.btn-outline:hover { background: var(--gold); color: var(--white); }

.btn-light {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* ---------- Navigation ---------------------------------------------------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem var(--gutter);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: background var(--t-med), padding var(--t-med), border-color var(--t-med);
}

/* Transparent over the hero on the homepage until scrolled */
body.home .site-nav {
  background: transparent;
  border-bottom-color: transparent;
}
body.home:not(.nav-solid) .site-nav { color: var(--white); }
body.home.nav-solid .site-nav {
  background: var(--cream); /* fully opaque — no dark sections bleed through behind the links */
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(20, 25, 25, 0.55);
  padding-block: 0.4rem;
}
/* Solid, high-contrast nav links once scrolled (fixes hard-to-read translucency) */
body.home.nav-solid .nav-links a { color: var(--ink); }
body.home.nav-solid .nav-links a:hover { color: var(--gold-deep); }

.brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.brand-name { font-size: 1.35rem; font-weight: 500; }
.brand-md {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  align-self: flex-start;
  margin-top: 0.15rem;
}
body.home:not(.nav-solid) .brand-md { color: var(--gold-soft); }

/* Logo lockup in the nav — dark on light surfaces; hidden over the hero (the big
   centered hero logo carries the brand there) and revealed once you scroll. */
.brand-logo { height: 150px; width: auto; display: block; transition: height var(--t-med); }
.brand-logo--light { display: none; }
body.home:not(.nav-solid) .brand-logo { display: none; }
body.home.nav-solid .brand-logo { height: 132px; }
.footer-logo { height: 84px; width: auto; margin-bottom: 0.25rem; }
@media (max-width: 980px) {
  .brand-logo { height: 78px; }
  body.home.nav-solid .brand-logo { height: 72px; }
}

/* Large centered brand mark in the hero */
.hero__logo-wrap {
  position: relative;
  display: block;
  width: 300px;
  max-width: 92vw;
  margin: 0 auto 11px; /* ~15px visual gap to the tagline (incl. logo's ~4px edge) */
  animation: heroLogoIn 1.6s var(--ease) both;
}
.hero__logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 34px rgba(0, 0, 0, 0.35));
}
/* one-time gold light sweeping across the logo on load */
.hero__logo-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-mask: url("../assets/logo-white.png?v=2") no-repeat center / contain;
          mask: url("../assets/logo-white.png?v=2") no-repeat center / contain;
  background-image: linear-gradient(105deg,
      transparent 43%,
      rgba(214, 184, 130, 0.95) 49%,
      rgba(255, 249, 238, 0.98) 51%,
      rgba(214, 184, 130, 0.95) 53%,
      transparent 59%);
  background-repeat: no-repeat;
  background-size: 250% 100%;
  background-position: 175% 0;
  opacity: 0;
  animation: heroShine 1.5s ease-in-out 0.9s both;
}

/* Choreographed homepage hero entrance: logo settles, then text rises in */
@keyframes heroLogoIn {
  0%   { opacity: 0; transform: scale(1.14); filter: blur(12px); }
  55%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes heroShine {
  0%   { background-position: 175% 0; opacity: 0; }
  22%  { opacity: 1; }
  100% { background-position: -75% 0; opacity: 0; }
}
@keyframes heroRise {
  0%   { opacity: 0; transform: translateY(26px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes heroFade {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
body.home .hero__tagline { animation: heroRise 1s var(--ease) 0.8s both; }
body.home .hero h1       { animation: heroRise 1s var(--ease) 1.05s both; }
body.home .hero__cta     { animation: heroRise 1s var(--ease) 1.3s both; }
body.home .hero__scroll  { animation: heroFade 1.2s var(--ease) 1.7s both; }

/* Refined tagline beneath a logo lockup (e.g. "COSMETIC SURGERY", "SKINCARE") */
.logo-tagline {
  width: fit-content;
  margin-inline: auto;
  padding-left: 0.5em; /* balances trailing letter-spacing so it reads truly centered */
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-weight: 500;
  font-size: clamp(0.9rem, 1.7vw, 1.2rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
}
.hero__tagline { margin-top: 0; margin-bottom: 2rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding-block: 0.25rem;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-med);
}
.nav-links a:hover::after,
.nav-links a.is-active::after { width: 100%; }
.nav-links a:hover { color: var(--gold-deep); }
body.home:not(.nav-solid) .nav-links a:hover { color: var(--white); }
.nav-links a.btn::after { display: none; }
.nav-links a.btn:hover { color: inherit; }

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.nav-cta { margin-left: 0.5rem; }
.nav-cta.btn { --btn-pad-y: 0.8rem; --btn-pad-x: 1.6rem; font-size: 0.72rem; }
body.home:not(.nav-solid) .nav-cta.btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
body.home:not(.nav-solid) .nav-cta.btn-outline:hover { background: var(--white); color: var(--ink); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
body:not(.home) .nav-toggle span,
body.home.nav-solid .nav-toggle span { background: var(--ink); }
body.home:not(.nav-solid) .nav-toggle span { background: var(--white); }

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  /* Ocean gradient fallback shown before/instead of the video */
  background: linear-gradient(180deg, #0b2b34 0%, #0c3a47 38%, #114c5b 70%, #0a2730 100%);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,20,24,0.6) 0%, rgba(8,20,24,0.4) 45%, rgba(8,20,24,0.72) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem var(--gutter) 3.5rem;
  max-width: 960px;
  text-align: center;
  margin-inline: auto;
}
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.75rem;
}
.hero h1 {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__sub {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 300;
  max-width: 38ch;
  margin: 0 auto 2.75rem;
  color: rgba(255,255,255,0.9);
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--gold-soft), transparent);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0.2); transform-origin: top; opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* ---------- Page header (interior pages) ---------------------------------- */
.page-header {
  padding: clamp(12rem, 16vw, 13.5rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-header h1 { font-weight: 300; }
.page-header p { margin: 1.25rem auto 0; color: var(--ink-mute); }

/* ---------- Split / feature rows ------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split.reverse .split__media { order: 2; }

.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, #14323b 0%, #1c4651 50%, #2a5d6a 100%);
  border-radius: var(--radius);
  overflow: hidden;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media::after {
  /* subtle gold frame accent */
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.25);
  pointer-events: none;
}
.media-label {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

/* ---------- Credentials list ---------------------------------------------- */
.creds {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.creds li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.creds li:last-child { border-bottom: 0; }
.creds .cred-k {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-top: 0.35rem;
  white-space: nowrap;
}
.creds .cred-v { font-size: 1.05rem; color: var(--ink); font-weight: 400; }
.creds .cred-v small { display: block; color: var(--ink-mute); font-size: 0.9rem; }

/* ---------- Stats band ---------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1;
}
.stat .num span { color: var(--gold-soft); }
.stat .label {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ---------- Procedures grid ----------------------------------------------- */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.proc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  overflow: hidden;
  min-height: 230px;
}
.proc-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--t-med);
}
.proc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -28px rgba(20,30,30,0.4);
  border-color: var(--gold-soft);
}
.proc-card:hover::before { transform: scaleY(1); }
.proc-card .proc-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1rem;
}
.proc-card h3 { font-size: 1.55rem; margin-bottom: 0.75rem; }
.proc-card p { font-size: 0.98rem; color: var(--ink-mute); flex: 1; }
.proc-card .proc-tag {
  margin-top: 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* Detailed procedure sections (procedures page) */
.proc-detail { scroll-margin-top: 120px; }
.proc-detail + .proc-detail { border-top: 1px solid var(--line); }
.proc-detail .proc-index {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
}

/* ---------- Philosophy / quote band --------------------------------------- */
.quote-band { text-align: center; }
.quote-band cite {
  display: block;
  margin-top: 2rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ---------- CTA band ------------------------------------------------------ */
.cta-band {
  text-align: center;
  background:
    linear-gradient(rgba(10,22,26,0.78), rgba(10,22,26,0.86)),
    linear-gradient(135deg, #0d2b33, #1b4c59);
  color: var(--white);
}
.cta-band h2 { color: var(--white); }
.cta-band p { margin: 1.25rem auto 2.5rem; color: rgba(255,255,255,0.85); }

/* ---------- Contact ------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-info .info-item {
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.contact-info .info-item:first-child { padding-top: 0; }
.contact-info .info-k {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.contact-info .info-v { font-size: 1.1rem; color: var(--ink); }
.contact-info .info-v a:hover { color: var(--gold-deep); }

.form {
  display: grid;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.field { display: grid; gap: 0.5rem; }
.field label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  transition: border-color var(--t-fast), background var(--t-fast);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form__note { font-size: 0.85rem; color: var(--ink-mute); }
.form__status {
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  display: none;
}
.form__status.is-success { display: block; background: #eaf3ec; color: #2f5d3a; border: 1px solid #cfe3d4; }
.form__status.is-error   { display: block; background: #f7ecec; color: #80322f; border: 1px solid #e7cdcd; }

/* ---------- Footer -------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand-name { color: var(--white); font-size: 1.6rem; }
.footer-brand p { margin-top: 1.25rem; font-size: 0.95rem; max-width: 34ch; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col a, .footer-col p { font-size: 0.95rem; display: block; padding-block: 0.35rem; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a:hover { color: var(--gold-soft); }
.footer-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.74rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  max-width: 80ch;
}

/* ---------- Scroll-reveal animation --------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------------------------------------------------- */
@media (max-width: 900px) {
  .split,
  .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split__media { order: 0; }
  .split__media { aspect-ratio: 16 / 11; max-height: 460px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Hamburger menu earlier (≤980) so the 5-item nav never crowds the larger logo */
@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .page-header { padding-top: 9rem; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 360px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
    padding: 3rem 2.5rem;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform var(--t-med);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,0.4);
  }
  body.nav-open .nav-links { transform: translateX(0); }
  .nav-links a { color: var(--ink) !important; font-size: 1rem; }
  /* "Consultation" should read like every other tab in the side menu */
  .nav-links .nav-cta.btn {
    border: 0;
    background: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink) !important;
  }
  .nav-links .nav-cta.btn:hover { background: none; color: var(--gold-deep) !important; }
}

@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr; gap: 2.5rem; }
  .form .row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

/* Backdrop when mobile menu open */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10,12,12,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med), visibility var(--t-med);
}
body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }

/* ---------- Dark interior pages (e.g. Skincare) --------------------------- */
body.page-dark { background: var(--ink); }
body.page-dark .site-nav { background: transparent; border-bottom-color: transparent; }
body.page-dark .brand-logo { display: none; }
body.page-dark .nav-links a { color: rgba(255, 255, 255, 0.9); }
body.page-dark .nav-links a:hover { color: #fff; }
body.page-dark .nav-toggle span { background: #fff; }
body.page-dark .nav-cta.btn-outline { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
body.page-dark .nav-cta.btn-outline:hover { background: #fff; color: var(--ink); }

/* ---------- Skincare "coming soon" ---------------------------------------- */
.coming-soon {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem var(--gutter) 5rem;
  background: radial-gradient(120% 85% at 50% 0%, #17191c 0%, var(--ink) 55%, #060607 100%);
  color: #d9d4ca;
  position: relative;
  overflow: hidden;
}
.coming-soon::before {
  content: "";
  position: absolute;
  inset: -25% -25% auto -25%;
  height: 65%;
  background: radial-gradient(50% 60% at 50% 0%, rgba(176, 141, 87, 0.18), transparent 70%);
  pointer-events: none;
}
.coming-soon__inner { position: relative; z-index: 1; max-width: 720px; }
.coming-soon__logo {
  width: clamp(220px, 30vw, 360px);
  height: auto;
  margin: 0 auto 1.8rem;
  display: block;
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.45));
}
.coming-soon__tag {
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.75rem;
}
.coming-soon h1 {
  color: #fff;
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.coming-soon h1 em { font-style: italic; color: var(--gold-soft); }
.coming-soon__sub {
  max-width: 46ch;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}
.waitlist {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto;
}
.waitlist input[type="email"] {
  flex: 1 1 260px;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.waitlist input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.5); }
.waitlist input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}
.coming-soon__note { margin-top: 1.5rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.45); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
