/* ===================================================================
   TRALE BEAUTY — HOMEPAGE V2
   Brand-true black + yellow on warm ivory paper. Editorial, premium.
   Playfair Display + Inter. Clinic-first, conversion-led.
   =================================================================== */

/* ---------- TOKENS ---------- */
:root {
  --paper: #F4EFE4;
  --paper-deep: #ECE5D4;
  --ink: #111111;
  --ink-soft: #2A2A28;
  --gold: #E8B72A;
  --gold-deep: #C99A1A;
  --gold-light: #F2CE5C;
  --sage: #6B6E5A;
  --mute: #8A8378;
  --line: rgba(17, 17, 17, 0.12);

  --display: "Playfair Display", Georgia, serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1320px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
}

/* ---------- TYPE ---------- */
.display, h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.04;
  margin: 0;
}
.display .italic, h1 .italic, h2 .italic, h3 .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
em { font-style: italic; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
}
/* Brighter yellow eyebrow on light backgrounds where contrast allows */
.eyebrow.ink {
  color: var(--gold-deep);
  opacity: 1;
  position: relative;
  padding-left: 1.5rem;
}
.eyebrow.ink::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 14px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Legacy alias — index.php / archive.php / single.php / 404.php / home.php
   and global template-parts use .trale_container / .trale_section. Keep them
   contained + padded so no fallback view ever renders edge-to-edge. */
.trale_container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.trale_section { padding: clamp(3rem, 6vw, 5rem) 0; }
section { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 2.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
/* Primary — solid gold pill (push the brand color) */
.btn--primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 20px -8px rgba(232, 183, 42, 0.6);
}
.btn--primary:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 28px -8px rgba(232, 183, 42, 0.75);
}

/* Dark — flips to gold on hover */
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--gold); color: var(--ink); }

/* Outline · gold (on light backgrounds) */
.btn--outline-gold {
  background: transparent;
  color: var(--gold-deep);
  border: 1.5px solid var(--gold);
  position: relative;
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 8px 22px -6px rgba(232, 183, 42, 0.55);
}

/* Outline · gold-light (on dark backgrounds — used in hero) */
.btn--outline-gold-light {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  position: relative;
}
.btn--outline-gold-light:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 8px 22px -6px rgba(232, 183, 42, 0.55);
}

/* Underlined ghost variants (kept) */
.btn--ghost {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 0.4rem 0;
  border-radius: 0;
}
.btn--ghost:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.btn--ghost-light {
  color: var(--paper);
  border-bottom: 1px solid var(--paper);
  padding: 0.4rem 0;
  border-radius: 0;
}
.btn--ghost-light:hover { color: var(--gold); border-color: var(--gold); }

.btn .arrow { transition: transform 0.4s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(6px); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
  background: transparent;
}
.nav.scrolled {
  background: rgba(244, 239, 228, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.9rem var(--gutter);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  height: 100%;
  transition: opacity 0.3s var(--ease);
}
.nav__brand:hover { opacity: 0.85; }
.nav__logo {
  height: 42px;
  width: auto;
  /* Over the dark hero: invert PNG so black wordmark reads as cream, yellow face stays warm */
  filter: brightness(0) invert(1) sepia(1) saturate(4) hue-rotate(355deg);
  transition: filter 0.4s var(--ease);
}
.nav.scrolled .nav__logo {
  /* Over the ivory scrolled bg: show the real two-color PNG */
  filter: none;
}
@media (max-width: 880px) { .nav__logo { height: 36px; } }

.nav__menu { display: flex; gap: 2.25rem; align-items: center; }
.nav__menu a {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--paper);
  position: relative;
  padding: 0.25rem 0;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.nav.scrolled .nav__menu a { color: var(--ink); }
.nav__menu a::after {
  content: ""; position: absolute; inset: auto 0 -2px 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__menu a:hover { color: var(--gold); }
.nav.scrolled .nav__menu a:hover { color: var(--gold-deep); }
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__cta {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  background: var(--gold);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav__cta:hover { background: var(--paper); }
.nav.scrolled .nav__cta { background: var(--ink); color: var(--paper); }
.nav.scrolled .nav__cta:hover { background: var(--gold); color: var(--ink); }

/* ---------- 1 · HERO ---------- */
.hero {
  min-height: 100vh;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--ink);
}
.hero__visual { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.04) saturate(0.95);
  transform: scale(1.08);
  transition: transform 8s var(--ease);
  display: block;
}
video.hero__img { background: var(--ink); }

/* YouTube / Vimeo iframe wrapper — iframes don't honor object-fit, so we
   over-size them and let the hero__overlay + container hide the edges. */
.hero__embed-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
}
.hero__embed {
  position: absolute;
  top: 50%;
  left: 50%;
  /* "cover" trick: at least 100vw wide and 100vh tall — whichever wins
     based on the 16:9 aspect ratio of the embed. */
  width: 100vw;
  height: 56.25vw;          /* 16:9 of width */
  min-height: 100vh;
  min-width: 177.78vh;      /* 16:9 of height */
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;     /* keep the hero content / overlay clickable */
}
.hero.loaded .hero__img { transform: scale(1); }

.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    /* warm gold glow from bottom-left corner */
    radial-gradient(ellipse 50% 60% at 5% 100%, rgba(232, 183, 42, 0.20) 0%, transparent 55%),
    /* gold-tinted highlight from upper-right */
    radial-gradient(ellipse 40% 45% at 85% 15%, rgba(232, 183, 42, 0.12) 0%, transparent 55%),
    linear-gradient(90deg,
      rgba(17,17,17,0.9) 0%,
      rgba(17,17,17,0.74) 28%,
      rgba(17,17,17,0.42) 55%,
      rgba(17,17,17,0.08) 85%,
      rgba(17,17,17,0) 100%),
    linear-gradient(180deg, rgba(17,17,17,0.2), rgba(17,17,17,0.45));
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding: clamp(6rem, 10vw, 9rem) var(--gutter) 5rem clamp(2rem, 6vw, 6rem);
  max-width: 720px;
  width: 50%;
  color: var(--paper);
}
@media (max-width: 900px) { .hero__copy { width: 100%; max-width: 720px; } }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.hero__eyebrow .line { width: 48px; height: 1px; background: var(--gold); }
.hero__eyebrow .eyebrow { color: var(--gold); }

.hero__title {
  font-size: clamp(2.8rem, 5.6vw, 5.2rem);
  margin-bottom: 2rem;
  color: var(--paper);
  line-height: 1.02;
}
/* Single-line variant — keep H1 on one row at the 50% hero width. */
.hero__title--one-line {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  white-space: nowrap;
}
.hero__title--one-line .line-wrap { white-space: nowrap; }
@media (max-width: 760px) {
  .hero__title--one-line { font-size: clamp(2rem, 8vw, 3rem); white-space: normal; }
  .hero__title--one-line .line-wrap { white-space: normal; }
}
.hero__title .italic { color: var(--gold); }
.hero__title .line-wrap { display: block; overflow: hidden; }
.hero__title .line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}
.hero.loaded .hero__title .line-inner { transform: translateY(0); }
.hero.loaded .hero__title .line-wrap:nth-child(2) .line-inner { transition-delay: 0.15s; }
.hero.loaded .hero__title .line-wrap:nth-child(3) .line-inner { transition-delay: 0.3s; }

.hero__sub {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(244, 239, 228, 0.86);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease) 0.7s, transform 0.9s var(--ease) 0.7s;
}
.hero.loaded .hero__sub { opacity: 1; transform: translateY(0); }

.hero__actions {
  display: flex;
  gap: 1.5rem 2rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease) 0.95s, transform 0.9s var(--ease) 0.95s;
}
.hero.loaded .hero__actions { opacity: 1; transform: translateY(0); }
.hero__actions .btn { white-space: nowrap; }
.hero__actions .btn--primary { padding: 1.05rem 1.85rem; font-size: 0.74rem; letter-spacing: 0.2em; }

.hero__microtrust {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.6);
  opacity: 0;
  transition: opacity 1s var(--ease) 1.15s;
}
.hero.loaded .hero__microtrust { opacity: 1; }
.hero__microtrust strong { color: var(--gold-light); font-weight: 500; }
.hero__microtrust .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
}

.hero__corner {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 4;
  color: var(--paper);
  text-align: right;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.9s var(--ease) 1.3s;
}
.hero.loaded .hero__corner { opacity: 0.9; }
.hero__corner .yr {
  font-family: var(--display);
  font-style: italic;
  font-size: 2.4rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  display: block;
  margin-top: 0.4rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: clamp(2rem, 6vw, 6rem);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0;
  transition: opacity 0.9s var(--ease) 1.2s;
  z-index: 4;
}
.hero.loaded .hero__scroll { opacity: 0.55; }
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px; height: 36px;
  background: var(--paper);
  margin: 0.75rem auto 0;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 760px) {
  .hero__copy { padding: 8rem var(--gutter) 6rem; }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(17,17,17,0.55), rgba(17,17,17,0.88));
  }
  .hero__corner, .hero__scroll { display: none; }
  .hero__microtrust { font-size: 0.65rem; gap: 0.85rem; }
}

/* ---------- 2 · TRUST (marquee) ---------- */
.trust {
  background:
    radial-gradient(ellipse 60% 100% at 50% 50%, rgba(232, 183, 42, 0.10) 0%, transparent 70%),
    var(--ink);
  color: var(--paper);
  padding: 1.6rem 0;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  overflow: hidden;
  position: relative;
}
/* soft fade-in/out on edges so credentials don't snap on/off */
.trust::before, .trust::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.trust::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }

.trust__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  padding-left: 2.5rem;
  animation: trust-marquee 42s linear infinite;
}
.trust:hover .trust__track { animation-play-state: paused; }
.trust__track > span { display: inline-flex; align-items: center; gap: 0.7rem; white-space: nowrap; }
.trust__track .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
  flex-shrink: 0;
}
.trust__track .em {
  color: var(--gold-light); font-family: var(--display);
  font-style: italic; font-size: 1.1rem; letter-spacing: 0; text-transform: none;
}

@keyframes trust-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .trust__track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
  }
  .trust::before, .trust::after { display: none; }
}

/* ---------- 3 · CONCERNS MOSAIC ---------- */
.concerns { padding-top: clamp(7rem, 12vw, 10rem); }
.concerns__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.concerns__head .eyebrow { display: block; margin-bottom: 1rem; }
.concerns__head h2 {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  max-width: 14ch;
}
.concerns__head p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0;
}
@media (max-width: 820px) {
  .concerns__head { grid-template-columns: 1fr; gap: 1.5rem; }
}

