/* =========================================================================
   Étoile Aesthetics — Cosmetic & Plastic Surgery, Mumbai
   Design: "Aubergine & Étoile" — deep aubergine + soft gold, high-contrast
   Fraunces display over Jost, arched editorial imagery, a gold four-point
   star (étoile) as the signature mark.
   ========================================================================= */

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

* { margin: 0; }

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

img,
svg { display: block; max-width: 100%; }

button,
input,
select,
textarea { font: inherit; color: inherit; }

a { color: inherit; }

/* ----- Tokens ------------------------------------------------------------- */
:root {
  /* Aubergine scale */
  --plum-950: #17091D;
  --plum-900: #1E0F26;   /* brand anchor */
  --plum-850: #251331;
  --plum-800: #2E1A3B;
  --plum-700: #3E2749;
  --plum-line: rgba(201, 162, 76, .22);

  /* Gold */
  --gold: #C9A24C;
  --gold-300: #E1C486;
  --gold-200: #EFD9A4;

  /* Light canvas — mauve-tinted porcelain (deliberately not cream) */
  --porcelain: #F4EEF0;
  --porcelain-2: #FBF6F7;
  --porcelain-3: #ECE2E6;

  /* Ink on light */
  --ink: #26152C;
  --ink-soft: #4A3A4C;
  --mauve: #786A78;
  --line: rgba(38, 21, 44, .13);
  --line-strong: rgba(38, 21, 44, .22);

  --star: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23C9A24C' d='M12 1.6c.45 5.4 4.6 9.5 10 9.9-5.4.45-9.55 4.5-10 9.9-.45-5.4-4.6-9.45-10-9.9 5.4-.4 9.55-4.5 10-9.9z'/%3E%3C/svg%3E");

  --container: 74rem;
  --pad-x: clamp(1.15rem, 5vw, 3.25rem);
  --section-y: clamp(4.25rem, 8.5vw, 8rem);

  --ease: cubic-bezier(.22, .68, .18, 1);
  --shadow-soft: 0 22px 60px -32px rgba(23, 9, 29, .55);
  --shadow-card: 0 16px 44px -30px rgba(23, 9, 29, .4);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}

p { text-wrap: pretty; }

::selection { background: var(--gold); color: var(--plum-900); }

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

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

.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* Eyebrow / kicker */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: currentColor;
  opacity: .7;
}
.eyebrow--center { justify-content: center; }

/* Section heading block */
.head { max-width: 46rem; }
.head--center { margin-inline: auto; text-align: center; }
.head h2 {
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  margin-top: 1.1rem;
}
.head h2 em { font-style: italic; color: var(--gold); }
.head .lead {
  margin-top: 1.35rem;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 40rem;
}
.head--center .lead { margin-inline: auto; }

/* Star mark */
.star {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: var(--star) center / contain no-repeat;
  flex: none;
}

/* ----- Buttons ------------------------------------------------------------ */
.btn {
  --btn-fg: var(--plum-900);
  --btn-bg: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .4s var(--ease), background .3s var(--ease),
    box-shadow .4s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -18px rgba(201, 162, 76, .8); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--ink); box-shadow: none; }

/* Ghost on dark surfaces (feature bands + the always-dark header) */
.on-dark .btn--ghost,
.site-header .btn--ghost { --btn-fg: var(--porcelain); border-color: rgba(239, 217, 164, .4); }
.on-dark .btn--ghost:hover,
.site-header .btn--ghost:hover { --btn-fg: var(--gold-200); border-color: var(--gold); }

.btn--wide { width: 100%; }

/* Text link with underline flourish */
.link-quiet {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.link-quiet:hover { color: var(--gold); }

/* ----- Skip link ---------------------------------------------------------- */
.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--plum-900);
  color: var(--gold-200);
  padding: .7rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: top .25s var(--ease);
}
.skip:focus { top: 1rem; }

/* ----- Focus visibility --------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* =========================================================================
   Header / navigation
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(23, 9, 29, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 162, 76, .14);
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.site-header.is-scrolled { background: rgba(23, 9, 29, .94); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.75rem;
  padding-block: .6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--porcelain);
}
.brand__mark {
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--plum-line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.05rem;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  letter-spacing: .01em;
  line-height: 1;
}
.brand__name b { font-weight: 500; }
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: .58rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-top: .28rem;
}

/* Wrapper: transparent on desktop (children join the flex row), a
   single dropdown panel on mobile. */
