/* ============================================================
   Jennifer Schwientek — Design System
   Bold feminine-luxury · Paris meets psychological depth
   Palette + type per brand-guideline.txt
   ============================================================ */

:root {
  /* Brand palette */
  --bordeaux: #6e1f28;
  --bordeaux-deep: #531019;
  --rose: #e7d7d4;
  --champagne: #f3e7d3;
  --ivory: #faf5ef;
  --nude: #d8c1b3;
  --mocha: #4a342e;
  --gold: #e6b464;
  --gold-soft: #f1cd92;

  /* Semantic tokens */
  --bg: var(--ivory);
  --text: var(--mocha);
  --muted: #7a655c;
  --line: rgba(110, 31, 40, 0.14);
  --line-gold: rgba(230, 180, 100, 0.34);

  /* Surfaces (layering: base -> elevated -> floating) */
  --surface: rgba(255, 252, 248, 0.72);
  --surface-solid: #fffcf8;
  --surface-rose: rgba(231, 215, 212, 0.55);
  --surface-champagne: rgba(243, 231, 211, 0.6);

  /* Layered, bordeaux-tinted shadows */
  --shadow-sm: 0 2px 8px rgba(74, 52, 46, 0.06), 0 8px 24px rgba(110, 31, 40, 0.05);
  --shadow: 0 4px 14px rgba(74, 52, 46, 0.07), 0 24px 60px rgba(110, 31, 40, 0.1);
  --shadow-lg: 0 8px 24px rgba(74, 52, 46, 0.1), 0 36px 90px rgba(110, 31, 40, 0.16);
  --shadow-gold: 0 14px 34px rgba(230, 180, 100, 0.3);
  --shadow-bordeaux: 0 16px 40px rgba(110, 31, 40, 0.28);

  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  background-color: var(--ivory);
  background-image:
    radial-gradient(900px 600px at 8% -5%, rgba(231, 215, 212, 0.7), transparent 60%),
    radial-gradient(800px 520px at 100% 0%, rgba(243, 231, 211, 0.6), transparent 55%),
    radial-gradient(700px 700px at 85% 110%, rgba(216, 193, 179, 0.4), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

/* Fine grain/noise overlay for depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  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' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

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

figure {
  margin: 0;
}

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  margin: 0;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--bordeaux);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.025em;
}

h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
  color: var(--muted);
}

strong {
  color: var(--mocha);
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.eyebrow-center {
  justify-content: center;
}

.serif-accent {
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  color: var(--gold);
}

/* ---------- Layout primitives ---------- */
.shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--maxw));
  margin: 0 auto;
}

.section {
  padding: clamp(56px, 8vw, 110px) 0;
}

.section-tight {
  padding: clamp(36px, 5vw, 64px) 0;
}

/* ---------- Alternating section bands (homepage) ---------- */
.band-a {
  position: relative;
  background: var(--ivory);
}

.band-b {
  position: relative;
  background: #f3e9da;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.section-head.center {
  margin-inline: auto;
  justify-items: center;
  text-align: center;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--muted);
  line-height: 1.75;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--bordeaux);
  --btn-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--btn-bg);
  color: var(--btn-color);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease),
    background-color 0.35s var(--ease), color 0.35s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-deep));
  color: #fff;
  border-color: rgba(184, 149, 93, 0.35);
  box-shadow: var(--shadow-bordeaux);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(110, 31, 40, 0.34);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--bordeaux-deep);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(184, 149, 93, 0.4);
}

