/* ==========================================================================
   Forever Health — London
   Design system, components and layout
   ========================================================================== */

/* --------------------------------------------------------------- Tokens -- */
:root {
  --noir: #0c0709;
  --noir-soft: #140d11;
  --noir-lift: #1c1218;
  --wine: #6e1428;
  --wine-bright: #96223e;
  --line: #2e1f27;
  --line-soft: #241820;
  --gold: #c9a86a;
  --gold-soft: #e4cf9f;
  --cream: #f7f3ed;
  --body: #c6bcc0;
  --muted: #8d7f85;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 80rem;
  --pad: 1.25rem;
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}
@media (min-width: 768px) { :root { --pad: 2rem; } }

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  background: var(--noir);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

::selection { background: var(--wine); color: var(--cream); }

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

/* -------------------------------------------------------------- Texture -- */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.display {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.4vw, 5.4rem);
  line-height: 1.02;
  color: var(--cream);
}
.display em {
  font-style: italic;
  color: var(--gold-soft);
}

.h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.06;
}
.h2 em { font-style: italic; color: var(--gold-soft); }

.h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--cream);
}

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.7;
  color: var(--body);
  max-width: 46ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.is-centered::after {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: linear-gradient(270deg, transparent, var(--gold));
}

.muted { color: var(--muted); }
.gold { color: var(--gold); }

/* -------------------------------------------------------------- Layout -- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.wrap-narrow { max-width: 56rem; }
.wrap-tight { max-width: 48rem; }

.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section-line { border-top: 1px solid var(--line); }
.section-soft { background: color-mix(in srgb, var(--noir-soft) 80%, transparent); }

.stack { display: flex; flex-direction: column; }
.stack-4 { gap: 1rem; }
.stack-6 { gap: 1.5rem; }
.stack-8 { gap: 2rem; }

.split {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* ------------------------------------------------------------- Buttons -- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  --btn-bd: var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.6rem;
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .3s var(--ease), background .3s var(--ease),
              border-color .3s var(--ease), color .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  --btn-fg: #fff;
  background: linear-gradient(135deg, var(--wine-bright), var(--wine));
  border-color: transparent;
  box-shadow: 0 12px 34px -14px var(--wine-bright);
}
.btn-primary:hover { box-shadow: 0 18px 44px -14px var(--wine-bright); }

.btn-ghost:hover { background: rgba(255, 255, 255, .05); border-color: var(--gold); }

.btn-quiet {
  --btn-bd: transparent;
  padding-inline: .25rem;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  color: var(--gold);
}
.btn-quiet:hover { border-bottom-color: var(--gold); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--gold);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow:hover { gap: .8rem; color: var(--gold-soft); }

/* -------------------------------------------------------------- Topbar -- */
.topbar {
  display: none;
  border-bottom: 1px solid var(--line-soft);
  background: var(--noir);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (min-width: 900px) {
  .topbar { display: block; }
  .topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 2.75rem;
  }
}
.topbar a { color: var(--gold); transition: color .25s var(--ease); }
.topbar a:hover { color: var(--gold-soft); }