.nav__panel { display: contents; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
  list-style: none;
  padding: 0;
}
.nav__links a {
  color: rgba(244, 238, 240, .82);
  text-decoration: none;
  font-size: .92rem;
  letter-spacing: .02em;
  position: relative;
  padding-block: .3rem;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: inline-flex; align-items: center; gap: .9rem; }
.nav__cta .btn { padding: .65rem 1.25rem; font-size: .88rem; }

.nav__toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(201, 162, 76, .28);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1.15rem;
  height: 1.5px;
  background: var(--gold-200);
  transform: translateX(-50%);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span { top: 50%; margin-top: -.75px; }
.nav__toggle span::before { top: -.42rem; }
.nav__toggle span::after { top: .42rem; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateX(-50%) rotate(45deg); top: 0; }
.nav__toggle[aria-expanded="true"] span::after { transform: translateX(-50%) rotate(-45deg); top: 0; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  background: var(--plum-900);
  color: var(--porcelain);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 82% 12%, rgba(201, 162, 76, .18), transparent 60%),
    radial-gradient(50% 50% at 8% 90%, rgba(120, 60, 120, .28), transparent 62%),
    linear-gradient(180deg, var(--plum-950), var(--plum-900) 55%, var(--plum-850));
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(239, 217, 164, .5) 0 1.1px, transparent 1.6px),
    radial-gradient(circle at 68% 18%, rgba(239, 217, 164, .38) 0 1px, transparent 1.5px),
    radial-gradient(circle at 40% 78%, rgba(239, 217, 164, .3) 0 1px, transparent 1.5px),
    radial-gradient(circle at 88% 62%, rgba(239, 217, 164, .32) 0 1px, transparent 1.5px);
  background-size: 100% 100%;
  opacity: .5;
  z-index: -1;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.hero__eyebrow { color: var(--gold-300); }
.hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero__lead {
  margin-top: 1.7rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: rgba(244, 238, 240, .78);
}
.hero__actions {
  margin-top: 2.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}
.hero__trust {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  list-style: none;
  padding: 0;
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(239, 217, 164, .82);
}
.hero__trust li { display: inline-flex; align-items: center; gap: .5rem; }
.hero__trust .star { width: .8rem; height: .8rem; opacity: .9; }

/* Arched portrait */
.hero__media { position: relative; justify-self: center; width: 100%; max-width: 30rem; }
.hero__frame {
  position: relative;
  border-radius: 16rem 16rem 1.2rem 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 76, .45);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .8), inset 0 0 0 1px rgba(239, 217, 164, .1);
  aspect-ratio: 4 / 5;
  background: var(--plum-800);
}
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) contrast(1.02);
}
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(30, 15, 38, .55));
}
.hero__badge {
  position: absolute;
  left: -1.1rem;
  bottom: 1.8rem;
  background: rgba(23, 9, 29, .82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--plum-line);
  border-radius: 14px;
  padding: .85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  box-shadow: var(--shadow-soft);
}
.hero__badge .star { width: 1.35rem; height: 1.35rem; animation: twinkle 5s var(--ease) infinite; }
.hero__badge b { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold-200); font-weight: 500; }
.hero__badge span { display: block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(244, 238, 240, .6); }

@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0); opacity: .95; }
  50% { transform: scale(1.14) rotate(8deg); opacity: 1; }
}

/* Marquee band under hero */
.creds {
  border-top: 1px solid rgba(201, 162, 76, .16);
  background: var(--plum-950);
  color: rgba(239, 217, 164, .8);
}
.creds__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem clamp(1.5rem, 5vw, 3.4rem);
  padding-block: 1.3rem;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.creds__row span { display: inline-flex; align-items: center; gap: .6rem; }
.creds__row .star { width: .7rem; height: .7rem; }

/* =========================================================================
   Philosophy / belief
   ========================================================================= */