.btn-gold:active {
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--bordeaux);
  border-color: rgba(110, 31, 40, 0.55);
  border-width: 1.5px;
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(110, 31, 40, 0.06);
  border-color: var(--bordeaux);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:active {
  transform: translateY(-1px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-row.center {
  justify-content: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--bordeaux);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.text-link::after {
  content: "\2192";
  transition: transform 0.3s var(--ease-spring);
}

.text-link:hover {
  color: var(--gold);
}

.text-link:hover::after {
  transform: translateX(5px);
}

/* ---------- Header / Nav (frozen, always visible) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 239, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 40px), var(--maxw));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--bordeaux), var(--bordeaux-deep));
  color: var(--champagne);
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 1px rgba(216, 184, 136, 0.4), var(--shadow-sm);
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--bordeaux);
  letter-spacing: 0.01em;
}

.brand-tag {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--mocha);
  white-space: nowrap;
  transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
}

.nav-links a:hover {
  color: var(--bordeaux);
  background: rgba(231, 215, 212, 0.6);
}

.nav-links a[aria-current="page"] {
  color: var(--bordeaux);
  background: rgba(231, 215, 212, 0.85);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  min-height: 46px;
  padding: 0 22px;
  font-size: 0.74rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: rgba(255, 252, 248, 0.7);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--bordeaux);
  margin: 0 auto;
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav.is-open .nav-toggle span { background: transparent; }
.nav.is-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Dropdown ---------- */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-trigger {
  padding: 9px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--mocha);
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
}

.nav-dropdown-trigger svg.chevron {
  transition: transform 0.25s var(--ease);
  stroke: currentColor;
}

.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger {
  color: var(--bordeaux);
  background: rgba(231, 215, 212, 0.6);
}

.nav-dropdown-trigger[aria-current="page"],
.nav-dropdown-trigger.is-active {
  color: var(--bordeaux);
  background: rgba(231, 215, 212, 0.85);
}

.nav-dropdown:hover .nav-dropdown-trigger svg.chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-solid);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
  min-width: 150px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
  opacity: 1;
}

/* Invisible bridge on the parent container to prevent losing hover state */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
  z-index: 90;
}

.nav-dropdown-menu a {
  padding: 12px 18px;
  font-size: 0.82rem;
  color: var(--mocha);
  text-decoration: none;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
  display: block;
  border-radius: 0;
  margin: 0;
}

.nav-dropdown-menu a:hover {
  color: var(--bordeaux);
  background: rgba(231, 215, 212, 0.45);
}

@media (max-width: 760px) {
  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    padding: 12px 14px;
    justify-content: space-between;
  }

  .nav-dropdown:hover .nav-dropdown-trigger svg.chevron {
    transform: none; /* disable rotation on hover for mobile */
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(110, 31, 40, 0.04);
    margin: 4px 0 0 0;
    padding: 4px 0;
    width: 100%;
    display: flex;
    opacity: 1;
    border-radius: 8px;
  }

  .nav-dropdown-menu a {
    padding: 10px 24px;
    border-radius: 0;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 84px) 0 clamp(40px, 5vw, 72px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.hero-copy {
  display: grid;
  gap: 26px;
  max-width: 600px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.3rem);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

h2 em {
  font-style: normal;
  color: var(--gold);
}

/* ---------- Hero-style left-aligned copy block (reused outside the hero) ---------- */
.lead-copy {
  display: grid;
  gap: 26px;
  max-width: 640px;
}

.lead-copy p {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--muted);
  line-height: 1.78;
  max-width: 50ch;
}

.lead-copy p strong {
  color: var(--bordeaux);
}

.lead-copy.center {
  margin-inline: auto;
  text-align: center;
}

.lead-copy.center p {
  margin-inline: auto;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--muted);
  max-width: 50ch;
}

.hero-eyebrow-line {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--bordeaux);
}

.hero-figure {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  isolation: isolate;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

/* Color-treatment + gradient overlays on photos */
.media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.media img {
  transition: transform 0.8s var(--ease);
}

.media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(83, 16, 25, 0.4), transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(150deg, rgba(184, 149, 93, 0.18), rgba(110, 31, 40, 0.14));
  mix-blend-mode: multiply;
}

.media:hover img {
  transform: scale(1.04);
}

.hero-badge {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 2px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: rgba(250, 245, 239, 0.86);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.hero-badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--bordeaux);
  line-height: 1;
  white-space: nowrap;
}

.hero-badge span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--mocha);
  white-space: nowrap;
}

/* ---------- Homepage hero (background photo + copy over burgundy) ---------- */
.hero-home {
  position: relative;
  isolation: isolate;
  background-color: var(--bordeaux-deep);
  overflow: hidden;
}

.hero-home-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/hero-homepage.png");
  background-size: cover;
  background-position: left center;
}

/* Right-side wash keeps the copy legible over the photo's burgundy field */
.hero-home-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(83, 16, 25, 0) 30%,
    rgba(83, 16, 25, 0.55) 52%,
    var(--bordeaux-deep) 82%
  );
}