.concerns__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 1.25rem;
}
.concern {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--ink);
  transition: transform 0.5s var(--ease);
}
.concern img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 1.4s var(--ease);
}
.concern::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(17,17,17,0.1) 0%, rgba(17,17,17,0.55) 60%, rgba(17,17,17,0.85) 100%);
  transition: background 0.5s var(--ease);
}
.concern:hover img { transform: scale(1.06); }
.concern:hover::after {
  background: linear-gradient(170deg, rgba(17,17,17,0.25) 0%, rgba(17,17,17,0.65) 50%, rgba(17,17,17,0.9) 100%);
}
.concern__copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.75rem 1.75rem 1.75rem;
  color: var(--paper);
}
.concern__k {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  display: block;
}
.concern h3 {
  font-size: clamp(1.5rem, 2.2vw, 2.05rem);
  margin-bottom: 0.75rem;
  color: var(--paper);
}
.concern__cta {
  display: inline-flex;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.75;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.concern__cta .arr { transition: transform 0.4s var(--ease); }
.concern:hover .concern__cta { opacity: 1; color: var(--gold-light); }
.concern:hover .concern__cta .arr { transform: translateX(6px); }

/* Asymmetric placement */
.m1 { grid-column: span 5; grid-row: span 2; }
.m2 { grid-column: span 4; grid-row: span 2; }
.m3 { grid-column: span 3; grid-row: span 2; }
.m4 { grid-column: span 4; grid-row: span 2; }
.m5 { grid-column: span 3; grid-row: span 2; }
.m6 { grid-column: span 5; grid-row: span 2; }

@media (max-width: 880px) {
  .concerns__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .m1, .m2, .m3, .m4, .m5, .m6 { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 540px) {
  .concerns__grid { grid-template-columns: 1fr; }
}

/* ---------- 4 · TREATMENTS ---------- */
.treatments { background: #ffffff; }
.treatments__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  gap: 2rem;
  flex-wrap: wrap;
}
.treatments__head h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  max-width: 14ch;
}
.treatments__head h2 em { font-style: italic; color: var(--gold-deep); }
.treatments__head .lead {
  max-width: 42ch;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.treatment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}
.treatment:first-of-type { border-top: 1px solid var(--line); }
.treatment:nth-child(even) .treatment__visual { order: 2; }
.treatment:nth-child(even) .treatment__copy { order: 1; padding-right: clamp(0rem, 4vw, 3rem); }
.treatment:nth-child(odd) .treatment__copy { padding-left: clamp(0rem, 4vw, 3rem); }

.treatment__visual {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--ink);
}
.treatment__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.treatment:hover .treatment__visual img { transform: scale(1.04); }
.treatment__visual::after {
  content: attr(data-num);
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold-light);
  z-index: 2;
}

.treatment__copy h3 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 0.4rem;
}
.treatment__name {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 1.5rem;
}
.treatment__copy .tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.25rem;
}
.treatment__copy p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 2rem;
  max-width: 48ch;
}
.treatment__meta {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 2rem;
  margin-bottom: 2.2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.treatment__meta div { display: flex; flex-direction: column; gap: 0.3rem; }
.treatment__meta .k {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
}
.treatment__meta .v {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--ink);
}
.treatment__meta .v em { font-style: italic; color: var(--gold); font-weight: 500; }
.treatment__meta div:nth-child(2) .v { background: linear-gradient(180deg, transparent 60%, rgba(232, 183, 42, 0.28) 60%); padding: 0 0.2em; }

.treatments__more { text-align: center; margin-top: 3rem; }

/* 2-col grid of compact editorial cards */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 980px) { .t-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .t-grid { grid-template-columns: 1fr; } }
.t-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}
.t-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-pop);
}
.t-card h3 { transition: color 0.3s var(--ease); }
.t-card:hover h3 { color: var(--gold-deep); }
.t-card__visual {
  position: relative;
  aspect-ratio: 15 / 10;
  overflow: hidden;
  background: var(--ink);
}
.t-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.t-card:hover .t-card__visual img { transform: scale(1.04); }
.t-card__visual::after {
  content: attr(data-num);
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  z-index: 2;
  text-shadow: 0 1px 4px rgba(17, 17, 17, 0.4);
}
.t-card__body {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex-grow: 1;
}
.t-card__tag {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.t-card h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.95rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}
.t-card__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  flex-grow: 1;
}
/* Combined duration + price pill — sits in top-right of the card visual */
.t-card__pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  box-shadow:
    0 8px 24px -6px rgba(232, 183, 42, 0.6),
    0 2px 8px rgba(17, 17, 17, 0.22),
    0 0 0 1px rgba(17, 17, 17, 0.06) inset;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.t-card:hover .t-card__pill {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 12px 30px -6px rgba(232, 183, 42, 0.75),
    0 2px 8px rgba(17, 17, 17, 0.22),
    0 0 0 1px rgba(17, 17, 17, 0.08) inset;
}
.t-card__pill-dur {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.78;
}
.t-card__pill-sep {
  color: var(--ink);
  opacity: 0.5;
  font-size: 0.9rem;
  font-family: var(--display);
}
.t-card__pill-price {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.t-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 0.4rem 0;
  margin-top: 0.25rem;
  align-self: flex-start;
  font-weight: 500;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.t-card__cta .arrow { transition: transform 0.4s var(--ease); display: inline-block; }
.t-card__cta:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.t-card__cta:hover .arrow { transform: translateX(5px); }

.treatments__note {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.treatments__note strong { color: var(--ink); font-weight: 500; }
.treatments__note a {
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.3s var(--ease);
}
.treatments__note a:hover { color: var(--gold-deep); }

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

/* Compact treatments list (3 secondary facials) */
.treatments__list {
  margin-top: clamp(4rem, 8vw, 6rem);
  padding-top: clamp(3rem, 6vw, 4rem);
  border-top: 1px solid var(--line);
}
.t-list-head { margin-bottom: 2.5rem; }
.t-list-head h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  max-width: 22ch;
}
.t-list-head h3 em { font-style: italic; color: var(--gold-deep); }
.t-list { display: flex; flex-direction: column; }
.t-list li {
  display: grid;
  grid-template-columns: 1.4fr 2.2fr auto auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.t-list li:last-child { border-bottom: 1px solid var(--line); }
.t-name {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--ink);
}
.t-desc { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.55; }
.t-dur {
  font-family: var(--body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.t-price {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ink);
  background: linear-gradient(180deg, transparent 55%, var(--gold) 55%);
  padding: 0 0.35em;
  min-width: 80px;
  text-align: right;
  font-weight: 500;
}
.t-cta {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 0.3rem 0;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.t-cta:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.t-list-note {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--mute);
  text-align: center;
}
.t-list-note a { color: var(--gold-deep); border-bottom: 1px solid var(--gold-deep); }
@media (max-width: 820px) {
  .t-list li { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.5rem 0; }
  .t-price { text-align: left; min-width: 0; }
}

@media (max-width: 820px) {
  .treatment { grid-template-columns: 1fr; gap: 2rem; }
  .treatment:nth-child(even) .treatment__visual,
  .treatment:nth-child(odd) .treatment__visual { order: 0; }
  .treatment:nth-child(even) .treatment__copy,
  .treatment:nth-child(odd) .treatment__copy { padding: 0; order: 0; }
  .treatment__meta { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

/* ---------- 5 · RESULTS ---------- */
.results {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(6rem, 12vw, 10rem) 0;
  position: relative;
}
.results__head {
  text-align: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
  padding: 0 var(--gutter);
}
.results__head .eyebrow { color: var(--gold-light); }
.results__head h2 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin: 1.5rem auto 1.5rem;
  max-width: 18ch;
}
.results__head h2 .italic { color: var(--gold-light); }
.results__head > p {
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  opacity: 0.75;
  line-height: 1.75;
}
.results__stat {
  display: inline-flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  margin-top: 1.5rem;
}
.results__stat-n {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold);
  line-height: 1;
}
.results__stat-n .pct { font-size: 0.5em; color: var(--gold-light); margin-left: 0.1em; }
.results__stat-l {
  text-align: left;
  font-size: 0.95rem;
  max-width: 22ch;
  color: rgba(244, 239, 228, 0.85);
  line-height: 1.45;
}
.results__stat-l em { font-style: italic; color: var(--gold-light); }

.results__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  padding: 0 var(--gutter);
}
.results__card {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
}
.results__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 1.2s var(--ease);
}
.results__card:hover img { transform: scale(1.04); }
.results__card::after {
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(17,17,17,0.85));
}
.results__card .meta {
  position: absolute;
  bottom: 1.25rem; left: 1.5rem;
  z-index: 2;
  color: var(--paper);
}
.results__card .meta .k {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.results__card .meta .v {
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
}
.results__card.c1 { grid-column: span 5; aspect-ratio: 4/5; }
.results__card.c2 { grid-column: span 4; aspect-ratio: 1/1; margin-top: 4rem; }
.results__card.c3 { grid-column: span 3; aspect-ratio: 3/4; }
.results__card.c4 { grid-column: span 4; aspect-ratio: 4/3; }
.results__card.c5 { grid-column: span 4; aspect-ratio: 4/3; margin-top: -2rem; }
.results__card.c6 { grid-column: span 4; aspect-ratio: 4/3; }

.results__cta { text-align: center; margin-top: clamp(4rem, 8vw, 6rem); }

@media (max-width: 820px) {
  .results__grid { grid-template-columns: 1fr 1fr; }
  .results__card.c1, .results__card.c2, .results__card.c3,
  .results__card.c4, .results__card.c5, .results__card.c6 {
    grid-column: span 1; aspect-ratio: 4/5; margin-top: 0;
  }
}

/* ---------- 6 · FOUNDER ---------- */
.founder { padding: clamp(7rem, 13vw, 11rem) 0; }
.founder__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.founder__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.founder__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.02) saturate(0.95);
}
.founder__visual::before {
  content: "";
  position: absolute;
  top: -1.75rem; right: -1.75rem;
  width: 60%; height: 60%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.founder__copy .eyebrow { display: block; margin-bottom: 1.5rem; }
.founder__copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 2rem;
  max-width: 14ch;
}
.founder__copy .quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.5;
  color: var(--ink-soft);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 0 0 2rem;
  max-width: 46ch;
}
.founder__copy p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  max-width: 52ch;
}
.founder__credentials {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.founder__credentials .k {
  font-family: var(--display);
  font-size: 1.9rem;
  font-style: italic;
  color: var(--gold-deep);
  line-height: 1;
}
.founder__credentials .v {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 0.4rem;
}
@media (max-width: 820px) {
  .founder__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder__credentials { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* ---------- 7 · PILLARS (photo-paired editorial) ---------- */
.pillars { background: var(--paper-deep); padding: clamp(7rem, 12vw, 11rem) 0; }
.pillars__head {
  max-width: 760px;
  margin: 0 auto clamp(4rem, 8vw, 6rem);
  text-align: center;
}
.pillars__head h2 {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  max-width: 18ch;
  margin: 1.25rem auto 1.5rem;
}
.pillars__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}

.pillars__editorial { display: flex; flex-direction: column; gap: clamp(3rem, 6vw, 5rem); }

.pillar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.pillar-row.reverse .pillar-photo { order: 2; }
.pillar-row.reverse .pillar-text { order: 1; }

.pillar-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.pillar-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 1.4s var(--ease);
}
.pillar-row:hover .pillar-photo img { transform: scale(1.04); }

.pillar-text .num {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.pillar-text h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.pillar-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0;
}

@media (max-width: 820px) {
  .pillar-row, .pillar-row.reverse { grid-template-columns: 1fr; }
  .pillar-row.reverse .pillar-photo, .pillar-row.reverse .pillar-text { order: 0; }
}

/* ---------- 8 · TESTIMONIAL ---------- */
.testimonial { padding: clamp(7rem, 14vw, 12rem) 0; }
.testimonial__wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
.testimonial__portrait {
  position: relative;
  width: clamp(180px, 22vw, 280px);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.testimonial__portrait::before {
  content: "";
  position: absolute;
  inset: -1.25rem -1.25rem auto auto;
  width: 60%; height: 60%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.testimonial__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.testimonial__stars {
  color: var(--gold);
  letter-spacing: 0.4em;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}
.testimonial__quote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 2rem;
  transition: opacity 0.5s ease;
}
.testimonial__quote em { font-style: italic; color: var(--gold-deep); background: linear-gradient(180deg, transparent 60%, rgba(232, 183, 42, 0.25) 60%); padding: 0 0.15em; }
.testimonial__by {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.testimonial__by .name { color: var(--ink); font-weight: 500; }

.testimonial__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.testimonial__rail { display: flex; gap: 0.6rem; }
.testimonial__rail span {
  width: 24px; height: 1px;
  background: var(--line);
  transition: background 0.3s var(--ease);
}
.testimonial__rail span.on { background: var(--gold-deep); }

@media (max-width: 720px) {
  .testimonial__wrap { grid-template-columns: 1fr; text-align: center; }
  .testimonial__portrait { margin: 0 auto; }
  .testimonial__portrait::before { display: none; }
  .testimonial__footer { flex-direction: column; gap: 1.25rem; }
}

/* ---------- 9 · PROCESS ---------- */
.process {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(6rem, 12vw, 10rem) 0;
}
.process__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}
.process__head h2 {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  max-width: 16ch;
}
.process__head h2 .italic { color: var(--gold-light); }
.process__head .eyebrow { color: var(--gold-light); display: block; margin-bottom: 1.25rem; }
.process__head p { max-width: 42ch; opacity: 0.72; line-height: 1.75; margin: 0; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-deep);
  opacity: 0.4;
}
.step { padding-top: 1rem; position: relative; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--gold);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.step h3 { font-size: 1.4rem; margin-bottom: 0.75rem; color: var(--paper); }
.step p { font-size: 0.95rem; opacity: 0.72; line-height: 1.75; margin: 0; }

@media (max-width: 880px) {
  .process__head { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__steps::before { display: none; }
}
@media (max-width: 520px) {
  .process__steps { grid-template-columns: 1fr; }
}

/* ---------- 10 · ACADEMY (demoted) ---------- */
.academy { padding: clamp(5rem, 10vw, 8rem) 0; }
.academy__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.academy__copy .eyebrow { display: block; margin-bottom: 1.25rem; }
.academy__copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
  max-width: 16ch;
}
.academy__copy p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 2rem;
  max-width: 50ch;
}
.academy__visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.academy__visual img { width: 100%; height: 100%; object-fit: cover; }
.academy__visual .badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--paper);
  padding: 0.7rem 1.25rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink);
}
.academy__visual .badge .gold { color: var(--gold-deep); }
@media (max-width: 820px) {
  .academy__grid { grid-template-columns: 1fr; }
}

