/* ============================================================
   main.css — bencareydonaldson.com
   Unified stylesheet per Migration Instruction Set B3
   ============================================================ */

/* ─── 1. Design Tokens ─── */
:root {
  /* Brand palette — green scale */
  --green-100: #eff6ef;
  --green-200: #deecdf;
  --green-300: #cee3cf;
  --green-400: #bdd9bf;
  --green-500: #b5cfb7;
  --green-600: #93a794;
  --green-700: #90a491;
  --green-800: #8ea38f;
  --green-900: #5f6d60;
  --green-950: #2f3630;

  /* Brand palette — navy scale */
  --navy-100: #cbcfd4;
  --navy-200: #97a0a9;
  --navy-300: #62707d;
  --navy-400: #2e4052;
  --navy-500: #23303e;
  --navy-600: #172029;
  --navy-700: #0c1015;

  /* Semantic aliases */
  --color-primary: var(--green-400);
  --color-secondary: var(--navy-400);
  --color-text: rgba(0, 0, 0, 0.7);
  --color-text-muted: rgba(0, 0, 0, 0.55);
  --color-text-light: rgba(0, 0, 0, 0.65);
  --color-bg: #fff;
  --color-bg-soft: var(--green-100);

  /* Typography */
  --font-heading: 'Nunito Sans', sans-serif;
  --font-body: 'Nunito', sans-serif;

  /* Spacing scale (8px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  --space-9: 8rem;

  /* Radii */
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 25px;
  --radius-pill: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 14px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 18px 44px rgba(0,0,0,0.12);
}


/* ─── 2. Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-900); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--navy-400); }
ul, ol { padding: 0; margin: 0; list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }


/* ─── 3. Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.2;
  margin: 0 0 var(--space-3) 0;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.25; }
h3 { font-size: 1.5rem; line-height: 1.3; }
h4 { font-size: 1.25rem; line-height: 1.4; }
p { margin: 0 0 var(--space-3) 0; }
.lead { font-size: 1.2rem; line-height: 1.9; }
.pretitle {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-900);
  margin-bottom: var(--space-1);
}
.pretitle--light { color: var(--green-400); }
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }


/* ─── 4. Layout ─── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}
.section {
  position: relative;
  overflow: hidden;
}
.section-padded {
  padding: var(--space-9) 0;
}
.grid {
  display: grid;
  gap: var(--space-5);
}
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}
.col-auto { flex: 1 1 0; }


/* ─── 5a. Navigation ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  padding: 20px 0;
}
.site-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}
.logo img { width: 40px; height: 40px; }
.nav-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0;
}
.nav-list li a {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  padding: 5px 0;
  margin-left: 15px;
  border-bottom: 2px solid transparent;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
  transition: border-color 0.2s ease;
  text-decoration: none;
}
.nav-list li a:hover,
.nav-list li a[aria-current="page"] {
  color: #fff;
  border-color: #fff;
}
.nav-cta a.nav-cta-link,
.nav-list .nav-cta a {
  font-size: 1rem;
  color: var(--green-100);
  background: var(--green-800);
  padding: 10px 15px;
  margin-left: 30px;
  border-radius: var(--radius-sm);
  border: none;
  transition: background 0.2s ease;
}
.nav-list .nav-cta a:hover { background: var(--green-900); }
.nav-list .nav-lang a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-left: 15px;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.nav-list .nav-lang a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 110;
}
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: absolute;
  left: 10px;
}
.nav-toggle-icon { top: 21px; }
.nav-toggle-icon::before { content: ''; top: -7px; }
.nav-toggle-icon::after { content: ''; top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after { top: 0; transform: rotate(-45deg); }


/* ─── 5b. Footer ─── */
.site-footer {
  background: var(--navy-600);
  color: rgba(255,255,255,0.65);
  padding: var(--space-8) 0 var(--space-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-6);
}
.site-footer a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.site-footer a:hover { color: rgba(255,255,255,0.85); }
.footer-brand strong { color: rgba(255,255,255,0.85); font-size: 1.1rem; }
.footer-brand p { margin: 0 0 var(--space-1); font-size: 0.92rem; line-height: 1.6; }
.footer-brand img { margin-bottom: var(--space-3); }
.footer-siret { font-size: 0.8rem; opacity: 0.5; margin-top: var(--space-2) !important; }
.footer-nav ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-nav a { font-size: 0.95rem; }
.footer-nav-title,
.footer-nav h3,
.footer-social h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-3);
}
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: flex-start;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s;
  font-size: 0;
  line-height: 1;
  overflow: hidden;
}
.footer-social a::before,
.footer-social a::after { content: none !important; }
.footer-social a:hover { background: rgba(255,255,255,0.18); }
.footer-social svg {
  display: block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.7);
}
.footer-legal {
  display: flex;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-3);
  font-size: 0.85rem;
}
.footer-copyright {
  font-size: 0.8rem;
  opacity: 0.45;
  margin: 0;
}


