/* ============================================================
   REFLECTION ROOM THERAPY — 2026 BRAND STYLESHEET
   Courtney Sanchez, LCSW
   reflectionroomtherapy.com
   ============================================================
   TABLE OF CONTENTS
   1. CSS Variables & Reset
   2. Typography
   3. Navigation
   4. Hero Sections
   5. Section Layouts
   6. Buttons & CTAs
   7. Divider / Watermark
   8. Cards & Panels
   9. Inclusivity Section
   10. Contact Form
   11. Footer
   12. Animations & Scroll Reveals
   13. Mobile / Responsive
   ============================================================ */

/* ── 1. CSS VARIABLES & RESET ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Lato:wght@300;400;700&display=swap');

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

:root {
  /* 2026 Brand Palette */
  --sage:        #607A64;   /* primary green — only green used */
  --sage-dark:   #4a6050;   /* hover/depth */
  --sage-deep:   #3d5045;   /* deep sections */
  --taupe:       #F2EDE4;   /* warm background */
  --stone:       #E0D6C8;   /* secondary background */
  --warm-brown:  #9E8470;   /* accents, rules */
  --warm-tan:    #C9B99A;   /* subtle accents */
  --charcoal:    #2C2C2A;   /* body text */
  --white:       #FFFFFF;
  --off-white:   #FAF8F5;   /* near-white sections */

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Lato', sans-serif;

  /* Spacing */
  --section-pad: clamp(5rem, 10vw, 9rem);
  --container:   1180px;
  --gutter:      clamp(1.5rem, 5vw, 4rem);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--taupe);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── 2. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}

.display {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.display em {
  font-style: italic;
  color: var(--sage);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--sage);
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--charcoal);
}

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

/* ── 3. NAVIGATION ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(242, 237, 228, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(224, 214, 200, 0.7);
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  transition: box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 2px 32px rgba(44, 44, 42, 0.07);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 50px;
  width: auto;
  max-width: 220px;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover { color: var(--sage); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--sage); }
.nav-links a.active::after { transform: scaleX(1); }

/* Portal button */
.nav-portal {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--sage);
  padding: 0.7rem 1.4rem;
  border: none;
  transition: opacity 0.2s;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-portal:hover { opacity: 0.82; }

/* Hide portal at medium widths to prevent crowding */
@media (max-width: 1200px) and (min-width: 769px) {
  .nav-portal { display: none; }
  .nav-links { gap: 2rem; }
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease);
}

/* Mobile nav drawer — top offset matches new nav height */
.nav-drawer {
  display: none;
  position: fixed;
  top: 90px; left: 0; right: 0; bottom: 0;
  background: var(--taupe);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.nav-drawer.open {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-drawer a:hover { color: var(--sage); }

.nav-drawer .drawer-portal {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--sage);
  padding: 0.9rem 2.5rem;
  margin-top: 0.5rem;
  text-decoration: none;
}

/* ── 4. HERO SECTIONS ─────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Lighter overlay — let the olive branches breathe */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(242, 237, 228, 0.82) 0%,
    rgba(242, 237, 228, 0.58) 55%,
    rgba(96, 122, 100, 0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: var(--section-pad) var(--gutter);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7.5vw, 6.4rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--sage);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 500;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
  max-width: 480px;
  line-height: 1.9;
}

/* Interior page heroes (shorter) */
.hero-interior {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}

.hero-interior .hero-bg::after {
  background: linear-gradient(
    to top,
    rgba(44, 44, 42, 0.88) 0%,
    rgba(44, 44, 42, 0.15) 60%,
    rgba(44, 44, 42, 0) 100%
  );
}

.hero-interior-content {
  position: relative;
  z-index: 2;
  padding: 4rem var(--gutter) 4rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  color: var(--taupe);
}

.hero-interior-content h1,
.hero-interior-content h2,
.hero-interior-content p,
.hero-interior-content .section-label {
  color: var(--taupe);
  text-shadow: 0 1px 4px rgba(44, 44, 42, 0.5);
}

.hero-interior-content h1 em,
.hero-interior-content h2 em {
  color: var(--warm-tan);
  font-style: italic;
}

.hero-interior-content .section-label {
  color: var(--warm-tan);
  border-color: rgba(201, 185, 154, 0.6);
  text-shadow: 0 1px 3px rgba(44, 44, 42, 0.4);
}

/* ── 5. SECTION LAYOUTS ───────────────────────────────────── */
.section {
  padding: var(--section-pad) var(--gutter);
}

.section-taupe  { background: var(--taupe); }
.section-stone  { background: var(--stone); }
.section-sage   { background: var(--sage); }
.section-sage-deep { background: var(--sage-deep); }
.section-off-white { background: var(--off-white); }
.section-charcoal { background: var(--charcoal); }

/* ── BIO STICKY LAYOUT ────────────────────────────────────── */
.bio-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}

.bio-photo {
  position: sticky;
  top: 110px;
}

.bio-photo-inner {
  position: relative;
  overflow: hidden;
}

.bio-photo-inner img {
  width: 100%;
  height: 75vh;
  max-height: 680px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.bio-photo-inner::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--warm-tan);
  z-index: -1;
}

.bio-copy {
  padding-top: 0.5rem;
}

@media (max-width: 768px) {
  .bio-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bio-photo {
    position: relative;
    top: auto;
  }

  .bio-photo-inner img {
    height: 480px;
    max-height: none;
  }

  .bio-photo-inner::after {
    display: none;
  }
}

/* ── Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* Centered layout */
.centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* ── 6. BUTTONS & CTAs ────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--sage);
  padding: 1.1rem 2.6rem;
  border: 2px solid var(--sage);
  transition: background 0.25s, color 0.25s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  background: transparent;
  padding: 1.1rem 2.6rem;
  border: 2px solid var(--sage);
  transition: background 0.25s, color 0.25s;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
}

.btn-outline-white {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  padding: 1.1rem 2.6rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: background 0.25s, border-color 0.25s;
  text-decoration: none;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2.5rem;
}

/* ── 7. DIVIDER / WATERMARK ───────────────────────────────── */
/* The infinity-heart mark used as a section divider */
.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.divider img {
  width: 64px;
  opacity: 0.4;
}

.divider-white img {
  mix-blend-mode: screen;
  opacity: 0.4;
}

/* Horizontal rule with centered mark */
.divider-rule {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 480px;
  margin: 0 auto;
  padding: 3rem 0;
}

.divider-rule::before,
.divider-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--warm-tan);
}

.divider-rule img {
  width: 48px;
  opacity: 0.45;
}

/* ── 8. CARDS & PANELS ────────────────────────────────────── */
.card {
  background: var(--off-white);
  padding: 2.5rem;
  border-top: 3px solid var(--sage);
}

.card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.8rem;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--charcoal);
}

.card p {
  font-size: 0.95rem;
  line-height: 1.75;
  opacity: 0.8;
}

/* Photo treatment */
.photo-frame {
  position: relative;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-frame::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--warm-tan);
  z-index: -1;
}

/* Pull quote */
.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
  border-left: 3px solid var(--sage);
  padding-left: 2rem;
  margin: 2.5rem 0;
}

/* ── 9. INCLUSIVITY SECTION ───────────────────────────────── */
.inclusivity {
  background: var(--sage-deep);
  padding: var(--section-pad) var(--gutter);
  text-align: center;
}

.inclusivity .section-label {
  color: rgba(255,255,255,0.55);
}

.inclusivity .section-title {
  color: var(--white);
  margin-bottom: 2rem;
}

.inclusivity-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
  max-width: 680px;
  margin: 0 auto 3.5rem;
  font-weight: 400;
}

/* Identity badges — spaced, unhurried, dignified */
.identity-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  list-style: none;
  margin-bottom: 0;
}

.identity-list li {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
}

.identity-list li span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--warm-tan);
  margin: 0 1rem;
  vertical-align: middle;
  transform: rotate(45deg);
}

/* ── 10. CONTACT FORM ─────────────────────────────────────── */
.form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 0.9rem 1.1rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* Custom select arrow */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '↓';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--warm-brown);
  pointer-events: none;
  font-size: 0.8rem;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--sage);
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--charcoal);
  opacity: 0.8;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--sage);
  margin-bottom: 1rem;
}

.form-success p {
  opacity: 0.75;
  font-size: 1rem;
}

/* ── 11. FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  padding: 3rem var(--gutter);
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  /* Show white version on dark bg */
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-email {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.2rem;
}

.footer-email a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-email a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

.footer-cities {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.18);
  line-height: 1.8;
  margin-top: 0.5rem;
}

/* ── 12. ANIMATIONS & SCROLL REVEALS ─────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero load-in stagger */
.anim-1 { animation: fadeUp 0.9s var(--ease) 0.1s both; }
.anim-2 { animation: fadeUp 0.9s var(--ease) 0.28s both; }
.anim-3 { animation: fadeUp 0.9s var(--ease) 0.46s both; }
.anim-4 { animation: fadeUp 0.9s var(--ease) 0.62s both; }

/* Scroll reveal — applied via JS */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.js-ready {
  opacity: 0;
  transform: translateY(28px);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── CINEMATIC PHOTO SECTION ──────────────────────────────── */
.photo-cinematic {
  position: relative;
  height: clamp(320px, 50vw, 560px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-cinematic-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
}

.photo-cinematic-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 42, 0.58);
}

.photo-cinematic-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
}

.photo-cinematic-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-shadow: 0 2px 30px rgba(44,44,42,0.5);
}

/* ── WHAT BRINGS COUPLES HERE ─────────────────────────────── */
.brings-item {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 3rem 0;
  border-top: 1px solid rgba(201,185,154,0.25);
}

.brings-item-last {
  border-bottom: none;
}

.brings-num {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--warm-tan);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  opacity: 0.6;
}

.brings-content {
  flex: 1;
  padding-top: 0.6rem;
}

.brings-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.brings-body {
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  max-width: 56ch;
}

@media (max-width: 768px) {
  .brings-body {
    display: none;
  }

  .brings-item {
    padding: 2rem 0;
    gap: 1.5rem;
  }

  .brings-num {
    font-size: 2.8rem;
    width: 44px;
  }
}

/* ── WHO I HELP LIST — LIGHT (taupe bg) ──────────────────── */
.wih-list-light {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wih-list-light li {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--stone);
}

.wih-list-light li:first-child {
  border-top: 1px solid var(--stone);
}

/* ── TRANSFORMATION SECTION ───────────────────────────────── */
.transform-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.transform-now,
.transform-future {
  padding: 2.5rem;
}

.transform-now {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
}

.transform-future {
  background: var(--sage-dark);
  border: 1px solid rgba(255,255,255,0.15);
}

.transform-header-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-tan);
  margin-bottom: 1.5rem;
}

.transform-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.transform-list li {
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 400;
}

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

@media (max-width: 768px) {
  .transform-cols {
    grid-template-columns: 1fr;
  }
}

/* ── COUPLE TYPE EDITORIAL GRID ───────────────────────────── */
@media (max-width: 640px) {
  .couple-type-row {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

/* ── WHO I HELP LIST ──────────────────────────────────────── */
.wih-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4rem;
}

.wih-list li {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  letter-spacing: 0.01em;
}

.wih-list li:first-child {
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* ── EFCT APPROACH STEPS — LIGHT (stone bg) ──────────────── */
.approach-step-item-light {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding: 3.5rem 0;
  border-top: 1px solid var(--warm-tan);
}

.approach-step-last-light {
  border-bottom: 1px solid var(--warm-tan);
}

.approach-step-num-light {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--sage);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  opacity: 0.4;
}

.approach-step-title-light {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.approach-step-copy-light {
  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 400;
  color: var(--charcoal);
  max-width: 56ch;
}

/* ── EFCT APPROACH STEPS ──────────────────────────────────── */
.approach-step-item {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(201,185,154,0.25);
}

.approach-step-last {
  border-bottom: 1px solid rgba(201,185,154,0.25);
}

.approach-step-num {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--warm-tan);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  opacity: 0.6;
}

.approach-step-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.approach-step-copy {
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  max-width: 56ch;
}

/* ── 13. MOBILE / RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-portal { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }

  /* Hero */
  .hero-headline { font-size: clamp(2.4rem, 8vw, 3.4rem); }

  /* Two column → single */
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }

  /* Form rows */
  .form-row { grid-template-columns: 1fr; }

  /* Photo frame offset */
  .photo-frame::after { display: none; }

  /* Identity list smaller */
  .identity-list li { font-size: 1rem; }

  /* Cards */
  .card { padding: 1.8rem; }

  /* Brings items — tighter on mobile */
  .brings-item { gap: 1.5rem; padding: 2rem 0; }
  .brings-num { font-size: 2.8rem; width: 40px; }

  /* Approach steps — tighter on mobile */
  .approach-step-item { gap: 1.5rem; padding: 2rem 0; }
  .approach-step-num { font-size: 2.8rem; width: 40px; }
  .approach-step-item-light { gap: 1.5rem; padding: 2rem 0; }
  .approach-step-num-light { font-size: 2.8rem; width: 40px; }

  /* Who I help list */
  .wih-list li { font-size: 1.15rem; padding: 1.1rem 0; }
}

@media (max-width: 480px) {
  :root { --gutter: 1.25rem; }
  .hero-headline { font-size: 2rem; }
  .display { font-size: 2.2rem; }
  .section-title { font-size: 1.7rem; }
  .cta-group { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .brings-num { font-size: 2.2rem; width: 32px; }
  .approach-step-num { font-size: 2.2rem; width: 32px; }
  .approach-step-num-light { font-size: 2.2rem; width: 32px; }
  .brings-item { gap: 1.2rem; }
  .approach-step-item { gap: 1.2rem; }
  .approach-step-item-light { gap: 1.2rem; }
}