/* ---------- 11 · SHOP (slim tertiary) ---------- */
.shop {
  background: var(--paper-deep);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.shop__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.shop__copy .eyebrow { display: block; margin-bottom: 1rem; }
.shop__copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
  max-width: 14ch;
}
.shop__copy p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  max-width: 42ch;
}
.shop__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.shop-prod {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
  transition: transform 0.4s var(--ease);
}
.shop-prod:hover { transform: translateY(-4px); }
.shop-prod img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--paper);
  margin-bottom: 0.5rem;
}
.shop-prod .lbl {
  font-size: 0.95rem;
  color: var(--ink);
}
.shop-prod .prc {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-deep);
}
@media (max-width: 720px) {
  .shop__row { grid-template-columns: 1fr; }
}

/* ---------- 12 · FAQ — single column, white, prominent items ---------- */
.faq {
  background: #ffffff;
  padding: clamp(6rem, 11vw, 9rem) 0;
}
.faq__grid {
  display: block;
  max-width: 920px;
  margin: 0 auto;
}
.faq__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.faq__head h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: none;
  margin: 0.85rem auto 1.25rem;
  line-height: 1.05;
}
.faq__head p {
  color: var(--ink-soft);
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 auto;
}
.faq__head .eyebrow { display: inline-block; margin-bottom: 0; }

.faq__list {
  border-top: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 0;
  position: relative;
  transition: background 0.3s var(--ease);
}
.faq__item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease);
}
.faq__item.open { background: rgba(232, 183, 42, 0.05); }
.faq__item.open::before { transform: scaleY(1); }
.faq__item:hover:not(.open) { background: rgba(17, 17, 17, 0.015); }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 500;
  text-align: left;
  width: 100%;
  padding: 1.5rem clamp(1.25rem, 2.5vw, 2rem);
  color: var(--ink);
  transition: color 0.3s var(--ease), padding 0.3s var(--ease);
  line-height: 1.25;
}
.faq__q:hover { color: var(--gold-deep); }
.faq__item.open .faq__q { color: var(--ink); padding-bottom: 0.85rem; }
.faq__q .plus {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.faq__q .plus::before, .faq__q .plus::after {
  content: "";
  position: absolute;
  inset: 50% 25% auto 25%;
  height: 1px;
  background: var(--ink);
  transform: translateY(-50%);
  transition: background 0.3s var(--ease);
}
.faq__q .plus::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}
.faq__item.open .faq__q .plus { background: var(--gold); border-color: var(--gold); }
.faq__item.open .faq__q .plus::before, .faq__item.open .faq__q .plus::after { background: var(--ink); }
.faq__item.open .faq__q .plus::after { transform: translateY(-50%) rotate(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease), padding 0.4s var(--ease);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  padding: 0 clamp(1.25rem, 2.5vw, 2rem);
  max-width: 70ch;
}
.faq__item.open .faq__a { max-height: 600px; padding: 0 clamp(1.25rem, 2.5vw, 2rem) 1.75rem; }
@media (max-width: 600px) {
  .faq__q { font-size: 1.1rem; padding: 1.25rem 1rem; }
  .faq__a { font-size: 1rem; padding: 0 1rem; }
  .faq__item.open .faq__a { padding: 0 1rem 1.25rem; }
}

/* ---------- 13 · FINAL CTA ---------- */
.cta-final {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(7rem, 14vw, 12rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(232, 183, 42, 0.22), transparent 60%);
  pointer-events: none;
}
.cta-final .eyebrow { color: var(--gold-light); display: block; margin-bottom: 1.75rem; position: relative; }
.cta-final h2 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  max-width: 18ch;
  margin: 0 auto 2.5rem;
  position: relative;
}
.cta-final h2 .italic { color: var(--gold-light); }
.cta-final p {
  max-width: 50ch;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  opacity: 0.78;
  position: relative;
}
.cta-final__actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- FOOTER · WHITE ---------- */
.footer {
  background: #ffffff;
  color: var(--ink-soft);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.footer__logo {
  height: 56px;
  width: auto;
  filter: none;            /* original two-color PNG reads on white */
}
.footer__brand + p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  opacity: 0.78;
  line-height: 1.75;
  max-width: 36ch;
}
.footer__col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin: 0 0 1.5rem;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.footer__col a:hover { color: var(--gold-deep); padding-left: 0.25rem; }

/* Visit column — icon + text rows */
.footer__col--visit .footer__address,
.footer__col--visit .footer__contact,
.footer__col--visit .footer__hours {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0 0 0.85rem;
  line-height: 1.55;
}
.footer__col--visit a.footer__contact {
  transition: color 0.3s var(--ease);
}
.footer__col--visit a.footer__contact:hover {
  color: var(--gold-deep);
  padding-left: 0;
}
.footer__icon {
  color: var(--gold-deep);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.footer__hours { opacity: 0.85; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- STICKY MOBILE BOOK ---------- */
.sticky-book {
  display: none;
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 90;
  text-align: center;
  background: var(--gold);
  color: var(--ink);
  padding: 1.05rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.28), 0 2px 6px rgba(17, 17, 17, 0.12);
  text-decoration: none;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
  will-change: transform;
}
.sticky-book:hover { background: var(--gold-deep); }
.sticky-book span { margin-left: 0.4rem; display: inline-block; transition: transform 0.3s var(--ease); }
.sticky-book:hover span { transform: translateX(3px); }
.sticky-book[data-trale-sticky-hidden="1"] {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 820px) { .sticky-book { display: block; } }
/* Don't fight the promo-bar / nav on landscape phones */
@media (max-width: 820px) and (max-height: 480px) {
  .sticky-book { padding: 0.75rem 1.25rem; font-size: 0.75rem; }
}

/* ===================================================================
   CONCERN PAGES — inner template
   =================================================================== */

/* Sub-hero (smaller than home hero, lighter overlay) */
.subhero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.subhero__visual { position: absolute; inset: 0; z-index: 1; }
.subhero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
}
.subhero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.55) 45%, rgba(17,17,17,0.15) 80%, rgba(17,17,17,0) 100%),
    linear-gradient(180deg, rgba(17,17,17,0.2), rgba(17,17,17,0.45));
  pointer-events: none;
}
.subhero__copy {
  position: relative;
  z-index: 3;
  padding: 8rem var(--gutter) 4rem clamp(2rem, 6vw, 6rem);
  max-width: 740px;
  width: 100%;
  color: var(--paper);
}
.subhero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.7);
  margin-bottom: 1.75rem;
}
.subhero__breadcrumb a { color: var(--gold); transition: color 0.3s var(--ease); }
.subhero__breadcrumb a:hover { color: var(--gold-light); }
.subhero__breadcrumb .sep { opacity: 0.5; }

.subhero__title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 1.5rem;
}
.subhero__title .italic { color: var(--gold); font-style: italic; }
.subhero__deck {
  max-width: 50ch;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(244, 239, 228, 0.85);
  margin: 0 0 2.5rem;
}
.subhero__actions { display: flex; gap: 2rem; align-items: center; }

/* Concern: What it is */
.what-it-is { padding: clamp(5rem, 10vw, 8rem) 0; }
.what-it-is__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.what-it-is__visual {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
}
.what-it-is__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.what-it-is:hover .what-it-is__visual img { transform: scale(1.03); }
.what-it-is__copy .eyebrow { display: block; margin-bottom: 1.25rem; }
.what-it-is__copy h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 1.75rem;
  max-width: 16ch;
}
.what-it-is__copy h2 .italic { font-style: italic; color: var(--gold-deep); }
.what-it-is__copy p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  max-width: 56ch;
}
@media (max-width: 820px) {
  .what-it-is__grid { grid-template-columns: 1fr; }
  .what-it-is__copy { order: 2; }
  .what-it-is__visual { order: 1; }
}

/* Concern: Who it's for */
.candidates { background: var(--paper-deep); padding: clamp(5rem, 10vw, 8rem) 0; }
.candidates__head { text-align: center; margin-bottom: 3rem; }
.candidates__head .eyebrow { display: block; margin-bottom: 1rem; }
.candidates__head h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  max-width: 20ch;
  margin: 0 auto;
}
.candidates__head h2 .italic { font-style: italic; color: var(--gold-deep); }
.candidates__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  max-width: 920px;
  margin: 0 auto;
}
.candidate {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.candidate .num {
  flex: 0 0 auto;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-deep);
  line-height: 1.2;
}
.candidate p { margin: 0; font-size: 1rem; line-height: 1.65; color: var(--ink-soft); }
@media (max-width: 720px) { .candidates__grid { grid-template-columns: 1fr; gap: 0 2rem; } }

/* Concern: Treatments used */
.protocols { padding: clamp(5rem, 10vw, 8rem) 0; }
.protocols__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.protocols__head h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  max-width: 14ch;
  line-height: 1.05;
}
.protocols__head h2 .italic { font-style: italic; color: var(--gold-deep); }
.protocols__head .lead { max-width: 36ch; color: var(--ink-soft); font-size: 1rem; line-height: 1.7; }

.protocols__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.protocol-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.3s var(--ease), transform 0.4s var(--ease);
}
.protocol-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.protocol-card .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-deep);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.protocol-card h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  margin: 0;
}
.protocol-card .name {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.5rem;
}
.protocol-card p { font-size: 0.98rem; line-height: 1.7; color: var(--ink-soft); margin: 0; flex-grow: 1; }
.protocol-card .meta {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.05rem;
}
.protocol-card .meta em { font-style: italic; color: var(--gold-deep); }
@media (max-width: 820px) { .protocols__row { grid-template-columns: 1fr; } }