/* ─── 5c. Buttons ─── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  line-height: 1.4;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--green-400);
  border-color: var(--green-400);
  color: rgba(0,0,0,0.75);
}
.btn-primary:hover { background: var(--green-800); border-color: var(--green-800); color: #fff; }
.btn-secondary {
  background: var(--navy-400);
  border-color: var(--navy-400);
  color: var(--navy-100);
}
.btn-secondary:hover { background: var(--navy-500); border-color: var(--navy-500); color: #fff; }
.btn-navy {
  background: var(--navy-400);
  border-color: var(--navy-400);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-500); border-color: var(--navy-500); color: #fff; }
.btn-dark {
  background: rgba(0,0,0,0.8);
  color: #fff;
}
.btn-dark:hover { background: rgba(0,0,0,0.95); color: #fff; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--green-400);
  color: var(--green-900);
}
.btn-outline:hover { background: var(--green-400); color: rgba(0,0,0,0.75); }
.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); color: #fff; }
.btn-success {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}
.btn-success:hover { background: var(--green-900); border-color: var(--green-900); }
.btn-ghost {
  background: transparent;
  border: 2px solid var(--green-300);
  color: var(--green-900);
}
.btn-ghost:hover { background: var(--green-100); color: var(--green-900); }
.btn-lg { padding: 14px 30px; font-size: 1.1rem; }

/* Button group utility */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.btn-group--center { justify-content: center; }


/* ─── 5d. Cards ─── */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.card-split-body { padding: var(--space-7); }
.card-split-img {
  position: relative;
  min-height: 300px;
}
.card-split-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}


/* ─── 5e. FAQ accordion ─── */

/* Shared base — used by homepage inline FAQ widget */
.faq-accordion { }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  background: linear-gradient(to bottom, rgba(0,0,0,0.01), rgba(0,0,0,0.04));
  border: none;
  border-radius: 0;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
  gap: 1rem;
  line-height: 1.4;
}
.faq-question:hover { background: rgba(0,0,0,0.04); color: var(--navy-400); }
.faq-question[aria-expanded="true"] { color: var(--navy-400); }
.faq-chevron {
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 var(--space-4);
  color: #545454;
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 800px;
  padding: var(--space-3) var(--space-4) var(--space-4);
}

/* Card-style FAQ — used on IFS FAQs page (.faq-section context) */
.faq-section {
  background: var(--green-100);
  padding: 90px 0;
  position: relative;
}
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-header h2 { color: var(--navy-400); margin-bottom: 0; }
.faq-header .section-bar { margin: 1.25rem auto 0; }
.faq-list { max-width: 820px; margin: 0 auto; }

/* Override base .faq-item inside .faq-section to card style */
.faq-section .faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  border-bottom: none;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-section .faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.09); }
.faq-section .faq-question {
  background: none;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
}
.faq-section .faq-question:hover { background: none; }

/* Plus/rotate icon used on IFS FAQs page */
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.2s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--navy-400);
}
.faq-icon svg { fill: var(--navy-400); width: 14px; height: 14px; transition: fill 0.2s ease; }
.faq-question[aria-expanded="true"] .faq-icon svg { fill: #fff; }

/* Answer panel — aria-expanded / .open variant */
.faq-section .faq-answer { padding: 0 1.5rem; }
.faq-section .faq-answer.open { max-height: 600px; padding: 0 1.5rem; }
.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-light);
}
.faq-answer-inner p { margin: 0 0 0.75rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }


/* ─── 5f. Resource cards (rl-card system) ─── */
.rl-shell {
  --rl-green: #8ea38f;
  --rl-green-dk: #5a7a5c;
  --rl-green-lt: #edf2ed;
  --rl-green-md: #c8d9c9;
  --rl-dark: #2c3e2d;
  --rl-gray: #666;
  --rl-light: #f7f9f7;
  --rl-border: #e2ebe2;
  --rl-radius: 10px;
  --rl-shadow: 0 2px 16px rgba(44,62,45,0.08);
}

#rl-verified-banner {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: var(--rl-green-lt);
  border: 1px solid var(--rl-green-md);
  border-radius: var(--rl-radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.92rem;
  color: var(--rl-green-dk);
}

#rl-verified-banner.show { display: flex; }

.rl-category { margin-bottom: 3rem; }

.rl-cat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--rl-green-md);
}

.rl-cat-header h2 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--rl-dark);
  font-weight: 700;
}

.rl-cat-count {
  margin-left: auto;
  font-size: 0.78rem;
  background: var(--rl-green-md);
  color: var(--rl-green-dk);
  padding: 0.18rem 0.55rem;
  border-radius: 20px;
  font-weight: 600;
}

.rl-card {
  background: #fff;
  border: 1px solid var(--rl-border);
  border-radius: var(--rl-radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--rl-shadow);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.rl-card:hover {
  box-shadow: 0 4px 24px rgba(44,62,45,0.13);
  transform: translateY(-2px);
}

.rl-card-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-align: left;
  cursor: pointer;
}

.rl-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--rl-green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.rl-card-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--rl-dark);
  margin: 0 0 0.2rem;
  line-height: 1.35;
}

.rl-card-meta {
  font-size: 0.78rem;
  color: var(--rl-gray);
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.rl-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}

