/* ============================================================
   TAF Clinic — landing-page design system
   Masculine "Clinical Grotesque" system for a men's-health clinic.
   Nexus CSS custom-property NAMES are preserved; VALUES are a cool
   clinical slate-and-steel palette. Type system de-Nexused:
   Plus Jakarta Sans (clean modern display) + DM Sans body.
   The --font-cormorant alias name is kept ONLY so copied markup
   resolves unchanged; its VALUE is now Plus Jakarta Sans (no serif).
   ============================================================ */

:root {
  /* Brand palette — deep cool slate base (was Nexus navy) */
  --navy: #1b2c38;
  --navy-deep: #14202a;
  --charcoal: #2b3640;

  /* Single restrained metallic accent — brushed steel (was Nexus gold) */
  --gold: #6e8b96; /* accent fills / rules / hover */
  --gold-deep: #3f5560; /* accent text on light (passes WCAG AA on --cream) */
  --gold-soft: #9fb4bc;
  --gold-dim: rgba(110, 139, 150, 0.2);

  /* Neutrals — cool off-whites (were Nexus warm creams) */
  --cream: #f3f5f6;
  --cream-warm: #e9eef0;
  --white: #ffffff;

  /* Tonal accents */
  --canvas-warm: #f6f8f9;
  --marble: #e8edef;
  --blush: #e6ecee;
  --text-primary: #18222a;
  --text-secondary: #515c64;
  --text-light: #7e8a92;
  --navy-soft: #2f444f;
  --navy-haze: rgba(20, 32, 42, 0.08);

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.32, 0.72, 0, 1);

  /* Tinted shadows — tint to slate hue, never pure black */
  --shadow-card-rest:
    0 1px 2px rgba(20, 32, 42, 0.05), 0 4px 16px rgba(20, 32, 42, 0.07);
  --shadow-card-hover:
    0 2px 4px rgba(20, 32, 42, 0.07), 0 10px 28px rgba(20, 32, 42, 0.12);

  /* Layout */
  --container: min(90vw, 1320px);

  /* Fonts — alias name kept so copied markup resolves unchanged; value is
     now a clean modern sans (no serif). Display = Plus Jakarta Sans, body = DM Sans. */
  --font-cormorant: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-dm-sans: "DM Sans", system-ui, sans-serif;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  overflow-x: clip;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--text-primary);
  font-family: var(--font-dm-sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Faint paper grain (fixed, pointer-events none) for physical depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Type classes ---------- */
.label {
  font-family: var(--font-cormorant);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.wordmark {
  font-family: var(--font-cormorant);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.headline {
  font-family: var(--font-cormorant);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.04;
}
.headline em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-deep);
}

.eyebrow {
  display: block;
  font-family: var(--font-dm-sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.4rem;
}
.eyebrow .mark {
  display: none;
}

.gold-rule {
  display: block;
  height: 2px;
  width: 40px;
  background: var(--gold);
  opacity: 1;
  margin: 1.25rem 0 1.5rem;
  border: 0;
}

/* ---------- Layout primitives ---------- */
.section {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.5rem, 5vw, 3rem);
}
.section.compact {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.section.loose {
  padding-top: clamp(6.5rem, 12vw, 9.5rem);
  padding-bottom: clamp(6.5rem, 12vw, 9.5rem);
}
.section.tone-white {
  background: var(--white);
}
.section.tone-marble {
  background: var(--marble);
}
.section.tone-canvas {
  background: var(--canvas-warm);
}
.section.tone-navy {
  background: var(--navy);
  color: var(--white);
}
.wrap {
  max-width: var(--container);
  margin: 0 auto;
}
.wrap.narrow {
  max-width: min(720px, 100%);
}
.portable-wide {
  width: min(960px, calc(100vw - 3rem));
  margin-left: auto;
  margin-right: auto;
}
.measure {
  max-width: 62ch;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 0.8s var(--ease-smooth),
    transform 0.8s var(--ease-smooth);
  will-change: transform, opacity;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   NAV — floating glass pill (detached from top)
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  padding: 0.55rem 1rem 0;
  pointer-events: none;
}
.nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: min(100%, var(--container));
  padding: 0.4rem 0.45rem 0.4rem 1.2rem;
  background: rgba(243, 245, 246, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-card-rest);
  border-radius: 999px;
}
.nav-brand {
  font-family: var(--font-cormorant);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.nav-brand span {
  color: var(--gold-deep);
}
.nav-links {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-dm-sans);
  font-size: 0.86rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}
.nav-links a:hover {
  color: var(--navy);
}

/* ============================================================
   CTA — "Island" pill with nested button-in-button arrow
   (HCSA-safe label only: "Message Us" / "Enquire")
   ============================================================ */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-dm-sans);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.7rem 0.7rem 0.7rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  background: var(--navy);
  color: var(--white);
  transition:
    transform 0.4s var(--ease-smooth),
    box-shadow 0.4s var(--ease-smooth),
    background 0.4s var(--ease-smooth);
  box-shadow: var(--shadow-card-rest);
}
.cta:hover {
  background: var(--navy-deep);
  box-shadow: var(--shadow-card-hover);
}
.cta:active {
  transform: scale(0.98);
}
.cta .ico {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  flex: none;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.4s var(--ease-smooth),
    background 0.4s var(--ease-smooth);
}
.cta:hover .ico {
  transform: translate(2px, -1px) scale(1.05);
  background: rgba(255, 255, 255, 0.22);
}
.cta .ico svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
}
.cta.ghost {
  background: transparent;
  color: var(--navy);
  box-shadow: none;
  border: 1px solid var(--gold-dim);
}
.cta.ghost .ico {
  background: var(--navy-haze);
}
.cta.ghost .ico svg {
  stroke: var(--navy);
}
.cta.ghost:hover {
  background: var(--navy-haze);
  box-shadow: none;
}
.section.tone-navy .cta {
  background: var(--white);
  color: var(--navy);
}
.section.tone-navy .cta .ico {
  background: rgba(20, 32, 42, 0.12);
}
.section.tone-navy .cta .ico svg {
  stroke: var(--navy);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(8.5rem, 15vh, 12rem) clamp(1.5rem, 5vw, 4rem)
    clamp(3.5rem, 7vh, 6rem);
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.hero h1 {
  font-family: var(--font-cormorant);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
  max-width: 18ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-deep);
}
.hero .lede {
  font-family: var(--font-dm-sans);
  color: var(--text-secondary);
  font-size: 1.075rem;
  line-height: 1.7;
  max-width: 54ch;
  margin: 1.6rem 0 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin-top: 2.2rem;
}
.hero-trust span {
  font-family: var(--font-dm-sans);
  font-size: 0.82rem;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-trust span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}
.hero-media {
  position: relative;
}
.hero-media .frame {
  border-radius: 1.75rem;
  overflow: hidden;
  background: var(--marble);
  border: 1px solid var(--gold-dim);
  padding: 0.55rem;
  box-shadow: var(--shadow-card-rest);
}
.hero-media .frame img {
  border-radius: calc(1.75rem - 0.55rem);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: -0.5rem;
  bottom: 1.4rem;
  max-width: 15rem;
  background: var(--white);
  border: 1px solid var(--gold-dim);
  border-radius: 1rem;
  padding: 0.95rem 1.1rem;
  box-shadow: var(--shadow-card-hover);
  font-family: var(--font-dm-sans);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--navy);
}
.hero-badge b {
  font-weight: 600;
}
.hero-badge .k {
  display: block;
  font-family: var(--font-cormorant);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.3rem;
}

/* ============================================================
   SECTION HEADER (eyebrow + headline + intro)
   ============================================================ */
.s-head {
  max-width: 46rem;
}
.s-head.center {
  margin: 0 auto;
  text-align: center;
}
.s-head h2 {
  font-family: var(--font-cormorant);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
.s-head h2 em {
  font-style: normal;
  color: var(--gold-deep);
}
.section.tone-navy .s-head h2 {
  color: var(--white);
}
.section.tone-navy .eyebrow {
  color: var(--gold-soft);
}
.s-head p {
  font-family: var(--font-dm-sans);
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 1.25rem 0 0;
}
.section.tone-navy .s-head p {
  color: rgba(255, 255, 255, 0.78);
}

/* ============================================================
   FOUNDER IDEOLOGY BAND (video poster + pull quote)
   ============================================================ */
.ideology {
  margin: 0 auto;
}
.ideology .shell {
  background: var(--marble);
  border: 1px solid var(--gold-dim);
  padding: 0.75rem;
  border-radius: 2.25rem;
}
.ideology .core {
  border-radius: calc(2.25rem - 0.625rem);
  background: var(--canvas-warm);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ideology .core {
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  }
}
.ideology .vid {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 32rem;
  background: #000;
}
.ideology .vid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ideology .body {
  padding: clamp(1.8rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ideology blockquote {
  margin: 0;
  font-family: var(--font-cormorant);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.ideology blockquote .q {
  display: none;
}
.ideology .by {
  font-family: var(--font-dm-sans);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 1.25rem;
}
.ideology .by b {
  color: var(--navy);
  font-weight: 600;
}

/* ============================================================
   MINI-CARD GRID (concern / method cards w/ icon)
   ============================================================ */
.cardgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2.75rem;
}
@media (min-width: 640px) {
  .cardgrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 980px) {
  .cardgrid.cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.mcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gold-dim);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card-rest);
  transition:
    transform 0.5s var(--ease-smooth),
    box-shadow 0.5s var(--ease-smooth);
}
.mcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.mcard .pic {
  aspect-ratio: 4 / 3;
  max-height: 13rem;
  overflow: hidden;
  background: var(--canvas-warm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mcard .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-smooth);
}
.mcard:hover .pic img {
  transform: scale(1.05);
}
.mcard .pic .ph {
  font-family: var(--font-cormorant);
  font-size: 2.4rem;
  color: var(--gold-deep);
  opacity: 0.4;
}
.mcard .txt {
  padding: 1.8rem 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.mcard h4 {
  font-family: var(--font-cormorant);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
}
.mcard p {
  font-family: var(--font-dm-sans);
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.mcard .foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-dim);
  font-family: var(--font-cormorant);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ============================================================
   SPEC CARD (double-bezel "at a glance")
   ============================================================ */
.spec {
  margin: 0 auto;
}
.spec .shell {
  padding: 0.75rem;
  border-radius: 2rem;
  background: var(--marble);
  border: 1px solid var(--gold-dim);
}
.spec .core {
  border-radius: calc(2rem - 0.625rem);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.spec dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 3rem;
  margin: 0;
}
@media (min-width: 640px) {
  .spec dl {
    grid-template-columns: 1fr 1fr;
  }
}
.spec dt {
  font-family: var(--font-cormorant);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.35rem;
}
.spec dd {
  font-family: var(--font-cormorant);
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--navy);
  margin: 0;
  line-height: 1.35;
}
.spec .row-hero {
  grid-column: 1 / -1;
  padding: 1.5rem 1.75rem;
  background: var(--canvas-warm);
  border: 1px solid var(--gold-dim);
  border-radius: 0.875rem;
}
.spec .row-hero dd {
  font-weight: 500;
  font-size: 1.5rem;
}

/* ============================================================
   TWO-COLUMN CHECKLIST (suitability)
   ============================================================ */
.checklist .shell {
  padding: 0.75rem;
  border-radius: 2rem;
  background: var(--marble);
  border: 1px solid var(--gold-dim);
}
.checklist .core {
  border-radius: calc(2rem - 0.625rem);
  padding: clamp(1.75rem, 4vw, 3rem);
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .checklist .core {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}
.checklist .col.care {
  background: var(--canvas-warm);
  border-left: 2px solid var(--gold);
  border-radius: 1rem;
  padding: 1.4rem 1.5rem;
}
.checklist h3 {
  font-family: var(--font-cormorant);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 1.1rem;
}
.checklist ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-family: var(--font-dm-sans);
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.55;
}
.checklist li svg {
  flex: none;
  margin-top: 0.35em;
  width: 16px;
  height: 16px;
}
.checklist .callout {
  grid-column: 1 / -1;
  border-left: 3px solid var(--gold);
  background: var(--blush);
  padding: 1.4rem 1.6rem;
  border-radius: 0.75rem;
  font-family: var(--font-dm-sans);
  font-style: normal;
  font-size: 1.0125rem;
  line-height: 1.6;
  color: var(--navy-soft);
}

/* ============================================================
   TIMELINE ("what to expect") — Roman numerals, no number circles
   ============================================================ */
.timeline ol {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.timeline ol::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 1px;
  background: var(--gold-dim);
}
.timeline li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  column-gap: 1rem;
  align-items: start;
}
.timeline .num {
  font-family: var(--font-cormorant);
  font-style: normal;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
  text-align: right;
  padding-right: 0.5rem;
  background: var(--cream);
  position: relative;
  z-index: 1;
}
.section.tone-canvas .timeline .num {
  background: var(--canvas-warm);
}
.timeline .t {
  font-family: var(--font-cormorant);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 0.2rem;
}
.timeline .d {
  font-family: var(--font-dm-sans);
  font-size: 0.96rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   STAT TABLE (editorial)
   ============================================================ */
.stat {
  margin: 2rem 0 0;
  border-radius: 1.75rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gold-dim);
  box-shadow: var(--shadow-card-rest);
}
.stat .scroll {
  overflow-x: auto;
}
.stat table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  min-width: 560px;
}
.stat th {
  font-family: var(--font-cormorant);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: left;
  padding: 1.1rem 1.25rem;
  background: var(--canvas-warm);
  border-bottom: 1px solid var(--gold);
}
.stat th:first-child {
  padding-left: 2rem;
}
.stat td {
  font-family: var(--font-dm-sans);
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 1.05rem 1.25rem;
  border-top: 1px solid var(--gold-dim);
}
.stat td:first-child {
  padding-left: 2rem;
  font-family: var(--font-cormorant);
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.0125rem;
  letter-spacing: -0.01em;
}
.stat tbody tr:nth-child(even) td {
  background: var(--canvas-warm);
}