/* Concern: Treatment arc */
.arc {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.arc__head { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.arc__head .eyebrow { color: var(--gold-light); display: block; margin-bottom: 1.25rem; }
.arc__head h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  max-width: 18ch;
  margin: 0 auto 1.5rem;
}
.arc__head h2 .italic { font-style: italic; color: var(--gold-light); }
.arc__head p { max-width: 50ch; margin: 0 auto; opacity: 0.78; }

.arc__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.arc__steps::before {
  content: "";
  position: absolute;
  top: 12px; left: 8%; right: 8%;
  height: 1px;
  background: var(--gold-deep);
  opacity: 0.4;
}
.arc-step .marker {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  margin-bottom: 1.5rem;
  z-index: 2;
}
.arc-step .when {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  display: block;
}
.arc-step h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
  color: var(--paper);
}
.arc-step p { font-size: 0.95rem; line-height: 1.7; opacity: 0.72; margin: 0; }
@media (max-width: 820px) {
  .arc__steps { grid-template-columns: 1fr 1fr; }
  .arc__steps::before { display: none; }
}
@media (max-width: 520px) { .arc__steps { grid-template-columns: 1fr; } }

/* Concern: Mini-results strip */
.mini-results { padding: clamp(5rem, 10vw, 8rem) 0; }
.mini-results__head { text-align: center; margin-bottom: 3rem; }
.mini-results__head .eyebrow { display: block; margin-bottom: 1rem; }
.mini-results__head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 18ch;
  margin: 0 auto;
}
.mini-results__head h2 .italic { font-style: italic; color: var(--gold-deep); }
.mini-results__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.mini-results figure {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin: 0;
  background: var(--ink);
}
.mini-results figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.mini-results figure:hover img { transform: scale(1.04); }
.mini-results figure::after {
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(17,17,17,0.85));
}
.mini-results figcaption {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  z-index: 2;
  color: var(--paper);
}
.mini-results figcaption .k {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
  display: block;
}
.mini-results figcaption .v {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
}
.mini-results__cta { text-align: center; margin-top: 3rem; }
@media (max-width: 720px) { .mini-results__row { grid-template-columns: 1fr; } }

/* ===================================================================
   PATTERNS — Tidii + Boujee hover library
   =================================================================== */

/* Skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: var(--paper);
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
}
.skip:focus { left: 1rem; top: 1rem; }

/* Boujee animated underline (background-size trick) */
.ulh {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.35s var(--ease);
}
.ulh:hover { background-size: 100% 1px; }
.ulh-light {
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.35s var(--ease), color 0.3s var(--ease);
}
.ulh-light:hover { background-size: 100% 1px; color: var(--gold-light); }

/* Tidii premium shadow */
:root {
  --shadow-pop: 0 1px 0 rgba(17,17,17,0.06), 0 24px 48px -12px rgba(17,17,17,0.28);
}

/* ===================================================================
   3 · TRUST PILLARS (front-of-homepage proof, Tidii-style)
   =================================================================== */
.pillars-tr {
  background: var(--paper);
  padding: clamp(5rem, 9vw, 8rem) 0;
}
.pillars-tr__head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.pillars-tr__head h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  max-width: 18ch;
  margin: 1rem auto 0;
}
.pillars-tr__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.pillar-tr {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pillar-tr::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.pillar-tr:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-pop);
}
.pillar-tr:hover::before { transform: scaleX(1); }
.pillar-tr__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold-deep);
  line-height: 1;
  transition: color 0.3s var(--ease);
}
.pillar-tr:hover .pillar-tr__num { color: var(--gold); }
.pillar-tr h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0;
}
.pillar-tr p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 880px) {
  .pillars-tr__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pillars-tr__grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   MID-PAGE CTA — modern photo-led card (replaces gradient banner)
   =================================================================== */
.cta-card {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--paper);
}
.cta-card--dark {
  background:
    radial-gradient(ellipse 50% 70% at 100% 100%, rgba(232, 183, 42, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 0% 0%,     rgba(232, 183, 42, 0.10) 0%, transparent 55%),
    var(--ink);
  color: var(--paper);
}

.cta-card__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.cta-card--dark .cta-card__inner {
  background: rgba(255,255,255,0.04);
  border-color: rgba(232,183,42,0.22);
}
.cta-card__inner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pop);
}
.cta-card__inner--reverse .cta-card__visual { order: 2; }
.cta-card__inner--reverse .cta-card__body   { order: 1; }

.cta-card__visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 320px;
}
.cta-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.cta-card__inner:hover .cta-card__visual img { transform: scale(1.04); }

.cta-card__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 0.95rem;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(17,17,17,0.18);
}
.cta-card__badge--gold { background: var(--gold); color: var(--ink); }

.cta-card__body {
  padding: clamp(2.25rem, 4vw, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-card__body .eyebrow { display: block; margin-bottom: 1rem; }
.cta-card__body h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.06;
  color: inherit;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}
.cta-card__body h2 em { font-style: italic; color: var(--gold-deep); }
.cta-card--dark .cta-card__body h2 em { color: var(--gold); }
.cta-card__body p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 40ch;
  color: var(--ink-soft);
}
.cta-card--dark .cta-card__body p { color: rgba(244,239,228,0.78); }
.cta-card--dark .cta-card__body .eyebrow { color: var(--gold-light); }

/* Modern arrow-circle link (replaces button) */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  align-self: flex-start;
}
.cta-link span:first-child {
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
  transition: padding 0.3s var(--ease);
}
.cta-link:hover span:first-child { padding-bottom: 0.4rem; }
.cta-link__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease);
  flex-shrink: 0;
}
.cta-link__arrow svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.cta-link:hover .cta-link__arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: rotate(-12deg) scale(1.08);
}
.cta-link:hover .cta-link__arrow svg { transform: rotate(12deg) translateX(2px); }
.cta-link--light { color: var(--paper); }
.cta-link--light:hover .cta-link__arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

@media (max-width: 880px) {
  .cta-card__inner,
  .cta-card__inner--reverse { grid-template-columns: 1fr; }
  .cta-card__inner--reverse .cta-card__visual,
  .cta-card__inner--reverse .cta-card__body,
  .cta-card__visual,
  .cta-card__body { order: 0; }
  .cta-card__visual { min-height: 260px; aspect-ratio: 4/3; }
}


/* ===================================================================
   MISSION SECTION — 2-column with image
   =================================================================== */
.mission {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--paper);
}
.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.mission__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
}
.mission__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.mission__visual:hover img { transform: scale(1.03); }
.mission__chip {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.6rem 1rem;
  box-shadow: 0 4px 12px rgba(17,17,17,0.15);
}
.mission__copy .eyebrow.ink {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.mission__copy h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1.75rem;
  max-width: 14ch;
}
.mission__body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 2rem;
}
/* mission__cta — when applied to btn--primary, add a small top margin so
   it doesn't hug the body copy. The yellow pill styles come from .btn--primary. */
.mission__cta {
  margin-top: 0.5rem;
  align-self: flex-start;
}
@media (max-width: 880px) {
  .mission__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission__visual { aspect-ratio: 4/3; max-width: 520px; }
}


/* ===================================================================
   PILLARS — 3-column variant
   =================================================================== */
.pillars-tr__grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) {
  .pillars-tr__grid--3 { grid-template-columns: 1fr; }
}


/* ===================================================================
   NAV — dropdown menus (matches live tralebeauty.com structure)
   =================================================================== */
.nav__menu .has-sub {
  position: relative;
  display: inline-block;
}
.nav__menu .has-sub > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav__menu .caret {
  font-size: 0.7em;
  opacity: 0.7;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  display: inline-block;
}
.nav__menu .has-sub:hover > a .caret,
.nav__menu .has-sub:focus-within > a .caret {
  transform: rotate(-180deg);
  opacity: 1;
}
.nav__menu .sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 290px;
  width: max-content;
  max-width: 360px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(244,239,228,0.5) inset,
    0 18px 40px -12px rgba(17, 17, 17, 0.22),
    0 4px 12px rgba(17, 17, 17, 0.06);
  padding: 0.55rem 0;
  margin-top: 0.75rem;       /* visual breath; bridge handles hover */
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease), transform 0.3s var(--ease);
  overflow: hidden;
}
/* Small gold accent rail on the left edge */
.nav__menu .sub::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  bottom: 0.55rem;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  border-radius: 2px;
  opacity: 0.85;
}
/* Decorative arrow tip pointing back to the parent link */
.nav__menu .sub::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
/* Invisible hover bridge between parent link and submenu so the
   submenu stays open while the cursor crosses the visual gap. */
.nav__menu .has-sub::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.85rem;          /* tall enough to bridge the visual gap */
  background: transparent;
}
.nav__menu .has-sub:hover > .sub,
.nav__menu .has-sub:focus-within > .sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__menu .sub a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem 0.6rem 1.5rem;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), padding 0.3s var(--ease);
  position: relative;
  white-space: nowrap;
}
.nav__menu .sub a::after {
  display: inline-block;
  position: static;
  content: "→";
  font-family: var(--body);
  font-weight: 400;
  background: transparent;
  width: auto;
  height: auto;
  transform: none;
  color: var(--gold);
  opacity: 0;
  font-size: 0.95em;
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease);
}
.nav__menu .sub a:hover {
  background: var(--paper-deep);
  color: var(--ink);
  padding-left: 1.85rem;
}
.nav__menu .sub a:hover::after {
  opacity: 1;
  transform: translateX(2px);
}
/* Over the dark hero (unscrolled), submenus stay light & elegant — no flat dark box. */
.nav:not(.scrolled) .nav__menu .sub {
  background: var(--paper);
  border-color: rgba(232, 183, 42, 0.3);
}
.nav:not(.scrolled) .nav__menu .sub::after {
  background: var(--paper);
  border-color: rgba(232, 183, 42, 0.3);
}
.nav:not(.scrolled) .nav__menu .sub a { color: var(--ink-soft); }
.nav:not(.scrolled) .nav__menu .sub a:hover {
  background: var(--paper-deep);
  color: var(--ink);
}

@media (max-width: 1080px) {
  .nav__menu { gap: 1.6rem; }
}
@media (max-width: 980px) {
  .nav__menu .has-sub > .sub { display: none; }
}

/* ===================================================================
   REVIEWS — editorial photo backdrop + glass satellite cards
   Same backdrop language as .cta-final--photo, but tuned for testimonials.
   =================================================================== */
.reviews {
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) 0;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
}
.reviews--photo .reviews__bg {
  position: absolute;
  inset: 0;
  background-image: var(--rv-bg);
  background-size: cover;
  background-position: center 35%;
  filter: contrast(1.06) saturate(0.85) brightness(0.5);
  z-index: -3;
  transform: scale(1.04);
}
.reviews--photo .reviews__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(232,183,42,0.22) 0%, transparent 55%),
    linear-gradient(180deg, rgba(17,17,17,0.62) 0%, rgba(17,17,17,0.85) 100%);
}
.reviews--photo .reviews__sparkle {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 15% 22%, rgba(232,183,42,0.18) 0, transparent 1px),
    radial-gradient(circle at 82% 78%, rgba(232,183,42,0.18) 0, transparent 1px),
    radial-gradient(circle at 70% 18%, rgba(244,239,228,0.12) 0, transparent 1px),
    radial-gradient(circle at 25% 70%, rgba(244,239,228,0.12) 0, transparent 1px);
  background-size: 600px 600px;
  background-repeat: no-repeat;
  opacity: 0.6;
  pointer-events: none;
}

.reviews__inner { position: relative; z-index: 1; }

.reviews__head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.reviews__head .eyebrow {
  color: var(--gold-light);
  display: inline-block;
  margin-bottom: 1rem;
}
.reviews__head h2 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  max-width: 18ch;
  margin: 0 auto;
  color: var(--paper);
}
.reviews__head h2 .italic { color: var(--gold-light); }

/* ---------- Rating row under the head ---------- */
.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(232, 183, 42, 0.3);
  border-radius: 999px;
  background: rgba(244, 239, 228, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.reviews__stars { color: var(--gold); letter-spacing: 0.32em; font-size: 0.95rem; }
.reviews__rating-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.72);
  font-weight: 500;
}

/* ---------- Pure carousel — Tidii pattern ---------- */
.rv-carousel {
  position: relative;
  margin: clamp(3rem, 5vw, 4rem) 0 2.5rem;
  padding: 0 clamp(0, 5vw, 64px);
}
.rv-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.rv-carousel__viewport::-webkit-scrollbar { display: none; }

.rv-carousel__track {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 1.5rem;
  display: flex;
  gap: 1.5rem;
}
.rv-carousel__slide {
  flex: 0 0 calc((100% - 3rem) / 3);   /* 3 cards visible at desktop */
  scroll-snap-align: start;
  display: flex;
}

/* Glass card */
.rv-card {
  background: rgba(244, 239, 228, 0.06);
  border: 1px solid rgba(232, 183, 42, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  border-radius: 6px;
  width: 100%;
  min-height: 320px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.rv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,183,42,0.55), transparent);
}
.rv-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(244, 239, 228, 0.09);
}
.rv-card__quote-mark {
  position: absolute;
  top: 0.8rem;
  right: 1.25rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 4.5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.4;
  pointer-events: none;
}
.rv-card__stars {
  color: var(--gold);
  letter-spacing: 0.32em;
  font-size: 1rem;
  z-index: 1;
}
.rv-card__quote {
  /* Body font (Inter) — clean, modern, no serif. */
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--paper);
  margin: 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  font-weight: 400;
  letter-spacing: 0.005em;
}
/* No special em treatment — testimonials read as plain quotes, no highlighter. */
.rv-card__quote em {
  font-style: normal;
  color: inherit;
  background: none;
  padding: 0;
}
.rv-card__by {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 183, 42, 0.18);
}
.rv-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232,183,42,0.35);
}
.rv-card__by .name {
  font-size: 0.95rem;
  color: var(--paper);
  font-weight: 500;
}
.rv-card__by .meta {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.65);
  margin-top: 0.2rem;
}

/* Arrows */
.rv-carousel__arrow {
  position: absolute;
  top: calc(50% - 1.25rem);
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(244, 239, 228, 0.05);
  border: 1px solid rgba(232, 183, 42, 0.45);
  color: var(--gold-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  backdrop-filter: blur(8px);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
}
.rv-carousel__arrow:hover:not(:disabled) {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.06);
}
.rv-carousel__arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.rv-carousel__arrow--prev { left: -8px; }
.rv-carousel__arrow--next { right: -8px; }

/* Dots */
.rv-carousel__dots {
  list-style: none;
  margin: 1.5rem auto 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}
.rv-carousel__dots button {
  width: 28px;
  height: 4px;
  border: 0;
  background: rgba(244, 239, 228, 0.22);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
}
.rv-carousel__dots button.is-active {
  background: var(--gold);
  width: 44px;
}
.rv-carousel__dots button:hover { background: var(--gold-light); }

/* Bottom CTA — outline gold pill */
.reviews__cta { text-align: center; margin-top: 2rem; }

@media (max-width: 1024px) {
  .rv-carousel__slide { flex: 0 0 calc((100% - 1.5rem) / 2); }
}
@media (max-width: 720px) {
  .rv-carousel { padding: 0 1rem; }
  .rv-carousel__slide { flex: 0 0 88%; }
  .rv-carousel__arrow { display: none; }
}

/* ===================================================================
   Footer h3 fix (now using h3 instead of h4 for proper hierarchy)
   =================================================================== */
.footer__col h3 {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.5rem;
  font-weight: 600;
}

/* ===================================================================
   PICTURE-HEAVY PATTERNS — salon aesthetic
   =================================================================== */

/* ===================================================================
   DARK PREMIUM PILLARS — "What sets us apart"
   Dark backdrop with subtle gold corner glow + 3 lifted glass-ink cards
   =================================================================== */
.pillars-dark {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.pillars-dark__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 70% at 0% 0%,   rgba(232,183,42,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 100% 100%, rgba(232,183,42,0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(17,17,17,0.6), rgba(17,17,17,0.9));
  pointer-events: none;
}
.pillars-dark__inner { position: relative; z-index: 1; }
.pillars-dark__head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.pillars-dark__head .eyebrow {
  color: var(--gold-light);
  display: inline-block;
  margin-bottom: 1rem;
}
.pillars-dark__head h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 18ch;
  margin: 0 auto;
  color: var(--paper);
}
.pillars-dark__head h2 .italic { color: var(--gold); }

.pillars-dark__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.pillar-box {
  position: relative;
  background: linear-gradient(180deg, rgba(244,239,228,0.045) 0%, rgba(244,239,228,0.015) 100%);
  border: 1px solid rgba(232, 183, 42, 0.18);
  padding: clamp(2rem, 3.5vw, 2.75rem) clamp(1.75rem, 3vw, 2.25rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 320px;
  box-shadow:
    0 1px 0 rgba(244,239,228,0.04) inset,
    0 18px 40px -20px rgba(0,0,0,0.6),
    0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}

/* Top gold light-bar that intensifies on hover */
.pillar-box__top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,183,42,0.55) 50%, transparent 100%);
  transition: opacity 0.5s var(--ease), height 0.5s var(--ease);
}
.pillar-box:hover .pillar-box__top-line {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

/* Bottom-right gold radial pulse on hover */
.pillar-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 100%, rgba(232,183,42,0.16) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.pillar-box:hover::before { opacity: 1; }

.pillar-box__num {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(232,183,42,0.25);
  transition: color 0.4s var(--ease), text-shadow 0.4s var(--ease), transform 0.5s var(--ease);
  margin-bottom: 0.25rem;
}
.pillar-box:hover .pillar-box__num {
  color: var(--gold-light);
  text-shadow: 0 4px 30px rgba(232,183,42,0.55);
  transform: translateY(-2px);
}

.pillar-box h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  line-height: 1.2;
  color: var(--paper);
  margin: 0;
  max-width: 16ch;
  transition: color 0.4s var(--ease);
}
.pillar-box:hover h3 { color: var(--gold-light); }

.pillar-box p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(244, 239, 228, 0.72);
  margin: 0;
  flex-grow: 1;
}

.pillar-box__corner {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(232,183,42,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  opacity: 0.7;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.pillar-box__corner svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.pillar-box:hover .pillar-box__corner {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: rotate(-12deg) scale(1.08);
  opacity: 1;
}
.pillar-box:hover .pillar-box__corner svg { transform: translateX(2px) rotate(12deg); }

/* Lift on hover */
.pillar-box:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(244,239,228,0.08) 0%, rgba(244,239,228,0.025) 100%);
  border-color: rgba(232, 183, 42, 0.55);
  box-shadow:
    0 1px 0 rgba(244,239,228,0.06) inset,
    0 32px 60px -20px rgba(0,0,0,0.7),
    0 0 0 1px rgba(232,183,42,0.18),
    0 0 40px -10px rgba(232,183,42,0.25);
}

@media (max-width: 880px) {
  .pillars-dark__grid { grid-template-columns: 1fr; }
  .pillar-box { min-height: auto; }
}


/* Full-bleed photo divider strip — 30% taller, clearer (less dimming) */
.photo-strip {
  position: relative;
  height: clamp(364px, 42vw, 600px);
  overflow: hidden;
  background: var(--ink);
}
.photo-strip__inner { position: absolute; inset: 0; }
.photo-strip__inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Less dimming, slight clarity boost so the clinic detail reads */
  filter: contrast(1.06) saturate(1) brightness(1);
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}
.photo-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 80% at 0% 50%,   rgba(232, 183, 42, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 100% 50%, rgba(232, 183, 42, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(17,17,17,0.12), rgba(17,17,17,0.12));
  pointer-events: none;
  z-index: 1;
}


/* Lookbook gallery — asymmetric mosaic */
.lookbook {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--paper);
}
.lookbook__head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.lookbook__head .eyebrow.ink { display: inline-block; margin-bottom: 1rem; }
.lookbook__head h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
}
.lookbook__head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}

.lookbook__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 1.25rem;
}
.lookbook__item {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  margin: 0;
  cursor: zoom-in;
}
.lookbook__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
  transition: transform 1.4s var(--ease), filter 0.5s var(--ease);
}
.lookbook__item:hover img { transform: scale(1.06); filter: contrast(1.05) saturate(1); }
.lookbook__item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(17,17,17,0.65));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.lookbook__item:hover::after { opacity: 1; }
.lookbook__cap {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  z-index: 2;
  color: var(--paper);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  text-shadow: 0 1px 4px rgba(17,17,17,0.4);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.lookbook__item:hover .lookbook__cap { transform: translateY(0); opacity: 1; }

/* Asymmetric mosaic placement */
.lookbook__item.g1 { grid-column: span 5; grid-row: span 3; }
.lookbook__item.g2 { grid-column: span 4; grid-row: span 2; }
.lookbook__item.g3 { grid-column: span 3; grid-row: span 3; }
.lookbook__item.g4 { grid-column: span 4; grid-row: span 2; margin-top: -1rem; }
.lookbook__item.g5 { grid-column: span 5; grid-row: span 2; margin-top: -1rem; }
.lookbook__item.g6 { grid-column: span 4; grid-row: span 2; }

@media (max-width: 880px) {
  .lookbook__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; gap: 0.85rem; }
  .lookbook__item.g1, .lookbook__item.g2, .lookbook__item.g3,
  .lookbook__item.g4, .lookbook__item.g5, .lookbook__item.g6 {
    grid-column: span 1;
    grid-row: span 1;
    margin-top: 0;
  }
  .lookbook__item.g1 { grid-row: span 2; }
}


/* Final CTA with background image */
.cta-final--photo {
  position: relative;
  isolation: isolate;
}
.cta-final--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cta-bg);
  background-size: cover;
  background-position: center 35%;
  filter: contrast(1.05) saturate(0.85) brightness(0.55);
  z-index: -2;
}
.cta-final--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(232, 183, 42, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(17,17,17,0.75) 0%, rgba(17,17,17,0.85) 100%);
  z-index: -1;
}


/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* ===================================================================
   HEADER · phone, search trigger, burger, CTA cluster
   =================================================================== */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: var(--paper);
  transition: color 0.3s var(--ease);
}
.nav__phone svg { color: var(--gold); transition: transform 0.3s var(--ease); }
.nav__phone:hover { color: var(--gold); }
.nav__phone:hover svg { transform: rotate(-12deg) scale(1.08); }
.nav.scrolled .nav__phone { color: var(--ink); }
.nav.scrolled .nav__phone svg { color: var(--gold-deep); }

.nav__search-trigger {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(244, 239, 228, 0.35);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav__search-trigger:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: rotate(-6deg);
}
.nav.scrolled .nav__search-trigger { color: var(--ink); border-color: rgba(17,17,17,0.35); }
.nav.scrolled .nav__search-trigger:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(244, 239, 228, 0.35);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--paper);
  margin: 4px auto;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled .nav__burger { border-color: rgba(17,17,17,0.35); }
.nav.scrolled .nav__burger span { background: var(--ink); }

/* Condensed nav for small laptops / large tablets (1081–1280px): shrink the
   menu gap, font, and CTA so the full nav fits on one line instead of wrapping. */
@media (max-width: 1280px) {
  .nav__phone, .nav__phone-text { display: none; }
  .nav__menu { gap: 1.2rem; }
  .nav__menu a { font-size: 0.7rem; letter-spacing: 0.11em; }
  .nav__menu .caret { margin-left: 0.15rem; }
  .nav__cta { padding: 0.7rem 1.05rem; font-size: 0.7rem; letter-spacing: 0.11em; }
  .nav__actions { gap: 0.6rem; }
}

/* Hamburger tier — below where the full nav can fit even condensed (≤1080px). */
@media (max-width: 1080px) {
  .nav__menu { display: none; }
  .nav__burger { display: inline-flex; align-items: center; justify-content: center; flex-direction: column; }
  .nav__cta { display: none; }
}


/* ===================================================================
   SEARCH OVERLAY — full-screen, dark with gold ambient
   =================================================================== */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(232, 183, 42, 0.18) 0%, transparent 60%),
    rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 14vh 5vw 5vh;
  opacity: 0;
  transition: opacity 0.32s var(--ease);
}
/* CRITICAL: honor the [hidden] attribute (display: flex above would override it). */
.search-overlay[hidden] { display: none; }
.search-overlay.is-open { opacity: 1; }

.search-overlay__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(232, 183, 42, 0.35);
  color: var(--gold-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.search-overlay__close:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.search-overlay__inner {
  width: 100%;
  max-width: 720px;
  color: var(--paper);
}
.search-overlay__title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 1.5rem;
  color: var(--paper);
}
.search-overlay__title em { font-style: italic; color: var(--gold); }

.search-overlay__form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1.5px solid rgba(232, 183, 42, 0.5);
  padding: 0.65rem 0;
  transition: border-color 0.3s var(--ease);
}
.search-overlay__form:focus-within { border-color: var(--gold); }
.search-overlay__icon { color: var(--gold); flex-shrink: 0; }
.search-overlay__input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  padding: 0.4rem 0;
}
.search-overlay__input::placeholder { color: rgba(244, 239, 228, 0.4); }
.search-overlay__submit {
  background: var(--gold);
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.search-overlay__submit:hover { background: var(--gold-light); }

.search-overlay__hint {
  font-size: 0.85rem;
  color: rgba(244, 239, 228, 0.5);
  margin: 1rem 0 0;
  font-style: italic;
}

.search-overlay__results { margin-top: 2.5rem; }
.search-overlay__status {
  font-size: 0.9rem;
  color: rgba(244, 239, 228, 0.6);
  font-style: italic;
}
.search-overlay__list { list-style: none; padding: 0; margin: 0; }
.search-overlay__list li {
  border-bottom: 1px solid rgba(232, 183, 42, 0.18);
}
.search-overlay__result {
  display: block;
  padding: 1.1rem 0;
  text-decoration: none;
  color: var(--paper);
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}
.search-overlay__result:hover {
  padding-left: 0.5rem;
  background: linear-gradient(90deg, rgba(232,183,42,0.08), transparent 60%);
}
.search-overlay__result-kind {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.search-overlay__result-title {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--paper);
  margin-bottom: 0.3rem;
  transition: color 0.3s var(--ease);
}
.search-overlay__result:hover .search-overlay__result-title { color: var(--gold-light); }
.search-overlay__result-excerpt {
  display: block;
  font-size: 0.9rem;
  color: rgba(244, 239, 228, 0.6);
  line-height: 1.55;
}
.search-overlay__see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.25rem;
  transition: color 0.3s var(--ease), padding-bottom 0.3s var(--ease);
}
.search-overlay__see-all:hover { color: var(--gold-light); padding-bottom: 0.4rem; }

body.search-open { overflow: hidden; }


/* ===================================================================
   MOBILE OVERLAY MENU
   =================================================================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232,183,42,0.15) 0%, transparent 50%),
    var(--ink);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  padding: 5rem 2rem 3rem;
  overflow-y: auto;
}
.mobile-overlay[hidden] { display: none; }
.mobile-overlay.is-open { opacity: 1; }

.mobile-overlay__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(232,183,42,0.35);
  color: var(--gold-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.mobile-overlay__close:hover { background: var(--gold); color: var(--ink); transform: rotate(90deg); }

.mobile-overlay__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-overlay__nav > a {
  display: block;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(232,183,42,0.18);
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--paper);
  text-decoration: none;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.mobile-overlay__nav > a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}
.mobile-overlay__cta {
  margin-top: 2rem;
  background: var(--gold);
  color: var(--ink) !important;
  text-align: center;
  border-radius: 999px !important;
  border: 0 !important;
  font-size: 0.82rem !important;
  font-family: var(--body) !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1.1rem !important;
  box-shadow: 0 6px 20px -8px rgba(232,183,42,0.6);
}
.mobile-overlay__cta:hover { background: var(--gold-light) !important; padding-left: 1.1rem !important; }
.mobile-overlay__group {
  display: block;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 1.5rem 0 0.35rem;
  border-bottom: 1px solid rgba(232, 183, 42, 0.25);
  margin-bottom: 0.25rem;
}

body.mobile-open { overflow: hidden; }


/* ===================================================================
   Screen reader text helper
   =================================================================== */
.screen-reader-text {
  border: 0 !important;
  clip: rect(1px,1px,1px,1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  word-wrap: normal !important;
}


/* ===================================================================
   INNER PAGES — white nav, page hero, shared block patterns
   =================================================================== */

/* Force nav into the white "scrolled" state on every page that isn't the homepage. */
body:not(.home) .nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.9rem var(--gutter);
  border-bottom: 1px solid var(--line);
}
body:not(.home) .nav__brand,
body:not(.home) .nav__menu a {
  color: var(--ink);
}
body:not(.home) .nav__menu a::after { background: var(--gold); }
body:not(.home) .nav__menu a:hover { color: var(--gold-deep); }
body:not(.home) .nav__logo { filter: none; }
body:not(.home) .nav__cta {
  background: var(--ink);
  color: var(--paper);
}
body:not(.home) .nav__cta:hover { background: var(--gold); color: var(--ink); }
body:not(.home) .nav__phone { color: var(--ink); }
body:not(.home) .nav__phone svg { color: var(--gold-deep); }
body:not(.home) .nav__search-trigger { color: var(--ink); border-color: rgba(17,17,17,0.35); }
body:not(.home) .nav__burger { border-color: rgba(17,17,17,0.35); }
body:not(.home) .nav__burger span { background: var(--ink); }
/* Submenu defaults already light, no change needed. */


/* ---------- Inner-page hero ---------- */
.page-hero {
  position: relative;
  min-height: clamp(380px, 52vw, 580px);
  display: flex;
  align-items: flex-end;
  padding: clamp(7rem, 12vw, 11rem) 0 clamp(3rem, 6vw, 5rem);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--ph-bg);
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) saturate(0.95);
  transform: scale(1.02);
}
/* Diagonal gradient — gets darker from top-left → bottom-right */
.page-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(17,17,17,0.45) 0%, rgba(17,17,17,0.65) 50%, rgba(17,17,17,0.88) 100%);
}
/* Brand-gold ambient corner glows */
.page-hero__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 45% 60% at 0% 0%,    rgba(232, 183, 42, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 100% 100%, rgba(232, 183, 42, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  /* ~55% of the 1320 container, centered. */
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.page-hero__crumbs {
  display: flex;
  align-items: center;
  justify-content: center;     /* centered with the rest of the hero column */
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: rgba(244, 239, 228, 0.72);
}
.page-hero__crumbs a {
  color: var(--gold);
  transition: color 0.3s var(--ease);
}
.page-hero__crumbs a:hover { color: var(--gold-light); }
.page-hero__crumbs .page-hero__sep { color: rgba(244, 239, 228, 0.4); }
.page-hero__crumbs [aria-current="page"] { color: var(--paper); }

.page-hero__eyebrow {
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1.25rem;
}
.page-hero__title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
  color: var(--paper);
  margin: 0 auto 1.5rem;       /* centered block */
  max-width: 18ch;
}
.page-hero__title .italic { color: var(--gold); font-style: italic; }
.page-hero__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(244, 239, 228, 0.85);
  max-width: 60ch;
  margin: 0 auto;              /* centered block */
}


/* ---------- Inner page main wrapper ---------- */
.inner-page { background: #ffffff; }
.inner-block { padding: clamp(4rem, 8vw, 7rem) 0; }


/* ---------- About: split block ---------- */
.inner-block--split { background: #ffffff; }
.inner-block__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;     /* picture narrower, text gets more room */
  gap: clamp(2rem, 4vw, 3.5rem);          /* tighter gap so columns sit closer */
  align-items: center;
}
/* Variant: top-align columns. Used on the About → Meet Troyell block where the
   portrait is much taller than the body copy and centering would float the
   headline mid-image. */
.inner-block__grid--top { align-items: start; }
.inner-block__visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.inner-block__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1.4s var(--ease);
}
.inner-block__visual:hover img { transform: scale(1.03); }
.inner-block__body .eyebrow { display: block; margin-bottom: 1.25rem; }
.inner-block__body h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 1.5rem;
  max-width: 18ch;
}
.inner-block__body h2 em, .inner-block__body h2 .italic {
  font-style: italic;
  color: var(--gold-deep);
}
.inner-block__body p,
.inner-block__body p.lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  max-width: 56ch;
}
@media (max-width: 820px) {
  .inner-block__grid { grid-template-columns: 1fr; }
}


/* ---------- About: "What sets us apart" ---------- */
.inner-block--apart {
  background: var(--paper);
}
.inner-block__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}
.inner-block__head h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  margin: 0 auto 1.25rem;
  max-width: 22ch;
}
.inner-block__head h2 em, .inner-block__head h2 .italic {
  font-style: italic;
  color: var(--gold-deep);
}
.inner-block__head p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}

.inner-block__three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.apart-card {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: clamp(2rem, 3.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.apart-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}
.apart-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,183,42,0.5);
  box-shadow: var(--shadow-pop);
}
.apart-card:hover::before { height: 100%; }
.apart-card__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--gold-deep);
  line-height: 1;
}
.apart-card h3 {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.apart-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 880px) {
  .inner-block__three { grid-template-columns: 1fr; }
}


/* ---------- About: dark pull-quote ---------- */
.inner-block--pull {
  position: relative;
  color: var(--paper);
  background: var(--ink);
  text-align: center;
  isolation: isolate;
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.inner-block__pull-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--pull-bg);
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) saturate(0.85) brightness(0.45);
}
.inner-block__pull-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 70% at 50% 40%, rgba(232,183,42,0.2) 0%, transparent 60%),
    linear-gradient(180deg, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0.8) 100%);
}
.inner-block__pull-inner {
  position: relative;
  max-width: 960px;          /* +140px wider for testimonial readability */
}
.inner-block__pull-inner { margin: 0 auto; }
.inner-block__pull-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(7rem, 14vw, 13rem);
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.5;
  display: block;
  margin: 0 auto 1rem;
  text-shadow: 0 4px 30px rgba(232, 183, 42, 0.4);
}
.inner-block__pull-quote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.4;
  color: var(--paper);
  margin: 0 0 2rem;
}
.inner-block__pull-by .name {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--paper);
}
.inner-block__pull-by .meta {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.4rem;
}


/* ---------- About: mission band (white, centered for beauty) ---------- */
.inner-block--mission {
  background: #ffffff;
  text-align: center;
}
.inner-block__mission-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.inner-block__mission-wrap .eyebrow { display: inline-block; margin-bottom: 1.25rem; }
.inner-block__mission-wrap h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin: 0 auto 1.5rem;
  max-width: 20ch;
}
.inner-block__mission-wrap h2 em, .inner-block__mission-wrap h2 .italic {
  font-style: italic;
  color: var(--gold-deep);
}
.inner-block__mission-wrap p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}


/* ---------- About: final strip ---------- */
.inner-block--final-strip {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  isolation: isolate;
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}
.inner-block--final-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 70% at 100% 100%, rgba(232, 183, 42, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 0% 0%,     rgba(232, 183, 42, 0.10) 0%, transparent 55%);
}
.inner-block__final-strip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.inner-block__final-strip-row h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 0.5rem;
  color: var(--paper);
  max-width: 24ch;
}
.inner-block__final-strip-row h2 em, .inner-block__final-strip-row h2 .italic {
  font-style: italic;
  color: var(--gold);
}
.inner-block__final-strip-row p {
  margin: 0;
  color: rgba(244, 239, 228, 0.75);
  max-width: 50ch;
  font-size: 0.98rem;
  line-height: 1.6;
}


/* ---------- FAQs page: groups + contact callout ---------- */
.inner-block--faqs {
  background: #ffffff;
  padding-bottom: 5rem;
}
.inner-block--faqs .container { max-width: 920px; }
.faq-group { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.faq-group__title {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--gold-deep);
  font-weight: 500;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid rgba(232, 183, 42, 0.3);
  letter-spacing: 0.01em;
}
.faq-contact {
  margin-top: 3rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.faq-contact h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin: 0 0 1rem;
  color: var(--ink);
}
.faq-contact p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto 1.75rem;
}
.faq-contact a:not(.btn) {
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.3s var(--ease);
}
.faq-contact a:not(.btn):hover { color: var(--ink); }



/* ===================================================================
   FAQs PAGE — readable body-font items (scoped, doesn't affect homepage FAQ)
   =================================================================== */
.inner-block--faqs .faq__list {
  border-top: 1px solid var(--line);
  border-radius: 0;
  overflow: visible;
  margin-bottom: 0;
}
.inner-block--faqs .faq__item {
  border-bottom: 1px solid var(--line);
  background: transparent;
  position: relative;
  transition: background 0.3s var(--ease);
}
.inner-block--faqs .faq__item::before {
  width: 3px;
  background: var(--gold);
}
.inner-block--faqs .faq__item.open {
  background: rgba(232, 183, 42, 0.04);
}
.inner-block--faqs .faq__item:hover:not(.open) {
  background: rgba(17, 17, 17, 0.015);
}

/* Question: body font, semibold, comfortable size */
.inner-block--faqs .faq__q {
  font-family: var(--body);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.4;
  color: var(--ink);
  padding: 1.5rem clamp(1.25rem, 2vw, 1.75rem);
  gap: 1.25rem;
}
.inner-block--faqs .faq__q:hover { color: var(--gold-deep); }
.inner-block--faqs .faq__item.open .faq__q {
  color: var(--ink);
  padding-bottom: 0.65rem;
}

/* Plus icon: slightly smaller / refined for body-font scale */
.inner-block--faqs .faq__q .plus {
  width: 30px;
  height: 30px;
  border-width: 1.5px;
}

/* Answer: body font, generous line-height, max-width for readability */
.inner-block--faqs .faq__a {
  font-family: var(--body);
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: 0;
  padding: 0 clamp(1.25rem, 2vw, 1.75rem);
  max-width: 68ch;
}
.inner-block--faqs .faq__item.open .faq__a {
  padding: 0 clamp(1.25rem, 2vw, 1.75rem) 1.5rem;
  max-height: 800px;
}
.inner-block--faqs .faq__a a {
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.inner-block--faqs .faq__a a:hover { color: var(--ink); }

/* Group title cleaner with body font option */
.inner-block--faqs .faq-group__title {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  padding-bottom: 0.85rem;
  margin-bottom: 0.5rem;
  border-bottom-width: 1px;
}

@media (max-width: 600px) {
  .inner-block--faqs .faq__q { font-size: 1rem; padding: 1.25rem 1rem; gap: 1rem; }
  .inner-block--faqs .faq__a { font-size: 0.95rem; padding: 0 1rem; }
  .inner-block--faqs .faq__item.open .faq__a { padding: 0 1rem 1.25rem; }
}


/* ===================================================================
   SERVICES — category cards (parent /services/ page)
   =================================================================== */
.inner-block--cats { background: var(--paper); }
.svc-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
/* Primary tier — 3 large cards in a row */
.svc-cat-grid--primary { grid-template-columns: repeat(3, 1fr); }

/* Specialty subsection — visually de-emphasized, 2 compact cards centered */
.svc-cat-specialty {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.svc-cat-specialty__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem);
}
.svc-cat-specialty__head .eyebrow { display: inline-block; margin-bottom: 0.75rem; }
.svc-cat-specialty__head p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
.svc-cat-grid--specialty {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin: 0 auto;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.svc-cat-card--compact .svc-cat-card__media { aspect-ratio: 16 / 10; }
.svc-cat-card--compact .svc-cat-card__body h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.svc-cat-card--compact .svc-cat-card__body p {
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .svc-cat-grid--specialty { grid-template-columns: 1fr; max-width: 480px; }
}
@supports not selector(:has(*)) {
  .svc-cat-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}


/* ===================================================================
   SITE-WIDE PROMO BAR (Customizer-controlled, dismissable)
   =================================================================== */
.promo-bar {
  position: relative;
  z-index: 60;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  isolation: isolate;
  overflow: hidden;
}
.promo-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 130% at 100% 50%, rgba(232, 183, 42, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 130% at 0% 50%,   rgba(232, 183, 42, 0.14) 0%, transparent 60%);
}
.promo-bar__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.65rem clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  text-align: center;
}
.promo-bar__msg {
  color: var(--paper);
  font-weight: 400;
}
.promo-bar__msg strong {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.promo-bar__msg em, .promo-bar__msg .italic {
  color: var(--gold-light);
  font-style: italic;
}
.promo-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), gap 0.3s var(--ease);
}
.promo-bar__cta:hover {
  background: var(--paper);
  color: var(--ink);
  gap: 0.65rem;
}
.promo-bar__cta .arrow { transition: transform 0.3s var(--ease); }
.promo-bar__cta:hover .arrow { transform: translateX(2px); }
.promo-bar__close {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: rgba(244, 239, 228, 0.7);
  padding: 0.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.promo-bar__close:hover {
  color: var(--gold);
  transform: translateY(-50%) rotate(90deg);
}
.promo-bar[data-trale-promo-dismissed="1"] { display: none; }


/* ===================================================================
   HERO REVIEW CHIP (above-the-fold social proof)
   =================================================================== */
.hero__proof {
  margin-top: 1.25rem;
  display: flex;
}
.review-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  background: rgba(244, 239, 228, 0.08);
  border: 1px solid rgba(232, 183, 42, 0.35);
  border-radius: 999px;
  color: var(--paper);
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
  backdrop-filter: blur(4px);
}
.review-chip:hover {
  background: rgba(232, 183, 42, 0.16);
  border-color: rgba(232, 183, 42, 0.7);
  transform: translateY(-1px);
}
.review-chip__star {
  color: var(--gold);
  font-size: 0.95rem;
  line-height: 1;
}
.review-chip__body {
  color: rgba(244, 239, 228, 0.92);
  font-weight: 500;
}
.review-chip__body strong { color: var(--gold); }
@media (max-width: 480px) {
  .review-chip { font-size: 0.74rem; padding: 0.4rem 0.8rem; }
}


/* ===================================================================
   HALO GLOW — Salmon DNA / PDRN section
   =================================================================== */
.inner-block--salmon {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232, 183, 42, 0.06) 0%, transparent 70%),
    var(--paper);
}
.inner-block--salmon .inner-block__head .eyebrow { display: inline-block; margin-bottom: 1rem; }
.inner-block__salmon-close {
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--gold-deep);
  max-width: 60ch;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .promo-bar__inner { padding-right: 2.5rem; font-size: 0.85rem; }
  .promo-bar__cta { font-size: 0.74rem; padding: 0.3rem 0.75rem; }
}
.svc-cat-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.svc-cat-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  z-index: 2;
  transition: height 0.4s var(--ease);
}
.svc-cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,183,42,0.55);
  box-shadow: var(--shadow-pop);
}
.svc-cat-card:hover::before { height: 100%; }
.svc-cat-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.svc-cat-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.svc-cat-card:hover .svc-cat-card__media img { transform: scale(1.05); }
.svc-cat-card__body {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}
.svc-cat-card__tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.svc-cat-card__body h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.svc-cat-card__body p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.svc-cat-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--line);
}
.svc-cat-card__count {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.svc-cat-card__cta {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.svc-cat-card:hover .svc-cat-card__cta {
  color: var(--ink);
  gap: 0.85rem;
}
.svc-cat-card__cta .arrow {
  transition: transform 0.3s var(--ease);
}
.svc-cat-card:hover .svc-cat-card__cta .arrow { transform: translateX(3px); }
@media (max-width: 980px) { .svc-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .svc-cat-grid { grid-template-columns: 1fr; } }


/* ===================================================================
   SERVICES — horizontal service-menu (facials / add-ons / body)
   =================================================================== */
.inner-block--menu { background: #ffffff; }
.svc-menu {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1180px;
  margin: 0 auto;
}
.svc-row {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: center;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.svc-row:last-child { border-bottom: 0; padding-bottom: 0; }
.svc-row:nth-child(even) { grid-template-columns: 1fr 0.85fr; }
.svc-row:nth-child(even) .svc-row__media { order: 2; }
.svc-row:nth-child(even) .svc-row__body  { order: 1; }
.svc-row__media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--paper);
}
.svc-row__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.svc-row:hover .svc-row__media img { transform: scale(1.04); }
.svc-row__num {
  position: absolute;
  left: 0; top: 0;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  padding: 0.35rem 0.85rem;
  letter-spacing: 0.02em;
}
.svc-row__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.svc-row__tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.svc-row__name {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
.svc-row__name em, .svc-row__name .italic {
  font-style: italic;
  color: var(--gold-deep);
}
.svc-row__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  max-width: 58ch;
}
.svc-row__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--line);
}
.svc-row__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.98rem;
  color: var(--ink);
}
.svc-row__meta-key {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}
.svc-row__cta { margin-left: auto; }

/* Ghost button variant for in-row "Book" — used by service-menu rows */
.btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  font-family: var(--body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), gap 0.3s var(--ease);
}
.btn--ghost:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  gap: 0.85rem;
}
.btn--ghost .arrow { transition: transform 0.3s var(--ease); }
.btn--ghost:hover .arrow { transform: translateX(3px); }