.badge-assessment { background: #fde8c0; color: #8a5a00; }
.badge-worksheet { background: #cce8f8; color: #0a4f7a; }
.badge-guide { background: var(--rl-green-lt); color: var(--rl-green-dk); }
.badge-meditation { background: #ede0ff; color: #5a2d8a; }

.rl-toggle {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--rl-light);
  border: 1px solid var(--rl-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--rl-green-dk);
  transition: background 0.2s ease, transform 0.25s ease;
}

.rl-card.open .rl-toggle {
  background: var(--rl-green);
  border-color: var(--rl-green);
  color: #fff;
  transform: rotate(180deg);
}

.rl-card-body {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--rl-border);
}

.rl-card-body[hidden] { display: none; }

.rl-desc {
  font-size: 0.92rem;
  color: var(--rl-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.rl-disclaimer {
  font-size: 0.78rem;
  color: #888;
  background: var(--rl-light);
  border-left: 2px solid var(--rl-green-md);
  padding: 0.5rem 0.75rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.rl-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.rl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.1s ease;
  line-height: 1;
}

.rl-btn:active { transform: scale(0.97); }

.rl-btn-primary {
  background: var(--rl-green);
  color: #fff;
}

.rl-btn-primary:hover {
  background: var(--rl-green-dk);
  color: #fff;
}

.rl-btn-outline {
  background: transparent;
  color: var(--rl-green-dk);
  border: 1.5px solid var(--rl-green);
}

.rl-btn-outline:hover { background: var(--rl-green-lt); }

#rl-gate-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,62,45,0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(3px);
}

#rl-gate-overlay.active { display: flex; }

#rl-gate-modal {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 2rem 1.5rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  position: relative;
  animation: rl-up 0.22s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes rl-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#rl-gate-close {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-size: 1.25rem;
  color: var(--rl-gray);
  line-height: 1;
  z-index: 1;
}

#rl-gate-close:hover { color: var(--rl-dark); }

#rl-gate-modal .rl-gate-heading {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: var(--rl-dark);
  font-weight: 700;
}

#rl-gate-resource-name {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--rl-green-dk);
  background: var(--rl-green-lt);
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
}

#rl-gate-modal .rl-fine-print {
  font-size: 0.74rem;
  color: #aaa;
  text-align: center;
  line-height: 1.55;
  margin-top: 0.75rem;
}

#rl-gate-modal .sib-form {
  background: transparent !important;
  padding: 0 !important;
  text-align: left !important;
}

#rl-gate-modal #sib-container {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  max-width: 100% !important;
  padding: 0 !important;
}

#rl-gate-modal #sib-form-container { padding: 0 !important; }

#rl-gate-modal .entry__label {
  font-family: inherit !important;
  font-size: 0.88rem !important;
  color: var(--rl-gray) !important;
  font-weight: 600 !important;
  margin-bottom: 0.4rem !important;
}

#rl-gate-modal #EMAIL {
  width: 100% !important;
  padding: 0.68rem 0.9rem !important;
  border: 1.5px solid var(--rl-border) !important;
  border-radius: 7px !important;
  font-size: 0.95rem !important;
  box-sizing: border-box !important;
  outline: none !important;
  color: var(--rl-dark) !important;
  font-family: inherit !important;
  transition: border-color 0.2s ease !important;
}

#rl-gate-modal #EMAIL:focus { border-color: var(--rl-green) !important; }

#rl-gate-modal .sib-form-block__button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 48px !important;
  padding: 0.72rem !important;
  background: var(--rl-green) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 7px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  line-height: 1.2 !important;
  text-indent: 0 !important;
  white-space: normal !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  opacity: 1 !important;
  cursor: pointer !important;
  transition: background 0.18s ease !important;
  margin-top: 0.25rem !important;
}

#rl-gate-modal .sib-form-block__button:hover {
  background: var(--rl-green-dk) !important;
}

#rl-gate-modal .sib-form-block__button svg {
  flex: 0 0 auto !important;
}

#rl-gate-modal .sib-form-message-panel {
  max-width: 100% !important;
  margin-bottom: 0.75rem !important;
}

#rl-gate-modal .entry__choice span[style] {
  font-family: inherit !important;
  font-size: 0.82rem !important;
  color: var(--rl-gray) !important;
}


/* ─── 5g. Blog cards ─── */
/* (added when blog pages are migrated) */


/* ─── 5h. Testimonial blocks ─── */
/* (see 7a homepage section below) */


/* ─── 5i. Forms ─── */
/* (added when contact/brevo form pages are migrated) */


/* ─── 5j. Brevo form overrides ─── */
/* (added when contact/brevo form pages are migrated) */


/* ─── 5k. Section dividers (SVG gradient overlays) ─── */
.section-divider {
  position: absolute;
  left: 0; right: 0;
  width: 100%;
  pointer-events: none;
  z-index: 2;
}
.section-divider--top {
  top: 0;
  transform: scaleY(-1);
}
.section-divider--bottom {
  bottom: -1px;
}
.section-divider--short { height: 60px; }
.section-divider--medium { height: 80px; }
.section-divider--tall { height: 100px; }
.section-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}


/* ─── 5l. Section separator bars ─── */
.section-bar {
  height: 5px;
  border-radius: 2px;
  margin: var(--space-4) 0 var(--space-5);
}
.section-bar--navy { background: var(--navy-400); width: 100px; }
.section-bar--green { background: var(--green-800); width: 80px; }
.section-bar--light { background: rgba(255,255,255,0.5); }
.section-bar--wide { width: 200px; }
.section-bar--center { margin-left: auto; margin-right: auto; }
.section-bar--half { width: 50%; margin-left: auto; margin-right: auto; }


/* ─── 5m. Scroll-to-top button ─── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-400);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-2px); }
.scroll-top svg { width: 18px; height: 18px; fill: currentColor; }


/* ─── 6a. Scroll-reveal (AOS replacement) ─── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal="fade-up"] { transform: translateY(30px); }
[data-reveal="fade-in"] { transform: none; }
[data-reveal="fade-right"] { transform: translateX(-30px); }
[data-reveal="fade-left"] { transform: translateX(30px); }

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="50"]  { transition-delay: 0.05s; }
[data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal-delay="200"] { transition-delay: 0.2s; }
[data-reveal-delay="300"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}


/* ─── 6b. Parallax backgrounds ─── */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .parallax-section { background-attachment: scroll; }
}


/* ─── 6c. Card/button hover transitions ─── */
/* (defined in 5c and 5d) */