/* ============================================================
   FAQ (native details/summary, no + icon)
   ============================================================ */
.faq {
  border-top: 1px solid var(--gold-dim);
}
.faq details {
  border-bottom: 1px solid var(--gold-dim);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 1.5rem 1.3rem 0;
  font-family: var(--font-cormorant);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary .chev {
  flex: none;
  margin-top: 0.35em;
  width: 14px;
  height: 14px;
  transition: transform 0.4s var(--ease-smooth);
}
.faq details[open] summary .chev {
  transform: rotate(180deg);
}
.faq summary .chev svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-deep);
}
.faq .ans {
  padding: 0 1.5rem 1.5rem 0;
  font-family: var(--font-dm-sans);
  font-size: 0.98rem;
  color: var(--text-primary);
  line-height: 1.7;
  max-width: 70ch;
}
.faq .ans a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   VIDEO GALLERY (click-to-load IG/YouTube; portrait cards)
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 560px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 920px) {
  .gallery.cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.vcard {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid var(--gold-dim);
  box-shadow: var(--shadow-card-rest);
  cursor: pointer;
}
.vcard iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.vcard .poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}
.vcard .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vcard .play span {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(243, 245, 246, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card-hover);
  transition: transform 0.4s var(--ease-smooth);
}
.vcard:hover .play span {
  transform: scale(1.08);
}
.vcard .play svg {
  width: 18px;
  height: 18px;
  fill: var(--navy);
  margin-left: 3px;
}
.vcard .vlabel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1.1rem 1.1rem;
  font-family: var(--font-dm-sans);
  font-size: 0.84rem;
  line-height: 1.4;
  color: #fff;
  background: linear-gradient(to top, rgba(20, 32, 42, 0.82), transparent);
}
.vcard.placeholder {
  background: var(--marble);
  border-style: dashed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: default;
}
.vcard.placeholder .ph {
  font-family: var(--font-cormorant);
  color: var(--gold-deep);
  font-size: 0.95rem;
  padding: 1.5rem;
  line-height: 1.5;
}
.vcard.placeholder .ph b {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* ============================================================
   FINAL CTA + FOOTER
   ============================================================ */
.endcta {
  text-align: center;
}
.endcta .box {
  max-width: 44rem;
  margin: 0 auto;
}
.endcta h2 {
  font-family: var(--font-cormorant);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 1rem;
}
.endcta p {
  font-family: var(--font-dm-sans);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto 2rem;
  max-width: 40ch;
}
.endcta .note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.5rem;
}