@media (max-width: 820px) {
  .svc-row,
  .svc-row:nth-child(even) { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .svc-row__media { order: 0; }
  .svc-row:nth-child(even) .svc-row__body  { order: 0; }
  .svc-row__cta { margin-left: 0; }
}


/* ===================================================================
   CONTACT PAGE — method cards + hours block + form
   =================================================================== */
.inner-block--contact { background: var(--paper); }
.contact-card { text-align: center; align-items: center; }
.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(232, 183, 42, 0.12);
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.contact-card__primary {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  margin: 0.25rem 0 0.5rem;
  display: block;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.contact-card__primary:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}
.contact-card p {
  text-align: center;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

/* Hours */
.inner-block--hours { background: #ffffff; }
.hours-list {
  list-style: none;
  padding: 0;
  margin: clamp(1.5rem, 3vw, 2rem) auto;
  max-width: 480px;
  text-align: left;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list__days {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.hours-list__time {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-deep);
}
.hours-foot {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 1.5rem;
  max-width: 56ch;
  line-height: 1.6;
}

/* Contact form section */
.inner-block--form { background: var(--paper); }
.inner-block--form .container { max-width: 720px; }
.inner-block--form .inner-block__head { text-align: center; margin-bottom: 2.5rem; }
.contact-form {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.contact-form__placeholder {
  text-align: center;
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.7;
}
.contact-form__placeholder a {
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
}


/* ===================================================================
   TESTIMONIALS PAGE — stats strip + card grid
   =================================================================== */
.inner-block--stats {
  background: #ffffff;
  padding-top: clamp(3rem, 5vw, 4.5rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}
.tt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  text-align: center;
}
.tt-stats__cell {
  padding: 0.5rem;
  border-right: 1px solid var(--line);
}
.tt-stats__cell:last-child { border-right: 0; }
.tt-stats__num {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.tt-stats__lbl {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 0.65rem;
  font-weight: 600;
}
.tt-stats__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-top: 0.35rem;
}
.tt-stats__foot {
  text-align: center;
  margin: clamp(2rem, 3vw, 2.5rem) 0 0;
  font-size: 0.92rem;
}
.tt-stats__foot a {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-deep);
}
@media (max-width: 720px) {
  .tt-stats { grid-template-columns: repeat(2, 1fr); }
  .tt-stats__cell:nth-child(2) { border-right: 0; }
  .tt-stats__cell:nth-child(odd) { border-right: 1px solid var(--line); }
  .tt-stats__cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 1.5rem; }
  .tt-stats__cell:nth-last-child(-n+2) { padding-top: 1.5rem; }
}

/* Card grid */
.inner-block--tt-grid { background: var(--paper); }
.tt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
}
.tt-card {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tt-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}
.tt-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 183, 42, 0.55);
  box-shadow: var(--shadow-pop);
}
.tt-card:hover::before { height: 100%; }
.tt-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  background: rgba(232, 183, 42, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}
.tt-card__stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  line-height: 1;
}
.tt-card__quote {
  font-family: var(--body);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
}
.tt-card__by {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.75rem;
  margin-top: auto;
  border-top: 1px solid var(--line);
}
.tt-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--display);
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.tt-card__name {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.2;
}
.tt-card__meta {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 0.25rem;
  font-weight: 500;
}
@media (max-width: 980px) { .tt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .tt-grid { grid-template-columns: 1fr; } }


/* ===================================================================
   ACADEMY — credentials strip
   =================================================================== */
.inner-block--creds {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
}
.creds-strip {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.5vw, 2rem) clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
  justify-content: center;
  text-align: center;
}
.creds-strip li {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(244, 239, 228, 0.9);
  position: relative;
}
.creds-strip li + li::before {
  content: "·";
  position: absolute;
  left: calc(-1 * clamp(0.75rem, 1.75vw, 1.5rem));
  top: 0;
  color: var(--gold);
  font-weight: 400;
}
.creds-strip li .em { color: var(--gold); font-style: italic; font-weight: 500; }
@media (max-width: 720px) {
  .creds-strip { flex-direction: column; gap: 0.85rem; }
  .creds-strip li + li::before { display: none; }
}


/* ===================================================================
   ACADEMY — curriculum grid (3 x 2)
   =================================================================== */
.inner-block--curr { background: #ffffff; }
.curr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.curr-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.curr-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}
.curr-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 183, 42, 0.55);
  box-shadow: var(--shadow-pop);
}
.curr-card:hover::before { height: 100%; }
.curr-card__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-deep);
  line-height: 1;
}
.curr-card h3 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.curr-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 980px) { .curr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .curr-grid { grid-template-columns: 1fr; } }


/* ===================================================================
   ACADEMY — tuition cards (1 large featured + 1 ghost)
   =================================================================== */
.inner-block--tuition { background: var(--paper); }
.tuition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 1080px;
  margin: 0 auto;
}
.tuition-card {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tuition-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pop);
}
.tuition-card--featured {
  border-color: var(--gold);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232, 183, 42, 0.08) 0%, transparent 70%),
    #ffffff;
}
.tuition-card__badge {
  position: absolute;
  top: -0.85rem;
  left: clamp(2rem, 4vw, 2.75rem);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}
.tuition-card h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
.tuition-card__desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.tuition-card__price {
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--line);
}
.tuition-card__price-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.tuition-card__price-sub {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 0.5rem;
  font-weight: 600;
}
.tuition-card .btn { align-self: flex-start; }
@media (max-width: 820px) { .tuition-grid { grid-template-columns: 1fr; max-width: 540px; } }


/* ===================================================================
   ACADEMY — 4-step admission flow
   =================================================================== */
.inner-block--steps { background: var(--paper); }
.step-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  counter-reset: step;
}
.step-flow__item {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step-flow__item::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}
.step-flow__item:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 183, 42, 0.55);
  box-shadow: var(--shadow-pop);
}
.step-flow__item:hover::before { height: 100%; }
/* Arrow connector between desktop steps */
.step-flow__item:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: calc(-1 * clamp(1.25rem, 2.5vw, 2rem));
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  font-style: italic;
  z-index: 2;
  width: clamp(1.25rem, 2.5vw, 2rem);
  text-align: center;
}
.step-flow__num {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--gold);
}
.step-flow__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  background: rgba(232, 183, 42, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}
.step-flow__item h3 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.step-flow__item p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 980px) {
  .step-flow { grid-template-columns: repeat(2, 1fr); }
  .step-flow__item:nth-child(2n)::after { display: none; }
}
@media (max-width: 640px) {
  .step-flow { grid-template-columns: 1fr; }
  .step-flow__item::after { display: none; }
}


/* ===================================================================
   ACADEMY — documents checklist
   =================================================================== */
.inner-block--docs { background: #ffffff; }
.inner-block--docs .container { max-width: 760px; }
.inner-block--docs .inner-block__head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.docs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.docs-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
}
.docs-list li:hover { border-color: rgba(232, 183, 42, 0.5); }
.docs-list__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.docs-list__check svg { width: 14px; height: 14px; }


/* ===================================================================
   404 — not found page
   =================================================================== */
.inner-block--404 { background: #ffffff; }
.nf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.nf-card {
  position: relative;
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2rem);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nf-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}
.nf-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 183, 42, 0.55);
  box-shadow: var(--shadow-pop);
}
.nf-card:hover::before { height: 100%; }
.nf-card h3 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.15;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.nf-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.nf-card__arrow {
  position: absolute;
  right: clamp(1.25rem, 2.5vw, 1.75rem);
  bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  font-family: var(--display);
  font-style: italic;
  color: var(--gold-deep);
  transition: transform 0.3s var(--ease);
}
.nf-card:hover .nf-card__arrow { transform: translateX(4px); }

.nf-search {
  display: flex;
  gap: 0.75rem;
  max-width: 620px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.nf-search input[type="search"] {
  flex: 1 1 260px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.95rem 1.25rem;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
}
.nf-search input[type="search"]:focus { outline: 0; border-color: var(--gold); }
@media (max-width: 880px) { .nf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .nf-grid { grid-template-columns: 1fr; } }


/* ===================================================================
   ACADEMY REGISTRATION FORM
   =================================================================== */
.inner-block--reg { background: #ffffff; }
.inner-block--reg .container { max-width: 900px; }

.reg-form__alert {
  border: 1px solid var(--line);
  border-left: 3px solid #b00020;
  background: #fff8f8;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.reg-form__alert ul { margin: 0.5rem 0 0 1.25rem; }
.reg-form__alert li { font-size: 0.95rem; line-height: 1.6; color: var(--ink); }
.reg-form__alert strong { color: var(--ink); }

.reg-form__section {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0 0 1.75rem;
}
.reg-form__section legend {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding: 0;
  width: 100%;
}
.reg-form__step {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-deep);
  line-height: 1;
}
.reg-form__legend-text {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  color: var(--ink);
  line-height: 1.15;
}
.reg-form__hint {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(232, 183, 42, 0.08);
  border-left: 3px solid var(--gold);
}
.reg-form__hint--legal {
  background: transparent;
  border-left: 0;
  padding: 0;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.84rem;
  color: var(--mute);
}
.reg-form__hint a { color: var(--gold-deep); border-bottom: 1px solid var(--gold); }

.reg-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.25rem;
}
.reg-field { display: flex; flex-direction: column; }
.reg-field--full { grid-column: 1 / -1; }
.reg-field__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.reg-field__optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-style: italic;
  color: var(--mute);
  margin-left: 0.4rem;
  font-size: 0.78rem;
}
.req { color: var(--gold-deep); margin-left: 0.15rem; }

.reg-form input[type="text"],
.reg-form input[type="email"],
.reg-form input[type="tel"],
.reg-form input[type="date"],
.reg-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 0.85rem 1rem;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
}
.reg-form input:focus,
.reg-form select:focus { outline: 0; border-color: var(--gold); }
.reg-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
  cursor: pointer;
}

/* Terms block */
.reg-form__terms {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  max-height: 280px;
  overflow-y: auto;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.reg-form__terms p { margin: 0 0 0.85rem; }
.reg-form__terms p:last-child { margin-bottom: 0; }
.reg-form__terms strong { color: var(--ink); }

/* Custom checkboxes */
.reg-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.85rem;
  align-items: start;
  margin-bottom: 1rem;
  cursor: pointer;
}
.reg-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.reg-check__box {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border: 1.5px solid var(--ink);
  position: relative;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
  margin-top: 1px;
}
.reg-check__box::after {
  content: "";
  position: absolute;
  left: 5px; top: 1px;
  width: 7px; height: 12px;
  border: solid var(--ink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s var(--ease);
}
.reg-check input:checked + .reg-check__box {
  background: var(--gold);
  border-color: var(--gold);
}
.reg-check input:checked + .reg-check__box::after { transform: rotate(45deg) scale(1); }
.reg-check input:focus-visible + .reg-check__box {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
}
.reg-check__text {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--ink);
}

.reg-form__actions {
  text-align: center;
  margin-top: 2rem;
}
.reg-form__actions .btn { padding-left: 2.25rem; padding-right: 2.25rem; }

@media (max-width: 640px) {
  .reg-form__grid { grid-template-columns: 1fr; }
}


/* ===================================================================
   LEGAL PAGES — plain editor content
   =================================================================== */
.legal-page .page-content {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--ink);
}
.legal-page .page-content h2,
.legal-page .page-content h3 {
  font-family: var(--display);
  color: var(--ink);
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}
.legal-page .page-content h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.legal-page .page-content h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); }
.legal-page .page-content p,
.legal-page .page-content li { color: var(--ink-soft); }
.legal-page .page-content ul,
.legal-page .page-content ol { margin: 0 0 1.25rem 1.5rem; }
.legal-page .page-content li { margin-bottom: 0.4rem; }
.legal-page .page-content a {
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
}
.legal-page .page-content em { font-style: italic; color: var(--ink-soft); }
.legal-page .page-content strong { color: var(--ink); }


/* ===================================================================
   FOOTER — legal row
   =================================================================== */
/* Legal row sits at the bottom of the WHITE footer — colors match
   .footer__bottom (var(--mute) on var(--line) border), not the dark variant. */
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.footer__legal a {
  color: var(--mute);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.footer__legal a:hover { color: var(--gold-deep); }