/* -------------------------------------------------------------- Header -- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--noir) 82%, transparent);
  backdrop-filter: blur(16px);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--noir) 94%, transparent);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: .01em;
}
.brand-sub {
  margin-top: .2rem;
  font-size: .6rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-link {
  position: relative;
  font-size: .84rem;
  font-weight: 500;
  color: var(--body);
  padding-block: .4rem;
  transition: color .25s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--cream); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: .9rem; }
@media (max-width: 520px) {
  .site-header .header-actions > .btn { display: none; }
  .site-header .wrap { gap: .75rem; }
}
.header-phone {
  display: none;
  font-size: .84rem;
  font-weight: 600;
  color: var(--cream);
}
@media (min-width: 1200px) { .header-phone { display: inline; } }

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0 .6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 1px;
  background: var(--cream);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 1024px) { .burger { display: none; } }

/* ----------------------------------------------------------- Mobile nav -- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 6.5rem var(--pad) 2.5rem;
  background: color-mix(in srgb, var(--noir) 97%, transparent);
  backdrop-filter: blur(20px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.5rem);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }

.mobile-nav a {
  padding: .85rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
}
.mobile-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-sub a {
  padding: .2rem 0;
  border: 0;
  font-family: var(--font-sans);
  font-size: .8rem;
  color: var(--muted);
}
.mobile-nav .btn { margin-top: 1.75rem; }

/* ---------------------------------------------------------------- Hero -- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6rem) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(80% 60% at 78% 8%, rgba(110, 20, 40, .45), transparent 62%),
    radial-gradient(60% 50% at 12% 92%, rgba(110, 20, 40, .22), transparent 60%),
    linear-gradient(180deg, var(--noir-soft), var(--noir));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent 78%);
  pointer-events: none;
}
.hero > .wrap { position: relative; z-index: 1; }
.hero-layout { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
@media (min-width: 980px) { .hero-layout { grid-template-columns: minmax(0, 1.05fr) minmax(22rem, .72fr); } }
.hero-media {
  position: relative;
  min-height: 32rem;
  align-self: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  background: var(--noir-lift);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 7, 9, .9));
  pointer-events: none;
}
.hero-media img { width: 100%; height: 100%; min-height: 32rem; object-fit: cover; object-position: center 25%; }
.hero-media figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 1.5rem 1.5rem;
  display: flex;
  gap: .6rem;
  color: var(--cream);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-media figcaption span { color: var(--gold); }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-pill i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .18);
}

.hero h1 { margin-top: 1.75rem; max-width: 18ch; }
.hero .lead { margin-top: 1.5rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.25rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--line);
}
@media (min-width: 768px) and (max-width: 979px) { .hero-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.stat {
  padding: 1.4rem 1.5rem;
  background: color-mix(in srgb, var(--noir-soft) 92%, transparent);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--cream);
  line-height: 1;
}
.stat-label {
  margin-top: .4rem;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-link {
  display: block;
  background: linear-gradient(135deg, var(--wine-bright), var(--wine));
  transition: filter .3s var(--ease);
}
.stat-link .stat-num { font-size: 1.5rem; }
.stat-link .stat-label { color: rgba(255, 255, 255, .8); }
.stat-link:hover { filter: brightness(1.15); }

/* ------------------------------------------------------------- Marquee -- */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 1.15rem;
  border-block: 1px solid var(--line);
  background: var(--noir-soft);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: slide 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding-inline: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .06em;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track span i {
  color: var(--gold);
  font-style: normal;
  opacity: .6;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* --------------------------------------------------------- Service grid -- */
.svc-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--line);
}
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.85rem 1.85rem;
  min-height: 15rem;
  background: var(--noir-soft);
  transition: background .4s var(--ease);
}
.svc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 60% at 85% 0%, rgba(150, 34, 62, .32), transparent 70%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.svc:hover { background: var(--noir-lift); }
.svc:hover::after { opacity: 1; }

.svc-num {
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--gold);
}
.svc-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--cream);
}
.svc-line { font-size: .92rem; color: var(--body); max-width: 26ch; }
.svc-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.svc-price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--gold-soft);
}
.svc-price small {
  display: block;
  font-family: var(--font-sans);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.svc-go {
  font-size: 1.05rem;
  color: var(--muted);
  transition: transform .35s var(--ease), color .35s var(--ease);
}
.svc:hover .svc-go { transform: translate(3px, -3px); color: var(--gold); }
.svc > * { position: relative; z-index: 1; }

/* ------------------------------------------------------------ Portraits -- */
.portrait {
  position: relative;
  aspect-ratio: 3 / 3.6;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(75% 60% at 50% 22%, rgba(228, 207, 159, .3), transparent 62%),
    linear-gradient(165deg, var(--noir-lift), var(--wine) 130%);
  display: grid;
  place-items: center;
}
.portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(12, 7, 9, .85));
}
/* Real photograph, when one has been dropped into assets/img/therapists/. */
.portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(.95) contrast(1.03);
  transition: transform .7s var(--ease);
}
.portrait-initial {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 5rem);
  color: rgba(247, 243, 237, .9);
  letter-spacing: .04em;
  text-shadow: 0 12px 40px rgba(0, 0, 0, .5);
}
.portrait-badge {
  position: absolute;
  z-index: 2;
  top: .85rem;
  left: .85rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: rgba(12, 7, 9, .72);
  border: 1px solid var(--line);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  backdrop-filter: blur(6px);
}
.portrait-live {
  position: absolute;
  z-index: 2;
  bottom: .85rem;
  left: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #d9f5df;
}
.portrait-live i {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .2);
}