.foot {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
}
.foot .wrap {
  padding: 3rem clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .foot .wrap {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}
.foot .brand {
  font-family: var(--font-cormorant);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: #fff;
}
.foot .brand span {
  color: var(--gold-soft);
}
.foot p,
.foot a {
  font-family: var(--font-dm-sans);
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0.2rem 0;
}
.foot a:hover {
  color: #fff;
}
.foot h5 {
  font-family: var(--font-cormorant);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 0.6rem;
}
.foot .fine {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.66);
  grid-column: 1 / -1;
}

/* ---------- a11y contrast: small informational text must clear WCAG AA ---------- */
.hero-trust span {
  color: var(--text-secondary);
}

/* ============================================================
   GATED BOOKING FORM (lead capture -> Plato / WhatsApp)
   Lives in the tone-navy #enquire section; fields styled for dark bg.
   ============================================================ */
.bookform {
  max-width: 30rem;
  margin: 1.75rem auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bookform .field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.bookform label {
  font-family: var(--font-dm-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.bookform input {
  font-family: var(--font-dm-sans);
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  min-height: 48px;
}
.bookform input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.bookform input:focus-visible {
  outline: none;
  border-color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.1);
}
.bookform .consent {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0.2rem 0 0;
}
.bookform button[type="submit"] {
  margin-top: 0.4rem;
  align-self: stretch;
  justify-content: center;
}
.bookform button.is-loading {
  opacity: 0.7;
  pointer-events: none;
}
.booknext {
  max-width: 30rem;
  margin: 1.75rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.booknext-msg {
  font-family: var(--font-cormorant);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 0.3rem;
}
.booknext .cta {
  justify-content: space-between;
}
/* the [hidden] attribute must win over the display:flex above, else the booking
   options would show before the form is submitted (the gate would be bypassed). */
.bookform[hidden],
.booknext[hidden] {
  display: none;
}

/* ============================================================
   MOBILE BOTTOM DOCK — thumb-reachable quick nav (Fees · FAQ · Message)
   Hidden on desktop; shown <=640px. Routes to in-page anchors so the
   markup is identical across all TAF pages (no per-page wa.me).
   ============================================================ */
.dock {
  display: none;
}

/* ---------- Mobile spacing safety ---------- */
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hero-badge {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .dock {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 0.45rem;
    padding: 0.45rem 0.6rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
    background: rgba(243, 245, 246, 0.94);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-top: 1px solid var(--gold-dim);
    box-shadow: 0 -4px 18px rgba(20, 32, 42, 0.1);
  }
  .dock a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.22rem;
    min-height: 50px;
    border-radius: 0.85rem;
    text-decoration: none;
    font-family: var(--font-dm-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--gold-dim);
    transition: transform 0.3s var(--ease-smooth);
  }
  .dock a:active {
    transform: scale(0.97);
  }
  .dock a svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold-deep);
    fill: none;
  }
  .dock a.dock-cta {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }
  .dock a.dock-cta svg {
    stroke: var(--white);
  }
  /* keep page content + footer clear of the fixed dock */
  body {
    padding-bottom: 4.9rem;
  }
}