/* ─── 6d. Image filters ─── */
.img-filter-warm { filter: brightness(1.03) saturate(0.9); }
.img-filter-soft { filter: brightness(1.05) contrast(0.95) saturate(0.85); }
.img-filter-mono { filter: grayscale(0.3) brightness(1.1); }


/* ─── 6e. Page-entry fade ─── */
body { animation: page-enter 0.4s ease; }
@keyframes page-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
}


/* ─── 7a. Homepage — Hero ─── */
.hero {
  min-height: 100vh;
  background-color: var(--green-100);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: var(--space-8);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,32,41,0.7) 0%, rgba(47,54,48,0.54) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-5);
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: var(--space-4);
  font-size: clamp(0.98rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 10px 28px rgba(0,0,0,0.24);
}
.hero-title-line {
  display: block;
  white-space: nowrap;
}
.hero-content h1 strong {
  font-weight: 700;
  color: #fff;
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--green-900);
  line-height: 1.6;
  margin-bottom: var(--space-5);
  font-style: italic;
}
.hero-body {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-5);
}
.hero-body strong { color: #fff; }
.hero-buttons {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.hero-image-wrapper {
  position: relative;
  z-index: 2;
}
.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}
.hero-image-clip {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-divider {
  bottom: -28px;
  height: 88px;
}


/* ─── 7a. Homepage — Testimonial ─── */
.testimonial-section {
  position: relative;
  padding: var(--space-9) 0;
  text-align: center;
  color: #fff;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}
.testimonial-section .container { position: relative; z-index: 2; }
.testimonial-section blockquote {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  color: #fff;
  max-width: 760px;
  margin: 0 auto var(--space-4);
  line-height: 1.55;
  quotes: none;
}
.testimonial-section blockquote p { margin: 0 0 var(--space-3); }
.testimonial-section cite {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-400);
  font-style: normal;
  font-weight: 700;
}
.sep-line {
  width: 50%;
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin: 0 auto 2rem;
}


/* ─── 7a. Homepage — About preview ─── */
.about-preview {
  background-color: var(--green-100);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.about-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,32,41,0.55) 0%, rgba(47,54,48,0.36) 100%);
  z-index: 1;
}
.about-preview .container {
  position: relative;
  z-index: 2;
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: var(--space-7);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-xl);
}
.about-preview-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-preview-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-preview h2 { color: var(--green-800); }


/* ─── 7a. Homepage — Services card ─── */
.services-card-section {
  background-color: rgba(245,245,245,1);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.services-card-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,32,41,0.52) 0%, rgba(47,54,48,0.34) 100%);
  z-index: 1;
}
.services-card-section .container {
  position: relative;
  z-index: 2;
}
.services-card-section .card {
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow-xl);
}


/* ─── 7a. Homepage — What is IFS ─── */
.ifs-section {
  background: var(--green-950);
  color: rgba(255,255,255,0.75);
  position: relative;
}
.ifs-section h2 { color: var(--green-400); }
.ifs-section a { color: var(--green-300); }
.ifs-section a:hover { color: var(--green-400); }
.ifs-section .lead { color: var(--green-200); }


/* ─── 7a. Homepage — FAQ section ─── */
.home-faq {
  position: relative;
}


/* ─── 7a. Homepage — Newsletter ─── */
.newsletter-section {
  background: var(--green-100);
  position: relative;
}

/* ─── Shared — Language toggle bars ─── */
/* Simple inline link version (individual therapy, IFS FAQs) */
.lang-banner {
  background: var(--green-100);
  padding: 0.75rem 0;
  text-align: center;
}

/* Bordered button version (services & fees, other Architecture B pages) */
.lang-toggle-bar {
  text-align: center;
  padding: 0.85rem 1rem;
  background: var(--green-100);
  border-bottom: 1px solid var(--green-200);
}
.lang-toggle-bar a {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-400);
  text-decoration: none;
  padding: 0.45rem 1.25rem;
  border: 2px solid var(--navy-400);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.lang-toggle-bar a:hover {
  background: var(--navy-400);
  color: #fff;
}


/* ─── 7b. About Me page ─── */

/* Hero */
.about-hero {
  min-height: 60vh;
  background-color: var(--navy-500);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,32,41,0.72) 0%, rgba(47,54,48,0.5) 100%);
  z-index: 1;
}
.about-hero .container { position: relative; z-index: 2; }
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}
.about-hero-text { position: relative; z-index: 2; }
.about-hero h1 { color: #fff; margin-bottom: 1.25rem; }
.about-hero .lead {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 2rem;
  max-width: 540px;
}
.about-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.about-hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: brightness(1.03) saturate(0.9);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Intro (soft bg) */
.about-intro {
  background: var(--green-100);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.about-intro-inner { max-width: 760px; margin: 0 auto; }
.about-intro h2 { color: var(--navy-400); }

/* Two-column story sections */
.story-section {
  padding: 80px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.story-grid--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
  margin: 0 auto;
}
.story-grid.reverse { direction: rtl; }
.story-grid.reverse > * { direction: ltr; }
.story-section h2 { color: var(--navy-400); }
.story-section p,
.story-section li { color: var(--color-text-light); }

/* Restore list styling inside story sections and other content areas
   (main.css reset strips list-style globally) */
.story-section ul,
.about-intro ul,
.ifs-body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}
.story-section ul li,
.about-intro ul li,
.ifs-body ul li {
  margin-bottom: 0.4rem;
  line-height: 1.85;
  color: var(--color-text);
}
.ifs-body ul li strong { color: var(--navy-400); }

/* Callout block */
.callout-block {
  background: #fff;
  border-left: 4px solid var(--green-800);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--navy-400);
  line-height: 1.7;
  font-size: 1.05rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}