.hero-home-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: clamp(540px, 62vw, 720px);
}

.hero-home-copy {
  grid-column: 2;
  display: grid;
  gap: 24px;
  max-width: 560px;
  justify-self: center;
  padding: clamp(32px, 4vw, 56px) 0;
}

.hero-home-copy .eyebrow { color: var(--gold-soft); }
.hero-home-copy .eyebrow::before { background: var(--gold-soft); opacity: 0.85; }

.hero-home-copy h1 {
  color: var(--ivory);
  font-size: clamp(2.5rem, 4.4vw, 4rem);
}

.hero-home-copy h1 em {
  font-style: normal;
  color: var(--gold-soft);
}

.hero-home-copy .hero-sub {
  color: rgba(250, 245, 239, 0.86);
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
  max-width: 46ch;
}

.hero-home-copy .checklist li { color: var(--ivory); }

.hero-home .btn-ghost {
  color: var(--ivory);
  border-color: rgba(216, 184, 136, 0.5);
}

.hero-home .btn-ghost:hover {
  background: rgba(250, 245, 239, 0.08);
  border-color: var(--gold-soft);
}

@media (max-width: 900px) {
  .hero-home-bg {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 1672 / 941;
    background-position: 28% center;
  }
  .hero-home-bg::after { display: none; }
  .hero-home-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-home-copy {
    grid-column: 1;
    justify-self: stretch;
    max-width: 620px;
    margin-inline: auto;
    padding: clamp(28px, 6vw, 44px) 0 clamp(8px, 4vw, 24px);
  }
}

/* ---------- Subpage Hero Overrides ---------- */
.hero-subpage {
  background-color: var(--bordeaux);
}

.hero-subpage-bg {
  background-position: left center;
}

.hero-subpage-bg::after {
  background: linear-gradient(
    100deg,
    rgba(110, 31, 40, 0) 25%,
    rgba(110, 31, 40, 0.6) 48%,
    var(--bordeaux) 75%
  );
}

@media (min-width: 901px) {
  .hero-subpage-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .hero-subpage .hero-home-copy {
    justify-self: end;
    max-width: 540px;
  }
  /* Hard split: photo fills the left half only; right half stays solid
     bordeaux (from .hero-subpage's background-color) so the copy sits on
     a clean field instead of a photo washed out edge-to-edge. */
  .hero-subpage-bg {
    inset: 0 42% 0 0;
  }
  .hero-subpage-bg::after {
    background: linear-gradient(90deg, rgba(110, 31, 40, 0) 58%, var(--bordeaux) 100%);
  }
}

@media (max-width: 900px) {
  .hero-subpage .hero-home-bg {
    background-position: left center;
  }
}

/* ---------- Section seam divider ---------- */
.seam-divider {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  margin: -54px 0 18px;
  pointer-events: none;
}

.seam-divider svg {
  width: 58px;
  height: 96px;
  overflow: visible;
}

.seam-divider svg path,
.seam-divider svg line {
  stroke: var(--gold);
}

@media (max-width: 760px) {
  .seam-divider {
    margin: -38px 0 12px;
  }

  .seam-divider svg {
    width: 46px;
    height: 76px;
  }
}

/* ---------- "Maybe you're tired of…" litany ---------- */
.tired-block {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  justify-items: center;
}

.tired-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
}

.tired-list li {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: var(--mocha);
  padding: 15px 12px;
  border-bottom: 1px solid var(--line);
}

.tired-list li:last-child { border-bottom: none; }

/* ---------- Marquee strip ---------- */
.strip {
  border-block: 1px solid var(--line);
  background: rgba(243, 231, 211, 0.4);
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  padding: 22px 0;
  width: min(calc(100% - 40px), var(--maxw));
  margin: 0 auto;
}

.strip-item {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--bordeaux);
  letter-spacing: 0.01em;
}

.strip-item::before {
  content: "\2726";
  color: var(--gold);
  margin-right: 12px;
  font-size: 0.8em;
}

/* ---------- Cards / surfaces ---------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

/* ---------- Pathways (Counselling / FHC) ---------- */
.pathways {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.pathways--three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 1024px) {
  .pathways--three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .pathways--three {
    grid-template-columns: 1fr;
  }
}

.pathway {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
}

.pathway::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.9;
}