.team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.member { display: block; }
.member .portrait { transition: transform .5s var(--ease); }
.member:hover .portrait { transform: translateY(-6px); }
.member:hover .portrait-img { transform: scale(1.05); }
.member-name {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream);
}
.member-name span { font-size: .95rem; color: var(--muted); }
.member-meta {
  margin-top: .3rem;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.member-tags {
  margin-top: .55rem;
  font-size: .82rem;
  color: var(--gold);
}

/* -------------------------------------------------------------- Feature -- */
.feature-list {
  display: grid;
  gap: 1px;
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
@media (min-width: 640px) { .feature-list { grid-template-columns: 1fr 1fr; } }

.feature {
  padding: 1.5rem 1.6rem;
  background: var(--noir-soft);
}
.feature dt {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
}
.feature dt i { color: var(--gold); font-style: normal; font-size: .8rem; }
.feature dd {
  margin: .45rem 0 0;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

.clock {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 1;
  color: var(--gold-soft);
}

/* ---------------------------------------------------------------- Prose -- */
.prose p { margin-top: 1.25rem; color: var(--body); line-height: 1.8; }
.prose p:first-child { margin-top: 0; }
.prose a { color: var(--gold); border-bottom: 1px solid var(--line); transition: border-color .3s var(--ease); }
.prose a:hover { border-bottom-color: var(--gold); }
.prose strong { color: var(--cream); font-weight: 600; }

/* ------------------------------------------------------------- CTA band -- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: linear-gradient(140deg, rgba(110, 20, 40, .38), var(--noir-soft) 52%, var(--noir));
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -10% -60% -10%;
  height: 70%;
  background: radial-gradient(50% 60% at 50% 100%, rgba(150, 34, 62, .4), transparent 70%);
  pointer-events: none;
}
.cta-band > .wrap { position: relative; z-index: 1; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
  margin-top: 2.25rem;
}

/* ----------------------------------------------------------------- FAQ -- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  color: var(--cream);
  transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--gold-soft); }
.faq-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(135deg);
  background: var(--wine);
  border-color: transparent;
  color: #fff;
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}
.faq-a > div { overflow: hidden; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
  padding-bottom: 1.5rem;
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.8;
}

/* ------------------------------------------------------------- Journal -- */
.post-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}
.post {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: 1.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--noir-soft);
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.post:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--gold) 45%, var(--line));
  background: var(--noir-lift);
}
.post-date {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--cream);
}
.post-excerpt { font-size: .9rem; color: var(--muted); line-height: 1.7; }
.post-foot { margin-top: auto; padding-top: 1rem; }

.journal-list { border-top: 1px solid var(--line); }
.journal-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1.25rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding .35s var(--ease), color .35s var(--ease);
}
.journal-row:hover { padding-inline: .75rem; }
.journal-number {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
}
.journal-copy { display: grid; gap: .75rem; }
.journal-tags {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ------------------------------------------------------ Long-form pages -- */
.option-grid, .benefit-grid, .standards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
@media (min-width: 680px) {
  .option-grid, .benefit-grid, .standards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.option-card, .benefit, .standard {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--noir-soft);
}
.option-card h3, .benefit h3, .standard b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
}
.option-card p, .benefit p, .standard p {
  margin-top: .75rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
}
.benefit > span {
  display: block;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
}