/* Credentials section */
.credentials-section {
  background: var(--green-100);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.credential-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.credential-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.credential-icon {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 50%;
  background: var(--green-100);
  border: 2px solid var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.credential-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-400);
  margin-bottom: 3px;
}
.credential-card span { font-size: 0.9rem; color: rgba(0,0,0,0.65); line-height: 1.6; }

/* About CTA section */
.about-cta {
  background-color: var(--navy-400);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,32,41,0.74) 0%, rgba(46,64,82,0.56) 100%);
  z-index: 1;
}
.about-cta .container { position: relative; z-index: 2; }
.about-cta h2 { color: var(--green-400); margin-bottom: 1rem; }
.about-cta p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}
.about-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }


/* ─── 7c. IFS FAQs page ─── */

/* Page hero (shared pattern for inner pages without a portrait image) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-500) 55%, var(--green-950) 100%);
  padding: 160px 0 100px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(189,217,191,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .pretitle { color: var(--green-400); margin-bottom: 0.75rem; }
.page-hero h1 { color: #fff; margin: 0 auto 1.25rem; max-width: 700px; }
.page-hero .lead {
  color: rgba(255,255,255,0.75);
  max-width: 680px;
  margin: 0 auto;
}
.page-hero-divider {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}
.page-hero-divider svg { display: block; width: 100%; }

/* IFS intro (centred text block on green-100) */
.ifs-intro {
  background: var(--green-100);
  padding: 90px 0;
  position: relative;
}
.ifs-intro-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.ifs-intro-inner h2 { color: var(--navy-400); margin-bottom: 0; }
.ifs-intro-inner .section-bar { margin: 1.25rem auto 2rem; }
.ifs-intro-inner p {
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.85;
}
.ifs-intro-inner .highlight { color: var(--green-900); font-weight: 700; }
.ifs-intro-inner .highlight:hover { color: var(--navy-400); }
.ifs-intro-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Video section (parallax bg + dark overlay) */
.video-section {
  padding: 70px 0;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--navy-600);
  position: relative;
}
.video-section::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
  pointer-events: none;
}
.video-section .container { position: relative; z-index: 2; }
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* IFS body content (long-form prose) */
.ifs-body {
  background: #fff;
  padding: 80px 0;
}
.ifs-body .content-inner {
  max-width: 800px;
  margin: 0 auto;
}
.ifs-body h3 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--navy-400);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}
.ifs-body h3:first-child { margin-top: 0; }


/* ─── 7d. Resources page ─── */
.resources-intro {
  background: var(--green-100);
  padding: 90px 0 80px;
}

.resources-intro-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.resources-intro-copy h2 {
  color: var(--navy-400);
  margin-bottom: 0;
}

.resources-intro-copy p {
  color: var(--color-text-light);
}

.resource-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.resource-pillar {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
}

.resource-pillar h3 {
  color: var(--navy-400);
  margin-bottom: 0.75rem;
}

.resource-pillar p:last-child { margin-bottom: 0; }

.resources-library {
  background: #fff;
  padding: 80px 0 90px;
}

.resources-library-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.resources-library-intro h2 {
  color: var(--navy-400);
  margin-bottom: 0;
}

.resources-library-intro p {
  color: var(--color-text-light);
}

.resources-cta {
  background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-400) 60%, var(--green-950) 100%);
  padding: 90px 0;
  text-align: center;
}

.resources-cta h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.resources-cta p {
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 0 auto 2rem;
}

.resources-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ─── 7f. Resource landing pages ─── */
.resource-landing-intro {
  background: var(--green-100);
  padding: 90px 0;
}

.resource-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.9fr);
  gap: 2.5rem;
  align-items: start;
}

.resource-landing-copy h2 {
  color: var(--navy-400);
  margin-bottom: 0;
}

.resource-landing-copy p,
.resource-landing-copy li {
  color: var(--color-text-light);
}

.resource-landing-copy ul,
.resource-related ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
}

.resource-landing-copy li,
.resource-related li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.resource-download-card {
  background: #fff;
  border: 1px solid var(--green-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.75rem;
  position: sticky;
  top: 110px;
}

.resource-download-card h3 {
  color: var(--navy-400);
  margin-bottom: 0.75rem;
}

.resource-download-card p {
  color: var(--color-text-light);
  font-size: 0.98rem;
  line-height: 1.75;
}

.resource-meta-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.resource-meta-item {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: var(--green-100);
  border: 1px solid var(--green-200);
}

.resource-meta-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-400);
  margin-bottom: 0.2rem;
}

.resource-meta-value {
  display: block;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.5;
}

.resource-section {
  padding: 80px 0;
}

.resource-section--alt {
  background: var(--green-100);
}

.resource-section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.resource-section-header h2 {
  color: var(--navy-400);
  margin-bottom: 0;
}

.resource-disclaimer {
  background: rgba(255,255,255,0.8);
  border-left: 4px solid var(--green-800);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.1rem;
  margin: 1.5rem 0 0;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.resource-callout {
  background: #fff;
  border-left: 4px solid var(--green-800);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--navy-400);
  line-height: 1.75;
  box-shadow: var(--shadow-sm);
}

.resource-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.resource-related-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--green-200);
  box-shadow: var(--shadow-sm);
  padding: 1.35rem 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.resource-related-card h3 {
  font-size: 1rem;
  line-height: 1.45;
  color: var(--navy-400);
  margin-bottom: 0.5rem;
}