.pathway-counselling::before {
  background: linear-gradient(160deg, rgba(231, 215, 212, 0.7), rgba(255, 252, 248, 0.9));
}

.pathway-fhc::before {
  background: linear-gradient(160deg, rgba(243, 231, 211, 0.78), rgba(255, 252, 248, 0.9));
}

.pathway-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--gold);
}

.pathway h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: var(--bordeaux);
}

.pathway ul {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pathway li {
  position: relative;
  padding-left: 24px;
  font-size: 0.96rem;
  color: var(--muted);
}

.pathway li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 149, 93, 0.18);
}

.pathway .text-link {
  margin-top: auto;
  padding-top: 6px;
}

.pathway-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 36px;
  margin-top: auto;
  padding-top: 6px;
}

.pathway-links .text-link {
  margin-top: 0;
  padding-top: 0;
}

/* ---------- Areas of focus grid ---------- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.focus-card {
  padding: 30px 28px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.focus-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.focus-card h3 {
  color: var(--bordeaux);
}

.focus-card .micro {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 600;
}

.focus-card p {
  font-size: 0.95rem;
}

/* ---------- Story (portrait + prose) ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.story-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.story-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  display: grid;
  gap: 20px;
  max-width: 560px;
}

.story-copy p {
  font-size: 1.02rem;
}

.pull {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.3;
  color: var(--bordeaux);
}

/* ---------- Trust markers ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Three-up variant (e.g. FHC payoff) — collapses responsively below */
.trust-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

/* Five-up variant (e.g. costs) — collapses responsively below */
.trust-grid--five {
  grid-template-columns: repeat(5, 1fr);
}

.trust-card {
  padding: 30px 26px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.trust-card .num {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.trust-card h3 {
  font-size: 1.3rem;
}

.trust-card p {
  font-size: 0.92rem;
}

/* ---------- Testimonials ---------- */
.testimonials {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(44px, 5vw, 72px) clamp(18px, 2.4vw, 32px);
  background:
    radial-gradient(600px 400px at 0% 0%, rgba(216, 193, 179, 0.45), transparent 60%),
    linear-gradient(160deg, rgba(231, 215, 212, 0.85), rgba(243, 231, 211, 0.7));
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(28px, 4vw, 48px);
}

.quote {
  display: grid;
  gap: 16px;
  padding: 30px 30px;
  background: rgba(255, 252, 248, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 0.5;
  color: var(--gold);
  height: 22px;
}

.quote p {
  font-size: 0.9rem;
  color: var(--mocha);
  line-height: 1.62;
}

.quote-author {
  display: grid;
  gap: 2px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.quote-author strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--bordeaux);
}

.quote-author span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}

/* ---------- Closing CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(44px, 6vw, 80px) clamp(28px, 5vw, 72px);
  text-align: center;
  background: linear-gradient(150deg, var(--bordeaux), var(--bordeaux-deep));
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 38px;
  justify-items: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(500px 360px at 12% 0%, rgba(184, 149, 93, 0.3), transparent 60%),
    radial-gradient(420px 320px at 100% 100%, rgba(231, 215, 212, 0.22), transparent 60%);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band .eyebrow {
  color: var(--gold-soft);
}

.cta-band h2 {
  color: var(--ivory);
  max-width: min(46ch, 92%);
  text-wrap: balance;
  line-height: 1.32;
}

.cta-band p {
  color: rgba(250, 245, 239, 0.84);
  max-width: 56ch;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: clamp(48px, 6vw, 96px);
  background: linear-gradient(180deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
  color: var(--ivory);
  overflow: hidden;
}

.footer-hook {
  text-align: center;
  padding: clamp(48px, 6vw, 84px) 0 clamp(28px, 3vw, 44px);
  display: grid;
  gap: 18px;
  justify-items: center;
}

.footer-hook .eyebrow {
  color: var(--gold-soft);
}

.footer-hook h2 {
  color: var(--ivory);
  max-width: 22ch;
}

.footer-hook p {
  color: rgba(250, 245, 239, 0.8);
  max-width: 60ch;
  font-size: 0.98rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: clamp(36px, 4vw, 56px) 0;
  border-top: 1px solid rgba(216, 184, 136, 0.22);
}

.footer-col h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}

.footer-brand .brand-name {
  color: var(--ivory);
  font-size: 1.5rem;
}

.footer-brand p {
  color: rgba(250, 245, 239, 0.7);
  font-size: 0.92rem;
  margin-top: 12px;
  max-width: 30ch;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.footer-col a,
.footer-col p.line {
  color: rgba(250, 245, 239, 0.82);
  font-size: 0.92rem;
  transition: color 0.25s var(--ease);
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--gold-soft);
}

.footer-bottom {
  padding: 22px 0 30px;
  border-top: 1px solid rgba(216, 184, 136, 0.22);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom small {
  color: rgba(250, 245, 239, 0.6);
  font-size: 0.78rem;
}

.footer-disclaimer {
  padding: 0 0 34px;
}

.footer-disclaimer p {
  color: rgba(250, 245, 239, 0.5);
  font-size: 0.72rem;
  line-height: 1.7;
  max-width: 92ch;
}

/* ============================================================
   Inner-page components (About · Counselling · FHC · Masterclass · FAQ)
   ============================================================ */

/* ---------- Inner page hero (centered, no image) ---------- */
.page-hero {
  position: relative;
  padding: clamp(52px, 7vw, 96px) 0 clamp(32px, 4vw, 56px);
  text-align: center;
}

.page-hero .shell {
  display: grid;
  justify-items: center;
  gap: 22px;
  max-width: 880px;
}

.page-hero h1 {
  max-width: 16ch;
}

.page-hero .lead {
  max-width: 58ch;
}

.page-hero em {
  font-style: normal;
  color: var(--gold);
}

/* ---------- Inner page hero with image (split) ---------- */
.lead-hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(8px, 2vw, 24px);
}

.lead-hero .hero-grid {
  align-items: center;
}

.lead-hero .hero-copy {
  gap: 24px;
  justify-self: end;
}

.lead-hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.9rem);
}

/* ---------- Prose blocks ---------- */
.prose {
  display: grid;
  gap: 20px;
  max-width: 62ch;
}

.prose.center {
  margin-inline: auto;
  text-align: center;
}

.prose p {
  font-size: 1.04rem;
  line-height: 1.78;
}

.prose p strong {
  color: var(--bordeaux);
}

/* ---------- Two-column split (image + prose) ---------- */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split.reverse .split-figure {
  order: 2;
}

.split-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.split-figure.editorial-style {
  aspect-ratio: auto;
  overflow: visible;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  max-height: none;
}


.split-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  display: grid;
  gap: 18px;
  max-width: 560px;
}

.split-copy p {
  font-size: 1.02rem;
}

/* ---------- Feature figure (natural aspect, full content) ---------- */
.feature-figure {
  max-width: 880px;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-gold);
}

.feature-figure img {
  width: 100%;
  height: auto;
}

/* ---------- Soft panel (tinted section background) ---------- */
.panel {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 72px) clamp(24px, 4vw, 56px);
  background:
    radial-gradient(600px 400px at 0% 0%, rgba(216, 193, 179, 0.4), transparent 60%),
    linear-gradient(160deg, rgba(231, 215, 212, 0.7), rgba(243, 231, 211, 0.55));
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow);
}

/* ---------- Checklist (benefits / inclusions) ---------- */
.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.checklist.two-col {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}

.checklist li {
  position: relative;
  padding-left: 38px;
  font-size: 1rem;
  color: var(--mocha);
  line-height: 1.55;
}

.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--bordeaux-deep);
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(184, 149, 93, 0.3);
}

/* ---------- Chips (focus tags) ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--surface-solid);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-sm);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.16rem;
  color: var(--bordeaux);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.chip::before {
  content: "\2726";
  color: var(--gold);
  font-size: 0.7em;
}

.chip:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

/* ---------- Contrast cards (e.g. doctor vs me) ---------- */
.contrast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contrast-card {
  padding: clamp(28px, 3vw, 40px);
  display: grid;
  gap: 14px;
  align-content: start;
}

.contrast-card .q-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--gold);
}

.contrast-card .q-text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.3;
  color: var(--bordeaux);
}

.contrast-card.accent {
  background: linear-gradient(160deg, rgba(110, 31, 40, 0.96), rgba(83, 16, 25, 0.96));
  border-color: rgba(184, 149, 93, 0.4);
}