.profile-hero {
  padding-block: clamp(3rem, 7vw, 6rem);
  background: radial-gradient(70% 70% at 80% 10%, rgba(110, 20, 40, .32), transparent 62%);
}
.profile-layout { display: grid; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
@media (min-width: 820px) { .profile-layout { grid-template-columns: minmax(18rem, .82fr) 1.18fr; } }
.profile-photo .portrait { aspect-ratio: 4 / 5; min-height: 28rem; }
.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.pill {
  padding: .45rem .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pill:hover { border-color: var(--gold); }

.article-hero {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: radial-gradient(60% 80% at 85% 0%, rgba(110, 20, 40, .35), transparent 70%);
}
.article-hero .display { margin-top: 1.5rem; max-width: 16ch; }
.article-hero .lead { margin-top: 1.75rem; max-width: 58ch; }
.article-meta {
  margin-top: 2rem;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.article-layout { display: grid; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
@media (min-width: 820px) { .article-layout { grid-template-columns: minmax(12rem, .42fr) 1fr; } }
.article-aside {
  position: sticky;
  top: 8rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gold);
  color: var(--gold-soft);
}
.article-aside span { font-size: 1.5rem; }
.article-aside p { margin-top: 1rem; font-family: var(--font-display); font-size: 1.25rem; line-height: 1.55; }
.article-body { max-width: 68ch; }
.article-body h2 { margin: 3.25rem 0 1rem; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.article-body h2:first-child { margin-top: 0; }
.article-body p { margin-top: 1rem; color: var(--body); line-height: 1.9; }
.service-callout { padding-block: clamp(3rem, 7vw, 5rem); background: var(--noir-soft); }

/* ------------------------------------------------------------- Partners -- */
.logo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .logo-row { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.logo-card {
  display: grid;
  place-items: center;
  gap: .35rem;
  padding: 1.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--noir-soft);
  text-align: center;
}
.logo-card b {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
}
.logo-card span {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------------------------------------------------------------- Page -- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(70% 70% at 80% 0%, rgba(110, 20, 40, .35), transparent 62%),
    linear-gradient(180deg, var(--noir-soft), var(--noir));
}
.page-hero h1 { margin-top: 1.25rem; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.crumbs a:hover { color: var(--gold); }
.crumbs span { opacity: .45; }

/* ---------------------------------------------------------------- Price -- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table caption {
  padding-bottom: 1rem;
  text-align: left;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.price-table th, .price-table td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: .92rem;
}
.price-table thead th {
  background: var(--noir-lift);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr { background: var(--noir-soft); transition: background .3s var(--ease); }
.price-table tbody tr:hover { background: var(--noir-lift); }
.price-table tbody th {
  font-weight: 500;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.price-table .num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-soft);
  white-space: nowrap;
}

/* ---------------------------------------------------------------- Info -- */
.info-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
@media (min-width: 768px) { .info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.info-cell { padding: 1.75rem; background: var(--noir-soft); }
.info-cell h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.info-cell p, .info-cell a { font-size: .9rem; color: var(--muted); }
.info-cell a:hover { color: var(--gold); }

/* --------------------------------------------------------------- Footer -- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--noir-soft);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }

.footer-col h4 {
  margin-bottom: 1.1rem;
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-col li + li { margin-top: .6rem; }
.footer-col a, .footer-col p {
  font-size: .88rem;
  color: var(--muted);
  transition: color .25s var(--ease);
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-note { margin-top: 1.1rem; font-size: .85rem; color: var(--muted); line-height: 1.7; }

.footer-visit { display: flex; flex-direction: column; gap: 1rem; }
.footer-visit b {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
}
.footer-visit span { font-size: .85rem; color: var(--muted); }
.footer-hours {
  margin-top: .35rem;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  color: var(--muted);
}
.footer-bottom .dot { color: var(--gold); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
  align-items: center;
}
.badge-18 {
  display: inline-grid;
  place-items: center;
  min-width: 2.1rem;
  padding: .25rem .5rem;
  border: 1px solid var(--wine-bright);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: .68rem;
  letter-spacing: .08em;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .post:hover, .member:hover .portrait { transform: none; }
}

/* --------------------------------------------------------------- Utils -- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-size: .85rem;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }
