/*
 * Capital Senior — single theme stylesheet (all templates + Elementor class names).
 * Do not split page-only bundles: section patterns stay here so copied containers match everywhere.
 */


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

:root {
  --forest: #2B5045;
  --forest-light: #3A6B5D;
  --forest-pale: #EBF2EF;
  --forest-mid: #C2D9D2;
  --sand: #F5F0E8;
  --sand-dark: #E8E0D0;
  --ink: #18211E;
  --ink-mid: #374740;
  --ink-light: #556560;
  --warm-white: #FDFAF6;
  --contact-panel: #FDF9F3;
  --accent: #C17F3A;
  --accent-pale: #F5ECD8;
  --serif: 'Lora', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 10px;
  --radius-value-card: 16px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-weight: 400;
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand-dark);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--forest);
}

.nav-cta {
  background: var(--forest) !important;
  color: var(--warm-white) !important;
  padding: 11px 24px;
  border-radius: var(--radius);
}

.nav-cta:hover { background: var(--forest-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--forest);
  border-radius: var(--radius);
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

nav.mobile-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

nav.mobile-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

nav.mobile-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-mobile-open {
  overflow: hidden;
}

footer {
  background: var(--ink);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 10px;
}

.footer-brand-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 16px;
}

.footer-col > a,
.footer-col p {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin: 0 0 10px;
}

.footer-col > a:hover { color: var(--warm-white); }

.footer-col p a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-col p a:hover { color: var(--warm-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {
  /* backdrop-filter creates a containing block; without this, fixed .nav-links is clipped to nav height */
  nav {
    padding: 0 24px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 32px;
    margin: 0;
    background: rgba(253, 250, 246, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sand-dark);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
  }
  nav.mobile-open .nav-links {
    display: flex;
  }
  .nav-links li {
    list-style: none;
    border-bottom: 1px solid var(--sand-dark);
  }
  .nav-links li:last-child {
    border-bottom: none;
    margin-top: 8px;
    padding-top: 8px;
  }
  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
  }
  .nav-links .nav-cta {
    text-align: center;
    padding: 14px 24px;
  }
  .container { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* ── Shared utilities & sections (formerly home / what-we-do / who-we-are / contact / components / block) ── */

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 68px;
  }

  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 60px 80px 72px;
    background: var(--warm-white);
  }

  .hero-eyebrow {
    font-size: 13px; font-weight: 500; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 28px; height: 1px;
    background: var(--accent);
  }

  .hero-h1 {
    font-family: var(--serif);
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 24px;
  }

  .hero-h1 em {
    font-style: italic; color: var(--forest);
  }

  .hero-body {
    font-size: 18px; color: var(--ink-mid); line-height: 1.85;
    max-width: 440px; margin-bottom: 40px;
  }

  .hero-actions {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-block;
    background: var(--forest); color: var(--warm-white);
    font-family: var(--sans); font-size: 16px; font-weight: 500;
    letter-spacing: 0.04em; text-transform: uppercase;
    padding: 16px 36px; border-radius: var(--radius);
    text-decoration: none; border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--forest-light); transform: translateY(-1px); }

  .btn-ghost {
    font-size: 16px; font-weight: 400; color: var(--ink-mid);
    text-decoration: none; letter-spacing: 0.02em;
    border-bottom: 1px solid var(--sand-dark);
    padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--forest); border-color: var(--forest); }

  .hero-trust {
    margin-top: 48px;
    display: flex; flex-direction: column; gap: 10px;
  }

  .trust-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 16px; color: var(--ink-light); font-weight: 400;
  }

  .trust-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--forest-mid); flex-shrink: 0;
  }

  .hero-right {
    position: relative; overflow: hidden;
    background: var(--forest);
  }

  .hero-img {
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.75;
    display: block;
  }

  .hero-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(43,80,69,0.6) 0%, rgba(43,80,69,0.1) 60%);
  }

  .hero-quote {
    position: absolute; bottom: 48px; left: 40px; right: 40px;
    background: rgba(253,250,246,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(253,250,246,0.2);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
  }

  .hero-quote p {
    font-family: var(--serif);
    font-style: italic; font-size: 21px; font-weight: 400;
    color: var(--warm-white); line-height: 1.55; margin-bottom: 12px;
  }

  .hero-quote span {
    font-size: 14px; font-weight: 400; letter-spacing: 0.06em;
    text-transform: uppercase; color: rgba(253,250,246,0.65);
  }

  /* ── SECTION SHARED ── */
  section { width: 100%; }

  .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 48px;
  }

  .section-label {
    font-size: 13px; font-weight: 500; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before {
    content: ''; display: block; width: 24px; height: 1px;
    background: var(--accent);
  }

  .section-h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 600; line-height: 1.2;
    color: var(--ink); margin-bottom: 16px;
  }

  .section-h2 em { font-style: italic; color: var(--forest); }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-pale);
    border: 1px solid rgba(193, 127, 58, 0.25);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
  }

  .pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
  }

  .section-intro {
    font-size: 18px; color: var(--ink-mid); max-width: 540px;
    line-height: 1.85; margin-bottom: 56px;
  }

  /* ── PAIN SECTION ── */
  .pain-section {
    padding: 100px 0;
    background: var(--sand);
  }

  .pain-section .container {
    max-width: 1320px;
  }

  .pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
  }

  .pain-section .reveal {
    width: 100%;
    max-width: none;
  }

  .pain-section .section-h2,
  .pain-section p {
    max-width: none;
  }

  .pain-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 20px;
    margin-bottom: 36px;
  }

  .pain-list li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 17px; color: var(--ink-mid); line-height: 1.7;
  }

  .pain-icon {
    width: 22px; height: 22px; flex-shrink: 0;
    border-radius: 50%;
    background: var(--forest-pale);
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
  }

  .pain-icon svg { width: 11px; height: 11px; fill: none; stroke: var(--forest); stroke-width: 2; stroke-linecap: round; }

  .pain-callout {
    padding: 28px 32px;
    background: var(--forest);
    border-radius: var(--radius-lg);
    color: var(--warm-white);
  }

  .pain-callout p {
    font-family: var(--serif);
    font-size: 24px; font-weight: 400; font-style: italic;
    line-height: 1.55; margin-bottom: 14px;
  }

  .pain-callout span {
    font-size: 15px; font-weight: 400; color: var(--forest-mid);
    letter-spacing: 0.02em;
  }

  /* ── STEPS ── */
  .steps-section {
    padding: 100px 0;
    background: var(--warm-white);
  }

  .steps-section .steps-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
  }

  .steps-section .steps-sticky {
    position: sticky; top: 100px;
  }

  .steps-section .steps-rail {
    display: flex; flex-direction: column; gap: 0;
  }

  .steps-section .step-row {
    display: flex; align-items: stretch; gap: 0; cursor: pointer;
  }

  .steps-section .step-spine {
    display: flex; flex-direction: column; align-items: center;
    width: 52px; flex-shrink: 0;
  }

  .steps-section .step-num {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--warm-white);
    border: 1.5px solid var(--sand-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 400; color: var(--ink-light);
    flex-shrink: 0; z-index: 1;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
    font-family: var(--serif); font-size: 15px;
  }

  .steps-section .step-row.active .step-num {
    background: var(--forest); border-color: var(--forest);
    color: var(--warm-white); font-weight: 500;
  }

  .steps-section .step-connector {
    width: 1px; flex: 1;
    background: var(--sand-dark);
    margin: 4px 0;
    min-height: 20px;
  }

  .steps-section .step-connector.last { opacity: 0; }

  .steps-section .step-card {
    flex: 1;
    padding: 18px 20px 22px;
    margin: 0 0 4px 16px;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: border-color 0.25s, background 0.25s;
  }

  .steps-section .step-row.active .step-card {
    background: var(--forest-pale);
    border-color: var(--forest-mid);
  }

  .steps-section .step-tag {
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 500; color: var(--ink-light); margin-bottom: 4px;
    transition: color 0.25s;
  }

  .steps-section .step-row.active .step-tag { color: var(--forest); }

  .steps-section .step-title {
    font-family: var(--serif); font-size: 22px; font-weight: 600;
    color: var(--ink); margin-bottom: 8px; line-height: 1.3;
  }

  .steps-section .step-desc {
    font-size: 16px; color: var(--ink-mid); line-height: 1.8;
  }

  .steps-section .step-badge {
    display: inline-block; margin-top: 12px;
    font-size: 13px; font-weight: 400; letter-spacing: 0.03em;
    background: var(--forest-mid); color: var(--forest);
    padding: 4px 12px; border-radius: 20px;
    transition: background 0.25s;
  }

  .steps-section .step-row.active .step-badge {
    background: var(--forest); color: var(--warm-white);
  }
  /* ── COMPARISON ── */
  .compare-section {
    padding: 100px 0;
    background: var(--sand);
  }

  .compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .compare-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .compare-header {
    padding: 20px 28px 18px;
    display: flex; align-items: center; gap: 12px;
  }

  .compare-card.typical .compare-header {
    background: var(--sand-dark);
  }

  .compare-card.ours .compare-header {
    background: var(--forest);
  }

  .compare-icon {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .compare-card.typical .compare-icon {
    background: rgba(108,120,115,0.18);
  }
  .compare-card.ours .compare-icon {
    background: rgba(255,255,255,0.15);
  }

  .compare-icon svg { width: 16px; height: 16px; }

  .compare-header h3 {
    font-family: var(--serif);
    font-size: 20px; font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
  }

  .compare-card.ours .compare-header h3 { color: var(--warm-white); }

  .compare-body {
    padding: 8px 0;
    background: var(--warm-white);
    border: 1px solid var(--sand-dark);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .compare-card.ours .compare-body {
    background: var(--forest-pale);
    border-color: var(--forest-mid);
  }

  .compare-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px 28px;
    border-bottom: 1px solid var(--sand-dark);
    font-size: 16px; color: var(--ink-mid); line-height: 1.6;
  }

  .compare-card.ours .compare-item {
    border-bottom-color: var(--forest-mid);
    color: var(--ink);
  }

  .compare-item:last-child { border-bottom: none; }

  .cmp-dot {
    width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
  }

  .compare-card.typical .cmp-dot {
    background: #E8E0D0;
  }

  .compare-card.ours .cmp-dot {
    background: var(--forest);
  }

  .cmp-dot svg { width: 10px; height: 10px; }

  /* ── FAMILY SECTION (home: dark band + .family-left) ── */
  .family-section:has(.family-left) {
    padding: 100px 0;
    background: var(--forest);
  }

  .family-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .family-left .section-label::before { background: var(--forest-mid); }
  .family-left .section-label { color: var(--forest-mid); }
  .family-left .section-pill {
    background: rgba(235,242,239,0.08);
    border-color: rgba(194,217,210,0.35);
    color: var(--forest-mid);
  }
  .family-left .section-pill-dot {
    background: var(--forest-mid);
  }

  .family-left .section-h2 { color: var(--warm-white); }
  .family-left .section-h2 em { color: var(--forest-mid); }

  .family-left p {
    font-size: 17px; color: rgba(235,242,239,0.85); line-height: 1.85;
    margin-bottom: 32px;
  }

  .family-points {
    list-style: none;
    display: flex; flex-direction: column; gap: 16px;
    margin-bottom: 40px;
  }

  .family-points li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 17px; color: var(--forest-pale); line-height: 1.7;
  }

  .family-check {
    width: 20px; height: 20px; flex-shrink: 0;
    border-radius: 50%; background: rgba(255,255,255,0.1);
    border: 1px solid var(--forest-mid);
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
  }

  .family-check svg { width: 10px; height: 10px; stroke: var(--forest-mid); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

  .btn-light {
    display: inline-block;
    background: var(--warm-white); color: var(--forest);
    font-size: 16px; font-weight: 500; letter-spacing: 0.04em;
    text-transform: uppercase; padding: 16px 36px;
    border-radius: var(--radius); text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-light:hover { background: var(--forest-pale); transform: translateY(-1px); }

  .family-image-wrap {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/5;
  }

  .family-image-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; opacity: 0.85;
  }

  .family-image-wrap > img[src^="data:image"] {
    display: none;
  }

  .photo-banner > img[src^="data:image"] {
    display: none;
  }

  .family-stat {
    position: absolute; bottom: 28px; left: 28px;
    background: rgba(43,80,69,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(194,217,210,0.25);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
  }

  .family-stat-num {
    font-family: var(--serif);
    font-size: 34px; font-weight: 500;
    color: var(--warm-white); line-height: 1;
    margin-bottom: 4px;
  }

  .family-stat-label {
    font-size: 14px; color: var(--forest-mid);
    letter-spacing: 0.05em; text-transform: uppercase;
  }

  /* ── CTA / CONTACT ── */
  .cta-section {
    padding: 100px 0;
    background: var(--warm-white);
  }

  .cta-inner {
    background: var(--sand);
    border-radius: 16px;
    padding: 72px 80px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
  }

  .cta-inner .section-h2 { margin-bottom: 12px; }

  .cta-inner p {
    font-size: 17px; color: var(--ink-mid);
    line-height: 1.85; margin-bottom: 0;
  }

  .cta-form {
    display: flex; flex-direction: column; gap: 14px;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .form-input {
    width: 100%;
    background: var(--warm-white);
    border: 1px solid var(--sand-dark);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-family: var(--sans); font-size: 17px; font-weight: 400;
    color: var(--ink); outline: none;
    transition: border-color 0.2s;
  }

  .form-input:focus { border-color: var(--forest); }
  .form-input::placeholder { color: var(--ink-light); }

  textarea.form-input { resize: vertical; min-height: 110px; }

  .form-submit {
    background: var(--forest); color: var(--warm-white);
    border: none; border-radius: var(--radius);
    padding: 16px 28px; font-family: var(--sans);
    font-size: 16px; font-weight: 500; letter-spacing: 0.05em;
    text-transform: uppercase; cursor: pointer;
    transition: background 0.2s; width: 100%;
  }

  .form-submit:hover { background: var(--forest-light); }

  .form-note {
    font-size: 14px; color: var(--ink-light); text-align: center;
    line-height: 1.5;
  }

  /* ── FADE-IN ANIMATION ── */
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { min-height: 320px; }
    .hero-left { padding: 60px 28px; }
    .pain-grid, .family-grid, .compare-grid { grid-template-columns: 1fr; }
    .steps-layout { grid-template-columns: 1fr; }
    .steps-sticky { position: static; }
    .process-section .process-layout { grid-template-columns: 1fr; }
    .process-section .process-sticky { position: static; }
    .page-hero:not(:has(.page-hero-media)) .page-hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 56px 24px; }
    .page-hero:not(:has(.page-hero-media)) .hero-img-wrap { height: 280px; }
    .cta-inner { grid-template-columns: 1fr; padding: 48px 36px; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .container { padding: 0 24px; }
  }

  @media (max-width: 900px) {
    .photo-strip-grid { grid-template-columns: 1fr !important; height: auto !important; }
    .photo-strip-grid > div { height: 240px; }
    .photo-banner-inner { padding: 0 28px !important; }
    .photo-banner-inner p { font-size: 22px !important; }
  }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--forest);
    padding: 0;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide-color: rgba(255,255,255,0.12);
  }
  .stat-cell {
    padding: 32px 28px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.12);
  }
  .stat-cell:last-child { border-right: none; }
  .stat-num {
    font-family: var(--serif);
    font-size: 40px; font-weight: 600;
    color: var(--warm-white); line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 14px; color: rgba(255,255,255,0.65);
    font-weight: 400; line-height: 1.4;
  }

  /* ── SECTION INTRO PILL ── */
  .section-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-pale);
    border: 1px solid rgba(193,127,58,0.25);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 18px;
  }
  .section-pill-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0;
  }

  /* ── SCANNABLE CALLOUT BAND ── */
  .callout-band {
    background: var(--sand);
    padding: 56px 0;
    border-top: 1px solid var(--sand-dark);
    border-bottom: 1px solid var(--sand-dark);
  }
  .callout-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .callout-item {
    padding: 8px 40px;
    border-right: 1px solid var(--sand-dark);
    text-align: center;
  }
  .callout-item:last-child { border-right: none; }
  .callout-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--forest-pale);
    border: 1px solid var(--forest-mid);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
  }
  .callout-icon svg { width: 22px; height: 22px; stroke: var(--forest); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .callout-item-title {
    font-family: var(--serif);
    font-size: 19px; font-weight: 600;
    color: var(--ink); margin-bottom: 6px; line-height: 1.3;
  }
  .callout-item-desc {
    font-size: 15px; color: var(--ink-mid); line-height: 1.65;
  }

  /* ── SKIMMABLE SECTION DIVIDER ── */
  .section-divider {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 48px;
  }
  .section-divider-line {
    flex: 1; height: 1px; background: var(--sand-dark);
  }
  .section-divider-text {
    font-size: 12px; font-weight: 500; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--ink-light);
    white-space: nowrap;
  }

  /* ── HIGHLIGHT CARDS (Pain points as scannable cards) ── */
  .concern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 36px;
  }
  .concern-card {
    background: var(--warm-white);
    border: 1px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    display: flex; align-items: flex-start; gap: 14px;
  }
  .concern-num {
    font-family: var(--serif);
    font-size: 28px; font-weight: 600; font-style: italic;
    color: var(--forest-mid); line-height: 1; flex-shrink: 0;
    width: 32px; text-align: right;
  }
  .concern-text {
    font-size: 15px; color: var(--ink-mid); line-height: 1.6; padding-top: 4px;
  }

  @media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-cell { border-bottom: 1px solid rgba(255,255,255,0.12); }
    .callout-items { grid-template-columns: 1fr; gap: 32px; }
    .callout-item { border-right: none; border-bottom: 1px solid var(--sand-dark); padding-bottom: 32px; }
    .callout-item:last-child { border-bottom: none; }
    .concern-grid { grid-template-columns: 1fr; }
  }


  /* ── PAGE HERO (What We Do: no photo layer) ── */
  .page-hero:not(:has(.page-hero-media)) {
    padding-top: 68px;
    background: var(--forest) !important;
    background-color: var(--forest) !important;
    min-height: 400px; display: flex; align-items: center; position: relative; overflow: hidden;
  }
  .page-hero:not(:has(.page-hero-media))::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(ellipse at 75% 50%, rgba(194,217,210,0.13) 0%, transparent 65%);
  }
  .page-hero:not(:has(.page-hero-media)) .page-hero-inner { max-width: 1120px; margin: 0 auto; padding: 80px 48px; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .page-breadcrumb { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest-mid); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
  .page-breadcrumb a { color: var(--forest-mid); text-decoration: none; transition: color 0.2s; }
  .page-breadcrumb a:hover { color: var(--warm-white); }
  .page-breadcrumb span { opacity: 0.4; }
  .page-hero:not(:has(.page-hero-media)) h1 { font-family: var(--serif); font-size: clamp(36px, 4vw, 54px); font-weight: 600; color: var(--warm-white) !important; line-height: 1.15; margin-bottom: 20px; }
  .page-hero:not(:has(.page-hero-media)) h1 em { font-style: italic; color: var(--forest-mid) !important; }
  .page-hero:not(:has(.page-hero-media)) .page-hero-sub { font-size: 17px; color: rgba(235,242,239,0.8); line-height: 1.75; margin-bottom: 32px; max-width: 460px; }
  .page-hero:not(:has(.page-hero-media)) .btn-light { font-size: 15px; padding: 13px 28px; letter-spacing: 0.04em; }
  .hero-img-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 380px; }
  .hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
  .hero-img-wrap > img[src^="data:image"] { display: none; }

  /* ── PHILOSOPHY ── */
  .philosophy-section { padding: 96px 0 100px; background: var(--warm-white); }
  .philosophy-inner { max-width: 980px; margin: 0 auto; text-align: center; }
  .philosophy-inner .pill { margin-bottom: 20px; }
  .philosophy-inner h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 600; line-height: 1.2; color: var(--ink); margin-bottom: 36px; }
  .philosophy-inner h2 em { font-style: italic; color: var(--forest); }
  .philosophy-body p { font-size: 18px; color: var(--ink-mid); line-height: 1.9; margin-bottom: 18px; }
  .philosophy-body p:last-child { margin-bottom: 0; }
  .philosophy-body .emphasis { font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--ink); line-height: 1.5; }

  /* ── PROCESS ── */
  .process-section { padding: 96px 0; background: var(--sand); }
  .process-section .process-header { margin-bottom: 64px; }
  .process-section .process-layout { display: grid; grid-template-columns: 300px 1fr; gap: 80px; align-items: start; }
  .process-section .process-sticky { position: sticky; top: 96px; }
  .process-section .process-sticky h2 { margin-bottom: 16px; }
  .process-section .process-sticky p { font-size: 16px; color: var(--ink-mid); line-height: 1.8; }

  .process-section .steps-rail { display: flex; flex-direction: column; }
  .process-section .step-row { display: flex; align-items: stretch; cursor: pointer; }
  .process-section .step-spine { display: flex; flex-direction: column; align-items: center; width: 52px; flex-shrink: 0; }
  .process-section .step-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--warm-white); border: 1.5px solid var(--sand-dark);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 16px; font-weight: 600;
    color: var(--ink-light); flex-shrink: 0; z-index: 1;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
  }
  .process-section .step-row.active .step-num { background: var(--forest); border-color: var(--forest); color: var(--warm-white); }
  .process-section .step-connector { width: 1px; flex: 1; background: var(--sand-dark); margin: 4px 0; min-height: 20px; }
  .process-section .step-connector.last { opacity: 0; }
  .process-section .step-card {
    flex: 1; padding: 20px 22px 24px; margin: 0 0 4px 16px;
    border-radius: var(--radius-lg); border: 1px solid transparent;
    transition: border-color 0.25s, background 0.25s;
  }
  .process-section .step-row.active .step-card { background: var(--warm-white); border-color: var(--forest-mid); }
  .process-section .step-tag { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; color: var(--ink-light); margin-bottom: 4px; transition: color 0.25s; }
  .process-section .step-row.active .step-tag { color: var(--forest); }
  .process-section .step-title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
  .process-section .step-lead { font-size: 16px; color: var(--ink-mid); line-height: 1.75; margin-bottom: 14px; font-style: italic; }
  .process-section .step-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .process-section .step-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink-mid); line-height: 1.6; }
  .process-section .step-bullet-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--forest-mid); flex-shrink: 0; margin-top: 8px; }
  .process-section .step-badge { display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 400; background: var(--forest-mid); color: var(--forest); padding: 4px 12px; border-radius: 20px; transition: background 0.25s; }
  .process-section .step-row.active .step-badge { background: var(--forest); color: var(--warm-white); }

  /* ── COMPARISON ── */
  .compare-section { padding: 96px 0; background: var(--sand); }
  .compare-header { margin-bottom: 56px; }
  .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
  .compare-card { border-radius: var(--radius-lg); overflow: hidden; }
  .compare-head {
    padding: 22px 30px; display: flex; align-items: center; gap: 14px;
  }
  .compare-card.typical .compare-head { background: var(--sand-dark); }
  .compare-card.ours .compare-head { background: var(--forest); }
  .compare-head-icon { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .compare-card.typical .compare-head-icon { background: rgba(108,120,115,0.18); }
  .compare-card.ours .compare-head-icon { background: rgba(255,255,255,0.15); }
  .compare-head-icon svg { width: 17px; height: 17px; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
  .compare-card.typical .compare-head-icon svg { stroke: var(--ink-light); }
  .compare-card.ours .compare-head-icon svg { stroke: var(--warm-white); }
  .compare-head h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1.2; }
  .compare-card.typical .compare-head h3 { color: var(--ink); }
  .compare-card.ours .compare-head h3 { color: var(--warm-white); }
  .compare-body { border: 1px solid var(--sand-dark); border-top: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .compare-card.ours .compare-body { background: var(--forest-pale); border-color: var(--forest-mid); }
  .compare-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px 28px; border-bottom: 1px solid var(--sand-dark); font-size: 16px; color: var(--ink-mid); line-height: 1.55; }
  .compare-card.ours .compare-item { border-bottom-color: var(--forest-mid); color: var(--ink); }
  .compare-item:last-child { border-bottom: none; }
  .cmp-dot { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; }
  .compare-card.typical .cmp-dot { background: var(--sand-dark); }
  .compare-card.ours .cmp-dot { background: var(--forest); }
  .cmp-dot svg { width: 10px; height: 10px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .compare-card.typical .cmp-dot svg { stroke: var(--ink-light); }
  .compare-card.ours .cmp-dot svg { stroke: var(--warm-white); }
  .compare-statement {
    text-align: center;
    padding: 40px 48px;
    background: var(--forest);
    border-radius: 16px;
    overflow: hidden;
  }
  .compare-statement p { font-family: var(--serif); font-size: 24px; font-weight: 400; font-style: italic; color: var(--warm-white); line-height: 1.5; margin: 0; }
  .compare-statement p strong { font-style: normal; font-weight: 600; color: var(--forest-mid); }

  /* ── FAMILY SUPPORT (What We Do: .family-body) ── */
  .family-section:has(.family-body) { padding: 96px 0; background: var(--warm-white); }
  .family-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .family-body p { font-size: 17px; color: var(--ink-mid); line-height: 1.85; margin-bottom: 28px; }
  .family-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
  .family-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--ink-mid); line-height: 1.65; }
  .family-check { width: 22px; height: 22px; border-radius: 50%; background: var(--forest-pale); border: 1px solid var(--forest-mid); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
  .family-check svg { width: 11px; height: 11px; stroke: var(--forest); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
  .family-closing { font-family: var(--serif); font-size: 21px; font-style: italic; color: var(--forest); line-height: 1.45; }
  .family-img-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
  .family-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
  .family-img-wrap > img[src^="data:image"] { display: none; }


  /* ── FINAL CTA ── */
  .final-cta { padding: 96px 0; background: var(--forest); position: relative; overflow: hidden; }
  .final-cta::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(ellipse at 30% 50%, rgba(194,217,210,0.1) 0%, transparent 60%);
  }
  .final-cta-inner { text-align: center; position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
  .final-cta h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 600; color: var(--warm-white); line-height: 1.2; margin-bottom: 16px; }
  .final-cta h2 em { font-style: italic; color: var(--forest-mid); }
  .final-cta p { font-size: 17px; color: rgba(235,242,239,0.78); line-height: 1.8; margin-bottom: 36px; }

  /* PAGE HERO (Who We Are: photo underlay) */
  .page-hero:has(.page-hero-media) {
    padding-top: 68px;
    background: var(--forest);
    min-height: 380px;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
  }
  .page-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .page-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
  }
  .page-hero:has(.page-hero-media)::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(24,33,30,0.62) 0%, rgba(24,33,30,0.38) 45%, rgba(24,33,30,0.24) 100%);
    z-index: 1;
  }
  .page-hero:has(.page-hero-media) .page-hero-inner {
    max-width: 1120px; margin: 0 auto; padding: 72px 48px;
    position: relative; z-index: 1;
  }
  .page-breadcrumb {
    font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--forest-mid); margin-bottom: 20px;
    display: flex; align-items: center; gap: 8px;
  }
  .page-breadcrumb a { color: var(--forest-mid); text-decoration: none; transition: color 0.2s; }
  .page-breadcrumb a:hover { color: var(--warm-white); }
  .page-breadcrumb span { opacity: 0.4; }
  .page-hero:has(.page-hero-media) h1 {
    font-family: var(--serif); font-size: clamp(38px, 4vw, 56px); font-weight: 600;
    color: var(--warm-white); line-height: 1.15; max-width: 600px;
  }
  .page-hero:has(.page-hero-media) h1 em { font-style: italic; color: var(--forest-mid); }

  /* MISSION SECTION */
  .mission-section { padding: 96px 0 80px; background: var(--warm-white); }
  .mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .mission-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-pale); border: 1px solid rgba(193,127,58,0.25);
    border-radius: 30px; padding: 6px 16px;
    font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
  }
  .mission-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  .mission-h2 { font-family: var(--serif); font-size: clamp(30px, 3vw, 42px); font-weight: 600; line-height: 1.2; color: var(--ink); margin-bottom: 24px; }
  .mission-h2 em { font-style: italic; color: var(--forest); }
  .mission-body p { font-size: 17px; color: var(--ink-mid); line-height: 1.85; margin-bottom: 20px; }
  .mission-body p:last-child { margin-bottom: 0; }

  /* PUZZLE ACCENT */
  .puzzle-accent {
    background: var(--forest);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    position: sticky; top: 96px;
  }
  .puzzle-icon { width: 52px; height: 52px; margin-bottom: 20px; }
  .puzzle-accent blockquote {
    font-family: var(--serif); font-size: 22px; font-weight: 400; font-style: italic;
    color: var(--warm-white); line-height: 1.55; margin-bottom: 20px;
  }
  .puzzle-accent p {
    font-size: 15px; color: rgba(194,217,210,0.8); line-height: 1.7;
  }
  .puzzle-divider { width: 40px; height: 2px; background: var(--forest-mid); margin: 20px 0; }

  /* VALUES ROW */
  .values-section { padding: 0 0 96px; background: var(--warm-white); }
  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .value-card {
    background: var(--sand);
    border-radius: var(--radius-value-card);
    border: 1px solid var(--sand-dark);
    padding: 32px 28px;
    text-align: center;
  }
  .value-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--forest-pale); border: 1px solid var(--forest-mid); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
  .value-icon svg { width: 20px; height: 20px; stroke: var(--forest); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .value-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 0; line-height: 1.3; }
  .value-desc { font-size: 15px; color: var(--ink-mid); line-height: 1.7; }

  /* DIVIDER */
  .section-rule {
    border: none;
    border-top: 1px solid var(--sand-dark);
    margin: 0;
    height: 0;
    overflow: visible;
  }

  /* TEAM SECTION */
  .team-section { padding: 96px 0; background: var(--sand); }
  .team-header { text-align: center; margin-bottom: 64px; }
  .team-header .mission-pill { margin-bottom: 16px; }
  .team-header h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 600; color: var(--ink); line-height: 1.2; }
  .team-header h2 em { font-style: italic; color: var(--forest); }
  .team-header p { font-size: 17px; color: var(--ink-mid); max-width: 500px; margin: 14px auto 0; line-height: 1.75; }

  /* TEAM MEMBER CARD */
  .team-card {
    display: grid; grid-template-columns: 280px 1fr;
    gap: 0; background: var(--warm-white);
    border: 1px solid var(--sand-dark); border-radius: var(--radius-lg);
    overflow: hidden; margin-bottom: 32px;
  }
  .team-card:last-child { margin-bottom: 0; }
  .team-photo-col {
    /* background: var(--forest-pale); */
    position: relative; overflow: hidden;
    min-height: 340px;
  }
  .team-photo-col img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
  }
  .team-photo-placeholder {
    width: 100%; height: 100%; min-height: 340px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
    background: var(--forest-pale);
  }
  .team-avatar {
    width: 96px; height: 96px; border-radius: 50%;
    background: var(--forest-mid); display: flex; align-items: center; justify-content: center;
  }
  .team-avatar svg { width: 48px; height: 48px; stroke: var(--forest); fill: none; stroke-width: 1.2; }
  .team-photo-placeholder span { font-size: 13px; color: var(--ink-light); font-style: italic; }

  .team-info-col { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
  .team-name { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--ink); margin-bottom: 4px; line-height: 1.2; }
  .team-role {
    font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 24px;
  }
  .team-bio { font-size: 16px; color: var(--ink-mid); line-height: 1.85; margin-bottom: 24px; }
  .team-quote {
    border-left: 3px solid var(--forest-mid); padding-left: 20px;
    font-family: var(--serif); font-style: italic; font-size: 18px;
    color: var(--ink); line-height: 1.6;
  }

  /* CTA BAND */
  .cta-band { background: var(--forest); padding: 72px 0; }
  .cta-band-inner { text-align: center; }
  .cta-band h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); font-weight: 600; color: var(--warm-white); margin-bottom: 14px; line-height: 1.2; }
  .cta-band h2 em { font-style: italic; color: var(--forest-mid); }
  .cta-band p { font-size: 17px; color: rgba(235,242,239,0.75); margin-bottom: 32px; }
  .btn-light { display: inline-block; background: var(--warm-white); color: var(--forest); font-size: 16px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; padding: 16px 36px; border-radius: var(--radius); text-decoration: none; transition: background 0.2s; }
  .btn-light:hover { background: var(--forest-pale); }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; } .reveal-delay-2 { transition-delay: 0.2s; } .reveal-delay-3 { transition-delay: 0.3s; }

  @media (max-width: 900px) {
    .page-hero-inner, .container { padding-left: 24px; padding-right: 24px; }
    .mission-grid { grid-template-columns: 1fr; gap: 40px; }
    .puzzle-accent { position: static; }
    .puzzle-accent blockquote { display: none; }
    .values-grid { grid-template-columns: 1fr; }
    .team-card { grid-template-columns: 1fr; }
    .team-photo-col { min-height: 260px; }
    .team-info-col { padding: 28px 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }


  /* MAIN LAYOUT — two columns (`.page-wrap`); Elementor contact overrides in elementor-theme.css */
  .page-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    width: 100%;
    min-height: 100vh;
    padding-top: 68px;
    box-sizing: border-box;
  }

  .contact-photo,
  .contact-info {
    min-width: 0;
  }

  /* LEFT — PHOTO: full cell height; img + overlay + tagline stacked (tagline on top for z-index) */
  .contact-photo {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 68px);
  }
  .contact-photo > img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
    display: block;
  }
  .contact-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(43,80,69,0.06) 0%, rgba(43,80,69,0.28) 100%);
    pointer-events: none;
  }
  .contact-photo-tagline {
    position: absolute;
    bottom: 48px;
    left: 44px;
    right: 44px;
    z-index: 2;
    text-align: center;
    pointer-events: none;
  }
  .contact-photo-tagline p {
    font-family: var(--serif); font-style: italic; font-size: 24px; font-weight: 400;
    color: var(--warm-white); line-height: 1.5;
    margin: 0;
    text-shadow: 0 1px 12px rgba(24, 33, 30, 0.45);
  }

  /* RIGHT — INFO */
  .contact-info {
    display: flex; flex-direction: column; justify-content: flex-start;
    padding: 80px 72px;
    background: var(--contact-panel);
  }

  .contact-breadcrumb {
    font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-light); margin-bottom: 40px;
    display: flex; align-items: center; gap: 8px;
  }
  .contact-breadcrumb a { color: var(--ink-light); text-decoration: none; transition: color 0.2s; }
  .contact-breadcrumb a:hover { color: var(--forest); }
  .contact-breadcrumb span { opacity: 0.5; }

  .contact-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-pale); border: 1px solid rgba(193,127,58,0.25);
    border-radius: 30px; padding: 6px 16px;
    font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
  }
  .contact-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

  .contact-h1 {
    font-family: var(--serif); font-size: clamp(34px, 3.5vw, 50px);
    font-weight: 600; line-height: 1.15; color: var(--ink);
    margin-bottom: 16px;
  }
  .contact-h1 em { font-style: italic; color: var(--forest); }

  .contact-subhead {
    font-size: 17px; color: var(--ink-mid); line-height: 1.8;
    margin-bottom: 56px; max-width: 400px;
  }

  /* CONTACT DETAILS */
  .contact-details {
    display: flex; flex-direction: column; gap: 18px;
    margin-bottom: 56px;
  }

  .contact-detail-item {
    display: flex; align-items: flex-start; gap: 18px;
  }
  .contact-detail-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--forest-pale); border: 1px solid var(--forest-mid);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
  }
  .contact-detail-icon svg {
    width: 22px; height: 22px; stroke: var(--forest);
    fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  }
  .contact-detail-icon svg polyline {
    stroke: var(--forest);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .contact-detail-label {
    font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--ink-light); margin-bottom: 4px;
  }
  .contact-detail-value {
    font-size: 18px; color: var(--ink); line-height: 1.55; font-weight: 400;
  }
  .contact-detail-value a {
    color: var(--forest); text-decoration: none;
    border-bottom: 1px solid var(--forest-mid);
    padding-bottom: 1px; transition: border-color 0.2s;
  }
  .contact-detail-value a:hover { border-color: var(--forest); }

  /* DIVIDER */
  .contact-divider {
    width: 100%; height: 1px; background: var(--sand-dark);
    margin-bottom: 40px;
  }

  /* CTA */
  .contact-cta-text {
    font-size: 16px; color: var(--ink-mid); line-height: 1.75;
    margin-bottom: 24px;
  }
  .btn-primary {
    display: inline-block; background: var(--forest); color: var(--warm-white);
    font-size: 16px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
    padding: 16px 36px; border-radius: var(--radius); text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--forest-light); transform: translateY(-1px); }

  /* Contact fallback: guarantee two columns inside main (avoids cascade conflicts) */
  main.capital-page-content > .page-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .d1 { transition-delay: 0.12s; } .d2 { transition-delay: 0.22s; } .d3 { transition-delay: 0.32s; }

  @media (max-width: 900px) {
    .page-wrap {
      grid-template-columns: 1fr;
    }
    main.capital-page-content > .page-wrap {
      grid-template-columns: 1fr;
    }
    .contact-photo {
      aspect-ratio: 4 / 3;
      min-height: min(340px, 85vw);
    }
    .contact-info { padding: 48px 28px; }
    .container { padding: 0 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

/* ── FAQ accordion ── */
.faq-section {
  padding: 96px 0;
  background: var(--sand);
}

.faq-header {
  max-width: 600px;
  margin-bottom: 56px;
}

.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--sand-dark);
}

.faq-item:first-child {
  border-top: 1px solid var(--sand-dark);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--forest);
}

.faq-question.open {
  color: var(--forest);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--forest-pale);
  border: 1px solid var(--forest-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}

.faq-question.open .faq-icon {
  background: var(--forest);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.faq-question.open .faq-icon svg {
  stroke: var(--warm-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
  /* Room for long copy; JS toggles .open — avoid clipping in Elementor flex layouts */
  max-height: 2000px;
}

.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.8;
  max-width: 680px;
}


.capital-options-section {
  padding: 96px 0;
  background: var(--warm-white, #FDFAF6);
}

.capital-options-section .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

.capital-options-section .options-header {
  margin-bottom: 56px;
}

.capital-options-section .section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-pale, #F5ECD8);
  border: 1px solid rgba(193, 127, 58, 0.25);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #C17F3A);
  margin-bottom: 18px;
}

.capital-options-section .section-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent, #C17F3A);
  flex-shrink: 0;
}

.capital-options-section .section-h2 {
  font-family: var(--serif, 'Lora', Georgia, serif);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink, #18211E);
  margin-bottom: 0;
}

.capital-options-section .section-h2 em {
  font-style: italic;
  color: var(--forest, #2B5045);
}

.capital-options-section .options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.capital-options-section .option-card {
  background: var(--warm-white, #FDFAF6);
  border: 1px solid var(--sand-dark, #E8E0D0);
  border-radius: 10px;
  padding: 36px 32px 38px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 20px;
  align-items: start;
}

.capital-options-section .option-card::before {
  content: "";
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--forest-pale, #EBF2EF);
  border: 1px solid var(--forest-mid, #C2D9D2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  grid-row: 1 / 3;
  margin-top: 2px;
}

.capital-options-section .option-title {
  font-family: var(--serif, 'Lora', Georgia, serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink, #18211E);
  margin-bottom: 10px;
  line-height: 1.3;
  grid-column: 2;
}

.capital-options-section .option-desc {
  font-size: 15px;
  color: var(--ink-mid, #374740);
  line-height: 1.75;
  margin: 0;
  grid-column: 2;
}

.capital-options-section .options-grid > .option-card:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232B5045' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
}

.capital-options-section .options-grid > .option-card:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232B5045' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.capital-options-section .options-grid > .option-card:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232B5045' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
}

.capital-options-section .options-grid > .option-card:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232B5045' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

@media (max-width: 900px) {
  .capital-options-section .container {
    padding: 0 24px;
  }

  .capital-options-section .options-grid {
    grid-template-columns: 1fr;
  }
}