.contrast-card.accent .q-text { color: var(--ivory); }
.contrast-card.accent .q-label { color: var(--gold-soft); }
.contrast-card.accent p { color: rgba(250, 245, 239, 0.82); }

/* ---------- Module grid (curriculum) ---------- */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.module-card {
  padding: 28px 26px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.module-card .mod-no {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--gold);
}

.module-card h3 {
  color: var(--bordeaux);
  font-size: 1.3rem;
}

.module-card p {
  font-size: 0.92rem;
}

/* ---------- Pricing card ---------- */
.pricing {
  max-width: 540px;
  margin-inline: auto;
  text-align: center;
  display: grid;
  gap: 20px;
  padding: clamp(36px, 5vw, 56px);
  background: linear-gradient(160deg, var(--surface-solid), rgba(243, 231, 211, 0.6));
}

.pricing .price {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 4.2rem);
  color: var(--bordeaux);
  line-height: 1;
}

.pricing .price span {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.pricing .price-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
}

.pricing .price-meta span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- FAQ accordion ---------- */
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: var(--bordeaux);
  transition: color 0.25s var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.35s var(--ease-spring), background-color 0.3s var(--ease),
    color 0.3s var(--ease);
}

.faq-item[open] summary::after {
  content: "\2212";
  transform: rotate(180deg);
  background: var(--gold);
  color: var(--bordeaux-deep);
}

.faq-item summary:hover { color: var(--gold); }

.faq-item .faq-body {
  padding: 0 26px 24px;
}

.faq-item .faq-body p {
  font-size: 0.98rem;
  line-height: 1.72;
  max-width: 64ch;
}

/* ---------- Contact (unified split card) ---------- */
.contact-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-gold);
  background: var(--surface-solid);
}

/* --- Dark info panel (left) --- */
.contact-info {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 36px);
  padding: clamp(32px, 3.6vw, 52px);
  padding-bottom: clamp(58px, 5vw, 84px);
  background: linear-gradient(158deg, var(--bordeaux), var(--bordeaux-deep));
  color: var(--ivory);
}

.contact-info::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(420px 300px at 8% 0%, rgba(184, 149, 93, 0.28), transparent 60%),
    radial-gradient(380px 280px at 100% 100%, rgba(231, 215, 212, 0.18), transparent 60%);
  pointer-events: none;
}

.contact-info > * { position: relative; z-index: 1; }

.contact-info .eyebrow { color: var(--gold-soft); }
.contact-info .eyebrow::before { background: var(--gold-soft); opacity: 0.8; }
.contact-info h2 { color: var(--ivory); font-size: clamp(1.9rem, 2.6vw, 2.5rem); }
.contact-info .intro { color: rgba(250, 245, 239, 0.82); font-size: 1rem; max-width: 38ch; }

.ci-top { display: grid; gap: 16px; }

.ci-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.ci-item { display: flex; gap: 16px; align-items: center; }

.ci-ico {
  flex: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(250, 245, 239, 0.08);
  border: 1px solid rgba(216, 184, 136, 0.4);
  color: var(--gold-soft);
}

.ci-ico svg { width: 21px; height: 21px; }

.ci-text { display: grid; gap: 2px; min-width: 0; }

.ci-label {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--gold-soft);
}

.ci-val {
  font-size: 1rem;
  color: var(--ivory);
  transition: color 0.25s var(--ease);
  word-break: break-word;
}

a.ci-val:hover { color: var(--gold-soft); }

.ci-btn { margin-top: auto; width: 100%; }

/* --- Light form panel (right) --- */
.contact-form-panel {
  position: relative;
  padding: clamp(32px, 3.6vw, 52px);
  padding-bottom: clamp(58px, 5vw, 84px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background:
    radial-gradient(520px 360px at 100% 0%, rgba(243, 231, 211, 0.5), transparent 60%),
    var(--surface-solid);
}

.form-head { display: grid; gap: 6px; margin-bottom: 4px; }
.form-head h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  color: var(--bordeaux);
}

.cform { flex: 1; display: flex; flex-direction: column; gap: 18px; }