.belief { background: var(--porcelain-2); }
.belief__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.belief__statement {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.belief__statement em { font-style: italic; color: var(--gold); }
.belief__aside { color: var(--ink-soft); }
.belief__aside p + p { margin-top: 1.1rem; }
.belief__signoff {
  margin-top: 1.8rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
}
.belief__signoff span { display: block; font-family: var(--font-body); font-style: normal; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--mauve); margin-top: .35rem; }

/* =========================================================================
   Treatments (surgical / non-surgical)
   ========================================================================= */
.treatments { background: var(--porcelain); }
.treatments__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
.treatments__grid {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.tcard {
  position: relative;
  background: var(--porcelain-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--plum-line); }
.tcard__tag {
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.tcard h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-top: .7rem;
}
.tcard > p { margin-top: .8rem; color: var(--ink-soft); max-width: 30rem; }
.tcard__media {
  margin-top: 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
}
.tcard__media img { width: 100%; height: 100%; object-fit: cover; }

.tgroups {
  margin-top: 1.7rem;
  display: grid;
  gap: 1.4rem;
}
.tgroup h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: .8rem;
}
.tgroup ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem .55rem; }
.tgroup li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .92rem;
  color: var(--ink-soft);
  background: var(--porcelain);
  border: 1px solid var(--line);
  padding: .4rem .85rem;
  border-radius: 999px;
}
.tgroup li .star { width: .72rem; height: .72rem; }
.tcard--dark .tgroup li { background: rgba(255,255,255,.04); }

.treatments__note {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .95rem;
  color: var(--mauve);
}
.treatments__note .star { width: .95rem; height: .95rem; }

/* =========================================================================
   Considered approach (numbered sequence)
   ========================================================================= */
.approach { background: var(--porcelain-3); }
.approach__grid {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.approach__media {
  position: sticky;
  top: 6rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  aspect-ratio: 3 / 4;
}
.approach__media img { width: 100%; height: 100%; object-fit: cover; }

.steps { list-style: none; padding: 0; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.3rem;
  padding-block: clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
}
.step:first-child { border-top: 0; padding-top: 0; }
.step__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  text-stroke: 1px var(--gold);
}
.step h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); }
.step p { margin-top: .6rem; color: var(--ink-soft); max-width: 34rem; }

/* =========================================================================
   Safety & ethics (dark band)
   ========================================================================= */
.safety {
  background: var(--plum-900);
  color: var(--porcelain);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.safety::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(50% 60% at 88% 8%, rgba(201, 162, 76, .16), transparent 60%),
    radial-gradient(45% 55% at 5% 96%, rgba(120, 60, 120, .22), transparent 60%);
}
.safety .eyebrow { color: var(--gold-300); }
.safety .head h2 { color: var(--porcelain); }
.safety .head h2 em { color: var(--gold); }
.safety .head .lead { color: rgba(244, 238, 240, .78); }

.pillars {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.pillar {
  border: 1px solid var(--plum-line);
  border-radius: 18px;
  padding: 1.6rem 1.4rem;
  background: rgba(255, 255, 255, .03);
  transition: transform .5s var(--ease), background .4s var(--ease);
}
.pillar:hover { transform: translateY(-4px); background: rgba(201, 162, 76, .07); }
.pillar .star { width: 1.4rem; height: 1.4rem; margin-bottom: 1rem; }
.pillar h3 { font-size: 1.28rem; color: var(--gold-200); }
.pillar p { margin-top: .55rem; font-size: .92rem; color: rgba(244, 238, 240, .72); }

.safety__note {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--plum-line);
  font-size: .92rem;
  color: rgba(244, 238, 240, .65);
  max-width: 44rem;
}

/* =========================================================================
   Consultants
   ========================================================================= */