.resource-related-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.resource-cta-banner {
  background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-400) 60%, var(--green-950) 100%);
  padding: 90px 0;
  text-align: center;
}

.resource-cta-banner h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.resource-cta-banner p {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.78);
}

.resource-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.ifs-body p + ul { margin-top: -0.5rem; }
.ifs-body .invite-callout {
  background: var(--green-100);
  border-left: 4px solid var(--green-900);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--navy-400);
}

/* CTA parallax banner (between content and FAQ) */
.cta-banner {
  padding: 100px 0;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--navy-600);
  position: relative;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner-sep {
  width: 50%;
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin: 0 auto 2.5rem;
}
.cta-banner .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-panel {
  background: #fff;
  padding: 0 0 var(--space-6);
  position: relative;
}


/* ─── 7d. Individual Therapy page ─── */

/* Hero — full-bleed photo background with dark gradient overlay.
   Uses .site-header--overlay modifier to switch header to position:absolute. */
.site-header--overlay {
  position: absolute;
}
.hero-section {
  min-height: 80vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(46,64,82,0.75) 0%, rgba(47,54,48,0.65) 100%);
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-section h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-section .lead {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.hero-section .lead + .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
}

/* Parallax CTA section */
.parallax-cta {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 120px 0;
}
.parallax-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(46,64,82,0.55);
}
.parallax-cta .container { position: relative; z-index: 2; }

/* Generic content sections */
.content-section {
  background: var(--color-bg);
  padding: 70px 0;
}
.content-section--soft {
  background: var(--green-100);
  padding: 70px 0;
}

/* Check-list (who it's for) */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  color: var(--green-900);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.check-list li strong { color: var(--navy-400); }

/* Process list (what you can expect) */
.process-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.process-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.process-list li:last-child { border-bottom: none; }
.process-list .step-dot {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%;
  background: var(--green-200);
  border: 2px solid var(--green-800);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--green-900);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Callout box (italic pull-quote style — cf. .callout-block in About Me) */
.callout-box {
  background: #fff;
  border-left: 4px solid var(--green-900);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  font-size: 1rem;
  font-style: italic;
  color: var(--navy-400);
  line-height: 1.75;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}

/* Practical details card */
.details-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.details-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.details-row:last-child { border-bottom: none; }
.details-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  background: var(--green-100);
  border: 2px solid var(--green-300);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.details-row p { margin: 0; font-size: 1rem; color: var(--color-text); }
.details-row strong { color: var(--navy-400); }

/* Contact page */
.contact-booking {
  background: var(--green-100);
  padding: 90px 0;
}
.contact-embed-shell {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 2.5rem;
}
.contact-cal-embed {
  width: 100%;
  min-height: 760px;
}
.contact-actions {
  margin-top: 2rem;
}
.contact-actions .btn {
  min-width: 190px;
  text-align: center;
}

/* ─── 7e. Services & Fees page ─── */

.sf-hub {
  background: #fff;
  padding: 90px 0 100px;
}
.sf-hub .hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.hub-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hub-card img {
  width: 100%;
  max-width: 290px;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  filter: brightness(1.03) saturate(0.9);
}
.hub-card h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  color: var(--green-800);
  margin-bottom: 0.9rem;
}
.hub-card p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
}
/* sf-parallax — fullbleed photo interstitial */
.sf-parallax {
  min-height: 400px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
.sf-parallax::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
}

/* ─── 7g. Blog article styles ─── */
/*
   Insert this entire block into main.css after the closing brace of
   .sf-parallax::before { } (end of section 7e)
   and before the line:  /* ─── 8. Utilities ─── *\/
*/

/* Reading progress bar — fixed top of viewport, full width */
#reading-progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 5px;
  background: var(--green-800);
  z-index: 9999;
  transition: width 0.15s linear;
  pointer-events: none;
}

/* ── Page shell ── */
.blog-article {
  padding-top: 80px; /* clear fixed header */
  background: #fff;
}

/* Narrow the container for reading comfort — matches original ~760px text column */
.blog-container {
  max-width: 820px;
}

/* ── Breadcrumb ── */
.breadcrumb {
  padding: var(--space-4) 0 0;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.breadcrumb li + li::before {
  content: '›';
  margin-right: 0.3rem;
  color: var(--navy-200);
}
.breadcrumb a { color: var(--green-800); }
.breadcrumb a:hover { color: var(--navy-400); }
.breadcrumb li[aria-current="page"] { color: var(--color-text-muted); }

/* ── Cover image ── */
.article-cover {
  margin: var(--space-4) 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.article-cover img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* ── Article header ── */
.article-header {
  margin: var(--space-4) 0 var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--green-200);
}
.article-header h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--green-950); /* matches original dark green heading */
  margin-bottom: var(--space-2);
  line-height: 1.18;
}
.article-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0 0 0.25rem;
}
.article-byline {
  font-size: 0.9rem;
  color: var(--green-900);
  font-style: italic;
  margin: 0;
}

/* ── Article body — prose ── */
.article-body {
  font-size: 1.20rem;  /* matches original 1.05rem body */
  line-height: 1.75;
  color: var(--color-text);
  padding-bottom: var(--space-8);
}

/* Headings inside article body */
.article-body h2 {
  font-size: clamp(1.4rem, 5vw, 2rem);
  color: var(--green-950);       /* original: dark green, not navy */
  margin-top: var(--space-7);
  margin-bottom: var(--space-3);
  padding-top: var(--space-4);
  border-top: 2px solid var(--green-200);
  line-height: 1.2;
}
.article-body h2:first-child {
  margin-top: var(--space-3);
  padding-top: 0;
  border-top: none;
}
.article-body h3 {
  font-size: 1.4rem;
  color: var(--green-950);
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.article-body h4 {
  font-size: 1.25rem;
  color: var(--green-900);
  margin-top: var(--space-4);
  margin-bottom: var(--space-1);
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}
.article-body p {
  margin-bottom: var(--space-3);
}

/* Restore lists — global reset strips them */
.article-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0 0 var(--space-3);
}
.article-body ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 0 0 var(--space-3);
}
.article-body li {
  line-height: 1.85;
  margin-bottom: 0.4rem;
  color: var(--color-text);
  font-size: 1.05rem;
}
.article-body li strong { color: var(--navy-400); }

/* Links in body */
.article-body a {
  color: var(--green-900);
  text-decoration: underline;
  text-decoration-color: var(--green-300);
  text-underline-offset: 2px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.article-body a:hover {
  color: var(--navy-400);
  text-decoration-color: var(--navy-400);
}
.article-body strong { color: var(--navy-400); }

/* ── Inline figures — match text column width ── */
.article-figure {
  margin: var(--space-5) 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.article-figure img,
.article-body img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* ── Table of Contents ── */
.toc-container {
  background: var(--green-100);
  border: 1px solid var(--green-300);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin: var(--space-5) 0;
}
.toc-container > h2 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green-900);
  margin: 0 0 var(--space-3);
  padding: 0;
  border: none;
}
/* Override the h2 border that article-body h2 adds */
.toc-container h2 {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
}
.toc-list,
.toc-list ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}
.toc-list > li {
  margin-bottom: 0.5rem;
  font-size: 0.97rem;
  font-weight: 700;
}
.toc-list ul {
  margin: 0.3rem 0 0.3rem 1rem;
}
.toc-list ul li {
  font-size: 0.88rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.toc-list a {
  color: var(--green-900) !important;
  text-decoration: none !important;
  line-height: 1.5;
  transition: color 0.2s;
}
.toc-list a:hover { color: var(--navy-400) !important; }

/* ── Breakout / pull quote ── */
.breakout-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy-400);
  border-left: 4px solid var(--green-800);
  background: var(--green-100);
  padding: var(--space-4) var(--space-5);
  margin: var(--space-5) 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  line-height: 1.75;
  quotes: none;
}
.breakout-quote p { margin: 0; color: var(--navy-400); }

/* ── Responsive video embeds — same width as text ── */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: var(--space-5) 0;
  background: var(--navy-700);
  width: 100%;
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ── Alert / callout boxes (cdx-alert system) ── */
.cdx-alert {
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-4);
  margin: var(--space-5) 0;
  font-size: 1rem;
  line-height: 1.75;
}
.cdx-alert p,
.cdx-alert div { margin: 0 0 0.4rem; }
.cdx-alert p:last-child,
.cdx-alert div:last-child { margin-bottom: 0; }
.cdx-alert ol {
  list-style: decimal;
  padding-left: 1.25rem;
  margin: 0.5rem 0 0;
}
.cdx-alert ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0 0;
}
.cdx-alert li { margin-bottom: 0.3rem; font-size: 1rem; }
.cdx-alert a { color: inherit !important; text-decoration: underline; }
.cdx-alert a:hover { opacity: 0.8; }

/* Dark variant — "Not what you're looking for?" box */
.cdx-alert-dark {
  background: var(--navy-500);
  border-left: 4px solid var(--green-400);
  color: rgba(255,255,255,0.85);
}
.cdx-alert-dark a { color: var(--green-300) !important; }
.cdx-alert-dark a:hover { color: var(--green-400) !important; }
.cdx-alert-dark strong,
.cdx-alert-dark b { color: #fff; }
.cdx-alert-dark i,
.cdx-alert-dark em { color: rgba(255,255,255,0.75); }

/* Info / summary variant */
.cdx-alert-info {
  background: var(--green-100);
  border-left: 4px solid var(--green-800);
  color: var(--color-text);
}
.cdx-alert-info strong,
.cdx-alert-info b { color: var(--navy-400); }

/* ── Resource callout ── */
.resource-callout {
  background: var(--green-100);
  border-left: 4px solid var(--green-900);
  padding: var(--space-4) var(--space-5);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-6) 0;
}
.resource-callout p {
  margin: 0 0 var(--space-2);
  font-size: 1rem;
}
.resource-callout p:last-child { margin-bottom: 0; }
.resource-callout strong { color: var(--navy-400); }
.resource-callout a { color: var(--navy-400); font-weight: 700; text-decoration: underline; }
.resource-callout a:hover { color: var(--green-900); }

/* ── Article CTA section ── */
.article-cta {
  background: var(--navy-400);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin: var(--space-7) 0;
  text-align: center;
}
.article-cta h2 {
  color: var(--green-400) !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin-bottom: var(--space-3);
}
.article-cta p {
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto var(--space-4);
  font-size: 1.05rem;
}
.cta-buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── About the author ── */
.about-author {
  background: var(--green-100);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-5);
  margin: var(--space-6) 0;
  border-top: 3px solid var(--green-800);
}
.about-author h2 {
  font-size: 0.72rem !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green-900);
  margin: 0 0 var(--space-3) !important;
  padding: 0 !important;
  border: none !important;
}
.about-author p {
  font-size: 0.95rem;
  color: var(--color-text);
  margin: 0;
  line-height: 1.8;
}

/* ── FAQ — native <details>/<summary> ── */
.article-faq {
  margin: var(--space-6) 0;
}
.article-faq > h2 {
  margin-bottom: var(--space-4);
}
.article-faq details {
  border-top: 1px solid rgba(0,0,0,0.08);
}
.article-faq details:last-of-type {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.article-faq details[open] {
  padding-bottom: var(--space-3);
}
.article-faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  line-height: 1.4;
  gap: var(--space-3);
}
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green-800);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s ease;
  display: inline-block;
}
.article-faq details[open] > summary::after {
  transform: rotate(45deg);
}
.article-faq details p {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin: 0;
  padding-top: 0.25rem;
}

/* ── Related articles ── */
.related-articles {
  margin: var(--space-6) 0;
  padding-top: var(--space-4);
  border-top: 2px solid var(--green-200);
}
.related-articles h2 {
  margin-bottom: var(--space-3);
  padding: 0 !important;
  border: none !important;
}
.related-articles ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.related-articles li::marker { display: none; }
.related-articles a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-900);
  text-decoration: underline;
  text-decoration-color: var(--green-300);
}
.related-articles a:hover {
  color: var(--navy-400);
  text-decoration-color: var(--navy-400);
}

/* ── References ── */
.references {
  margin: var(--space-6) 0 var(--space-8);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(0,0,0,0.08);
}
.references h2 {
  font-size: 0.85rem !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3) !important;
  padding: 0 !important;
  border: none !important;
}
.references ol {
  list-style: decimal;
  padding-left: 1.25rem;
  margin: 0;
}
.references li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.references em { font-style: italic; }
.references a { color: var(--green-900); }

/* ── Smooth scroll — needed since main.js handles anchor clicks,
   but we also add it at CSS level as a fallback ── */
html { scroll-behavior: smooth; }

/* ── Blog article responsive ── */
@media (max-width: 768px) {
  .blog-article { padding-top: 70px; }
  .blog-container { padding: 0 var(--space-3); }
  .article-cta { padding: var(--space-5) var(--space-4); }
  .article-cta h2 { font-size: 1.3rem; }
  .about-author { padding: var(--space-4); }
  .toc-container { padding: var(--space-3) var(--space-4); }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { width: 100%; text-align: center; }
  .breakout-quote { font-size: 1.05rem; padding: var(--space-3) var(--space-4); }
}

@media (max-width: 480px) {
  .article-header h1 { font-size: 1.65rem; }
}

/* ─── 8. Utilities ─── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-3);
  background: var(--navy-400);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 200;
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  color: #fff;
}


/* ─── 9. Responsive ─── */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-image-clip { clip-path: none; }
  .about-preview-grid { grid-template-columns: 1fr; }
  .about-preview-grid { padding: 1.5rem; }
  .about-preview-img { max-width: 400px; margin: 0 auto; }
  .card-split { grid-template-columns: 1fr; }
  .card-split-img { min-height: 250px; }
  .card-split-img img { border-radius: 0 0 var(--radius-xl) var(--radius-xl); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-img-wrap { max-width: 380px; margin: 0 auto; }
  .story-grid,
  .story-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .resource-pillars { grid-template-columns: 1fr; }
  .resource-landing-grid { grid-template-columns: 1fr; }
  .resource-download-card { position: static; }
  .resource-related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav-toggle { display: block; }
  #main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--navy-600);
    padding: var(--space-9) var(--space-5) var(--space-5);
    transition: right 0.3s ease;
    z-index: 105;
    overflow-y: auto;
  }
  #main-nav.nav-open { right: 0; }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-1);
  }
  .nav-list li a {
    margin-left: 0;
    padding: var(--space-2) 0;
    font-size: 1.2rem;
    border: none;
  }
  .nav-list .nav-cta a {
    margin-left: 0;
    margin-top: var(--space-3);
  }
  .nav-list .nav-lang a { margin-left: 0; margin-top: var(--space-2); }

  /* Sections */
  .section-padded { padding: var(--space-7) 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  /* Hero */
  .hero { min-height: auto; padding-top: 100px; }
  .page-hero { padding: 130px 0 80px; }
  .about-hero { padding: 120px 0 60px; }

  /* IFS FAQs page */
  .video-grid { grid-template-columns: 1fr; }
  .video-section { background-attachment: scroll; }
  .cta-banner { background-attachment: scroll; }
  .faq-section { padding: 60px 0; }

  /* Individual Therapy page */
  .hero-section { min-height: 60vh; padding-top: 100px; }
  .parallax-cta { background-attachment: scroll; }
  .details-card { padding: 1.5rem; }

  /* Services & Fees page */
  .sf-hub .hub-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .sf-parallax { background-attachment: scroll; min-height: 260px; }

  /* Resources page */
  .resources-intro { padding: 75px 0 65px; }
  .resources-library { padding: 65px 0 75px; }
  .resource-pillar { padding: 1.4rem; }
  .rl-cat-header { align-items: flex-start; flex-wrap: wrap; }
  .rl-cat-count { margin-left: 0; }
  .rl-card-header { padding: 0.85rem 1rem; }
  .rl-card-body { padding: 0.85rem 1rem 1rem; }
  #rl-gate-modal { padding: 1.5rem 1.25rem 1.25rem; }
  .resource-landing-intro { padding: 70px 0; }
  .resource-section { padding: 65px 0; }
  .resource-download-card { padding: 1.4rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-5); }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .about-cta-actions { flex-direction: column; align-items: center; }
  .resources-cta-actions { flex-direction: column; align-items: center; }
  .resources-cta-actions .btn { width: 100%; max-width: 320px; }
  .resource-cta-actions { flex-direction: column; align-items: center; }
  .resource-cta-actions .btn { width: 100%; max-width: 320px; }
}