.field { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Message field grows so the submit button drops to the panel floor,
   aligning with the "Schedule" button in the dark panel. */
.field--grow { flex: 1; grid-template-rows: auto 1fr; }
.field--grow textarea { height: 100%; }

.field label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 0.96rem;
  color: var(--mocha);
  background: #fff;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.field input::placeholder,
.field textarea::placeholder { color: rgba(122, 101, 92, 0.55); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 149, 93, 0.16);
}

.cform .btn { width: 100%; margin-top: auto; }

/* Note sits below the submit button, in the panel's bottom padding,
   without pushing the button up (so it stays aligned with Schedule). */
.form-note {
  position: absolute;
  left: clamp(32px, 3.6vw, 52px);
  right: clamp(32px, 3.6vw, 52px);
  bottom: clamp(16px, 1.8vw, 22px);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}
.form-note svg { width: 15px; height: 15px; flex: none; color: var(--gold); }

.form-status {
  margin: 4px 0 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface-champagne);
  border: 1px solid var(--line-gold);
  color: var(--mocha);
  font-size: 0.9rem;
}
.form-status[hidden] { display: none; }

@media (max-width: 1024px) {
  .contact-card { grid-template-columns: 1fr; }
  .ci-btn { width: 100%; }
  .form-note { position: static; }
  .contact-form-panel,
  .contact-info { padding-bottom: clamp(32px, 3.6vw, 52px); }
  .field--grow { flex: initial; }
}

@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- Centered intro + reveal helpers ---------- */
.measure {
  max-width: 64ch;
  margin-inline: auto;
}

/* ---------- Inner page responsive ---------- */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-figure { order: 0; }
  .split-figure { max-height: 560px; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .contrast-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .module-grid { grid-template-columns: 1fr; }
  .checklist.two-col { grid-template-columns: 1fr; }
}

/* ---------- Reveal animations ---------- */
/* Hidden only when JS is confirmed present (html.js); without JS the content
   stays visible so no-JS users and crawlers still see everything. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .lead-hero .hero-copy { justify-self: stretch; }
  .hero-figure { aspect-ratio: 4 / 5; max-height: 580px; }
  .story-grid { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid--five { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  /* Collapse links only — Book Now stays pinned in the bar */
  .nav-links {
    display: none;
  }
  .nav-toggle { display: grid; place-items: center; }
  .nav-cta { padding: 0 18px; }

  .nav.is-open {
    flex-wrap: wrap;
  }
  .nav.is-open .nav-links {
    order: 3;
    width: 100%;
    display: grid;
    gap: 4px;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid var(--line);
  }
  .nav.is-open .nav-links a {
    padding: 12px 14px;
  }

  .pathways { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid--five { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }

  .btn { width: 100%; }
  .nav-actions .btn { width: auto; }
}

/* ============================================================
   For Women Page UI Redesign
   ============================================================ */

/* Hero Split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
}

.hero-split-left h1 {
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1.05;
}

.hero-split-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.1rem;
  color: var(--mocha);
}

.hero-split-right p {
  margin: 0;
  display: flex;
  gap: 12px;
  text-align: left;
}

.hero-split-right p::before {
  content: "—";
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.hero-split-right p.no-dash::before {
  content: none;
}

/* Masonry Bubbles for Questions */
.masonry-bubbles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin-inline: auto;
  margin-top: 40px;
}

.masonry-bubble {
  background: var(--surface-solid);
  padding: 24px 32px;
  border-radius: 40px;
  border: 1px solid var(--line-gold);
  box-shadow: 0 8px 24px rgba(110, 31, 40, 0.04);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--bordeaux);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.masonry-bubble:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(110, 31, 40, 0.08);
}

/* Dark Section */
.section--dark {
  background: var(--bordeaux);
  color: var(--surface-solid);
  padding: clamp(60px, 8vw, 100px) 0;
}

.section--dark h2, 
.section--dark h3 {
  color: var(--surface-champagne);
}

.section--dark .prose {
  color: rgba(255, 255, 255, 0.85);
}

.section--dark .divider {
  border-color: rgba(255, 255, 255, 0.15);
}

/* Check list item styling */
.list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.list-item-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--gold);
  margin-top: 4px;
}

.list-item-text {
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 540px) {
  /* Keep the header bar on one clean line: monogram + Book Now + toggle */
  .brand-copy { display: none; }
}

@media (max-width: 440px) {
  .shell { width: calc(100% - 28px); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid--five { grid-template-columns: 1fr; }
}