.team { background: var(--porcelain-2); }
.team__grid {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.member {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.8rem;
  background: var(--porcelain);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.member__mono {
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--plum-line);
  background: var(--plum-900);
  color: var(--gold-200);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .04em;
}
.member h3 { font-size: 1.4rem; margin-top: 1.2rem; }
.member__role { margin-top: .3rem; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.member p { margin-top: .85rem; font-size: .93rem; color: var(--ink-soft); }
.team__foot { margin-top: 1.8rem; font-size: .84rem; color: var(--mauve); display: flex; align-items: center; gap: .7rem; }
.team__foot .star { width: .85rem; height: .85rem; }

/* =========================================================================
   Consult in confidence (CTA band)
   ========================================================================= */
.consult { background: var(--porcelain); }
.consult__panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: stretch;
  border-radius: 26px;
  overflow: hidden;
  background: var(--plum-900);
  color: var(--porcelain);
  box-shadow: var(--shadow-soft);
}
.consult__body {
  padding: clamp(2.2rem, 5vw, 3.6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.consult__body .eyebrow { color: var(--gold-300); }
.consult__body h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-top: 1rem;
}
.consult__body h2 em { font-style: italic; color: var(--gold); }
.consult__body p { margin-top: 1.1rem; color: rgba(244, 238, 240, .78); max-width: 32rem; }
.consult__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.consult__contact {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.6rem;
  font-size: .9rem;
}
.consult__contact a { color: var(--gold-200); text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.consult__contact a:hover { color: #fff; }
.consult__media { position: relative; min-height: 18rem; }
.consult__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.consult__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(30,15,38,.55), transparent 55%); }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
  background: var(--plum-950);
  color: rgba(244, 238, 240, .78);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__brand .brand { color: var(--porcelain); }
.footer__tag {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-200);
  max-width: 22rem;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer__col ul { list-style: none; padding: 0; display: grid; gap: .7rem; }
.footer__col a { text-decoration: none; color: rgba(244, 238, 240, .74); transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--gold-200); }
.footer__col p { color: rgba(244, 238, 240, .7); font-size: .93rem; }
.footer__col p + p { margin-top: .6rem; }

.footer__bar {
  border-top: 1px solid rgba(201, 162, 76, .16);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .8rem 1.5rem;
  font-size: .84rem;
  color: rgba(244, 238, 240, .6);
}
.footer__bar a { color: var(--gold-200); text-decoration: none; }
.footer__bar a:hover { text-decoration: underline; }

/* =========================================================================
   Sub-page hero (contact / thank-you)
   ========================================================================= */
.pagehead {
  background: var(--plum-900);
  color: var(--porcelain);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pagehead::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(55% 60% at 85% 10%, rgba(201, 162, 76, .18), transparent 60%),
    radial-gradient(50% 55% at 5% 95%, rgba(120, 60, 120, .24), transparent 60%),
    linear-gradient(180deg, var(--plum-950), var(--plum-900));
}
.pagehead__inner { padding-block: clamp(3rem, 7vw, 5.5rem); max-width: 46rem; }
.pagehead .eyebrow { color: var(--gold-300); }
.pagehead h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 300;
  margin-top: 1.2rem;
}
.pagehead h1 em { font-style: italic; color: var(--gold); }
.pagehead p { margin-top: 1.3rem; font-size: clamp(1.02rem, 1.8vw, 1.2rem); color: rgba(244, 238, 240, .78); max-width: 38rem; }

/* =========================================================================
   Contact page
   ========================================================================= */
.contact { background: var(--porcelain); }
.contact__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.form-card {
  background: var(--porcelain-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-card);
}
.form-card > h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.form-card > .form-intro { margin-top: .7rem; color: var(--ink-soft); font-size: .96rem; }

.form { margin-top: 1.8rem; display: grid; gap: 1.2rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: grid; gap: .45rem; }
.field label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
}
.field label .req { color: var(--gold); }
.field .hint { font-size: .78rem; color: var(--mauve); text-transform: none; letter-spacing: 0; font-weight: 400; }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--porcelain);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: .85rem 1rem;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 8rem; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  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='%23C9A24C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem;
}
.field input::placeholder,
.field textarea::placeholder { color: #a596a2; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 76, .18);
  background: var(--porcelain-2);
}
.field input:invalid:not(:placeholder-shown) { border-color: #b4553f; }

.consent { display: flex; align-items: flex-start; gap: .7rem; font-size: .88rem; color: var(--ink-soft); }
.consent input { width: 1.1rem; height: 1.1rem; margin-top: .2rem; accent-color: var(--gold); flex: none; }
.consent label { text-transform: none; letter-spacing: 0; font-weight: 400; }

.form__submit { margin-top: .4rem; }
.form__note {
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--mauve);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.form__note .star { width: .82rem; height: .82rem; }

/* Aside panel */
.aside { display: grid; gap: 1.2rem; }
.aside__block {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem;
  background: var(--porcelain-2);
}
.aside__block h3 {
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.aside__block h3 .star { width: 1rem; height: 1rem; }
.aside__block p { margin-top: .7rem; color: var(--ink-soft); font-size: .94rem; }
.aside__list { list-style: none; padding: 0; margin-top: 1rem; display: grid; gap: .9rem; }
.aside__list li { display: grid; gap: .15rem; }
.aside__list .k { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.aside__list a, .aside__list .v { color: var(--ink); text-decoration: none; font-size: 1.02rem; }
.aside__list a:hover { color: var(--gold); }

.aside__actions { margin-top: 1.2rem; display: grid; gap: .7rem; }
.btn--wa { background: #128C7E; color: #fff; }
.btn--wa:hover { box-shadow: 0 16px 32px -18px rgba(18, 140, 126, .8); }
.btn--call { background: var(--plum-900); color: var(--gold-200); }
.btn--call:hover { box-shadow: 0 16px 32px -20px rgba(30, 15, 38, .9); }

.aside__emergency {
  border: 1px dashed var(--line-strong);
  background: transparent;
}
.aside__emergency h3 { color: var(--ink); }
.aside__emergency strong { color: var(--gold); }

/* =========================================================================
   Thank-you page
   ========================================================================= */
.thanks { background: var(--porcelain); }
.thanks__card {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  background: var(--porcelain-2);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(2.4rem, 6vw, 4rem);
  box-shadow: var(--shadow-card);
}
.thanks__star {
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--plum-line);
  background: var(--plum-900);
}
.thanks__star .star { width: 1.7rem; height: 1.7rem; animation: twinkle 5s var(--ease) infinite; }
.thanks__card h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 300; }
.thanks__card h1 em { font-style: italic; color: var(--gold); }
.thanks__card > p { margin-top: 1.2rem; color: var(--ink-soft); font-size: 1.05rem; }
.thanks__next {
  margin-top: 2rem;
  text-align: left;
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.8rem;
}
.thanks__next li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.thanks__next .star { width: 1rem; height: 1rem; margin-top: .35rem; }
.thanks__next b { font-weight: 500; color: var(--ink); }
.thanks__next span { color: var(--ink-soft); }
.thanks__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }

/* =========================================================================
   Scroll reveal
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1000px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__toggle { display: block; }

  /* Single dropdown panel holding links + CTAs */
  .nav__panel {
    display: block;
    position: fixed;
    inset: 4.75rem 0 auto 0;
    background: rgba(23, 9, 29, .98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem var(--pad-x) 1.5rem;
    border-bottom: 1px solid var(--plum-line);
    transform: translateY(-165%);
    transition: transform .45s var(--ease);
    box-shadow: var(--shadow-soft);
    max-height: calc(100dvh - 4.75rem);
    overflow-y: auto;
  }
  .nav[data-open="true"] .nav__panel { transform: translateY(0); }

  .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav__links a { padding: .9rem .2rem; border-bottom: 1px solid rgba(201, 162, 76, .12); font-size: 1.08rem; }
  .nav__links a::after { display: none; }

  .nav__cta { flex-direction: column; align-items: stretch; gap: .7rem; margin-top: 1.2rem; }
  .nav__cta .btn { width: 100%; padding: .95rem; font-size: 1rem; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 24rem; }
  .belief__grid { grid-template-columns: 1fr; }
  .treatments__grid { grid-template-columns: 1fr; }
  .approach__grid { grid-template-columns: 1fr; }
  .approach__media { position: relative; top: 0; max-width: 26rem; }
  .consult__panel { grid-template-columns: 1fr; }
  .consult__media { min-height: 14rem; order: -1; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .treatments__head { flex-direction: column; align-items: flex-start; }
  .hero__badge { left: 0; }
}

/* =========================================================================
   Reduced motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
