/* =========================================================
   The Bailey Haven — Stylesheet
   ========================================================= */

:root {
  /* Color tokens — approved brand palette */
  --cream: #F7F4EC;
  --cream-soft: #EFE8D4;
  --green: #143528;
  --green-2: #0C2017;
  --green-tint: #E7EEEA;
  --gold: #C8A96A;
  --gold-light: #D7C194;
  --ink: #2B2B2B;
  --body-text: #2B2B2B;
  --line: #DAD8D1;
  --white: #FFFFFF;

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius: 6px;
  --radius-photo: 18px;
  --shadow-photo: 0 20px 40px -22px rgba(11, 42, 28, .38);
  --shadow-photo-soft: 0 14px 28px -18px rgba(11, 42, 28, .3);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green);
  margin: 0 0 .55em;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h2 { font-size: clamp(1.45rem, 2.7vw, 1.95rem); }
h3 { font-size: 1.18rem; }

p { margin: 0 0 1em; }

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

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

ul { margin: 0; padding: 0; list-style: none; }

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

.section {
  padding: 88px 0;
}
.section--tight { padding: 60px 0; }
.section--soft { background: var(--cream-soft); }
.section--white { background: var(--white); }

.eyebrow-rule {
  display: block;
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 14px auto;
  border-radius: 2px;
}
.eyebrow-rule--left { margin: 14px 0; }

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.section-heading p { color: var(--body-text); }

.leaf-accent {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 26px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn--dark {
  background: var(--green);
  color: var(--white);
}
.btn--dark:hover { background: var(--green-2); }

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-light);
}
.btn--outline-gold:hover { background: var(--gold); color: var(--white); }

.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover { background: var(--green); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline-light:hover { background: var(--white); color: var(--green); }

/* =========================================================
   Decorative leaf sprigs (margin flourishes)
   ========================================================= */
.leaf-decor {
  position: absolute;
  width: 90px;
  opacity: .6;
  pointer-events: none;
  z-index: -1;
}
.leaf-decor--sm { width: 58px; }
.leaf-decor--lg { width: 150px; }
.leaf-decor--mirror { transform: scaleX(-1); }
.leaf-decor--tl { top: 6px; left: -6px; }
.leaf-decor--tr { top: 6px; right: -6px; }
.leaf-decor--bl { bottom: 6px; left: -6px; }
.leaf-decor--br { bottom: 6px; right: -6px; }
.leaf-decor--mid-r { top: 50%; right: -6px; transform: translateY(-50%); }
.leaf-decor--mid-r.leaf-decor--mirror { transform: translateY(-50%) scaleX(-1); }

@media (max-width: 1080px) {
  .leaf-decor { display: none; }
}

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 8px;
}
.brand img { height: 50px; width: auto; }
.brand-text .brand-eyebrow {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: block;
}
.brand-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.1;
  text-transform: uppercase;
  display: block;
  white-space: nowrap;
}
.brand-text .brand-subtag {
  display: block;
  font-size: .56rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--body-text);
  font-weight: 600;
  margin-top: 2px;
  white-space: nowrap;
}
.brand-text .brand-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .78rem;
  color: var(--gold);
  display: block;
  margin-top: 4px;
}
.brand-text .brand-ornament {
  color: var(--gold);
  font-style: normal;
  font-size: .68rem;
  letter-spacing: -.05em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.main-nav .nav-contact-mobile { display: none; }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-cta .btn { padding: 10px 20px; font-size: .82rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--green); }

@media (max-width: 980px) {
  .site-header .container { gap: 12px; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    gap: 4px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    border-top: none;
    font-size: .95rem;
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a.active { border-bottom-color: var(--line); }
  .main-nav .nav-contact-mobile { display: block; color: var(--green); font-weight: 700; }
  .nav-toggle { display: inline-flex; flex-shrink: 0; }
  /* CTA button lives in the dropdown on mobile to avoid overflow */
  .header-cta .btn { display: none; }
  .header-cta { gap: 0; }
}

@media (min-width: 981px) {
  .btn-label-short { display: none; }
}

/* Small phones: keep the logo lockup compact so it never overflows */
@media (max-width: 480px) {
  .site-header .container { padding-left: 16px; padding-right: 16px; gap: 8px; }
  .brand { gap: 8px; padding-right: 0; }
  .brand img { height: 40px; }
  .brand-text .brand-eyebrow { font-size: .55rem; }
  .brand-text .brand-name { font-size: 1.1rem; letter-spacing: .02em; }
  .brand-text .brand-subtag { font-size: .5rem; letter-spacing: .07em; }
  .brand-text .brand-tag { font-size: .66rem; }
  .nav-toggle { padding: 4px; }
  .nav-toggle svg { width: 24px; height: 24px; }
}

/* Home hero text must wrap fully inside the viewport on mobile */
@media (max-width: 600px) {
  .home-hero--photo .hero-grid { padding: 40px 0 44px; min-height: 420px; }
  .home-hero--photo .hero-copy {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-right: 8px;
  }
  .home-hero--photo .hero-copy h1 {
    font-size: 1.55rem;
    line-height: 1.2;
    overflow-wrap: break-word;
  }
  .home-hero--photo .hero-copy p { font-size: .95rem; overflow-wrap: break-word; }
  .home-hero--photo .hero-copy .btn-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .home-hero--photo .hero-copy .btn-row .btn { justify-content: center; }
}

/* =========================================================
   Hero (inner pages)
   ========================================================= */
.page-hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}
.page-hero .container {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.page-hero .hero-copy h1 { margin-bottom: 18px; }
.page-hero .hero-media {
  position: relative;
  height: 420px;
}
.page-hero .hero-media::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 24px;
  bottom: -20px;
  border: 2px solid var(--gold);
  border-radius: 999px 0 0 999px / 230px 0 0 230px;
  z-index: 0;
}
.page-hero .hero-media img,
.page-hero .hero-media .img-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px 0 0 999px / 210px 0 0 210px;
  box-shadow: var(--shadow-photo);
}
.page-hero .hero-copy .btn-row {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .page-hero .container { grid-template-columns: 1fr; }
  .page-hero .hero-media { order: -1; height: 300px; }
  .page-hero .hero-media::before { display: none; }
  .page-hero .hero-media img,
  .page-hero .hero-media .img-placeholder { border-radius: 20px; }
}

/* Full-bleed photo hero (interior pages) */
.page-hero--photo {
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.page-hero--photo .container {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
}
.page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cream) 18%, rgba(248,245,238,.9) 34%, rgba(248,245,238,.4) 48%, rgba(248,245,238,0) 60%);
  z-index: 0;
}
.page-hero--photo .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 460px;
}

@media (max-width: 860px) {
  .page-hero--photo { background-position: 62% center; min-height: 420px; }
  .page-hero--photo::before {
    background: linear-gradient(90deg, var(--cream) 8%, rgba(248,245,238,.92) 45%, rgba(248,245,238,.55) 72%, rgba(248,245,238,.15) 100%);
  }
  .page-hero--photo .hero-copy { max-width: none; }
}

/* =========================================================
   Home hero (split, rounded photo)
   ========================================================= */
.home-hero {
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
}
.home-hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  min-height: 480px;
}
.home-hero .hero-copy { padding: 20px 40px 20px 0; position: relative; z-index: 2; }
.home-hero .hero-copy h1 { margin-bottom: 16px; }
.home-hero .hero-copy .btn-row { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.home-hero .hero-media {
  position: relative;
  height: 480px;
}
.home-hero .hero-media::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 24px;
  bottom: -20px;
  border: 2px solid var(--gold);
  border-radius: 999px 0 0 999px / 280px 0 0 280px;
  z-index: 0;
}
.home-hero .hero-media img,
.home-hero .hero-media .img-placeholder {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 999px 0 0 999px / 260px 0 0 260px;
  box-shadow: var(--shadow-photo);
}

@media (max-width: 900px) {
  .home-hero .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .home-hero .hero-copy { padding: 0 0 32px; }
  .home-hero .hero-media { height: 320px; order: -1; margin-bottom: 20px; }
  .home-hero .hero-media::before { display: none; }
  .home-hero .hero-media img,
  .home-hero .hero-media .img-placeholder { border-radius: 24px; }
}

/* Full-bleed photo hero (home) */
.home-hero--photo {
  position: relative;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.home-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cream) 18%, rgba(248,245,238,.9) 34%, rgba(248,245,238,.4) 48%, rgba(248,245,238,0) 60%);
  z-index: 0;
}
.home-hero--photo .hero-grid {
  position: relative;
  z-index: 1;
  min-height: 500px;
  display: flex;
  align-items: flex-start;
  padding: 72px 0 56px;
}
.home-hero--photo .hero-copy {
  max-width: 540px;
  padding: 0 24px 0 0;
}
.home-hero--photo .hero-copy .btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  margin-top: 26px;
}
.home-hero--photo .hero-copy .btn-row .btn { white-space: nowrap; }

@media (max-width: 900px) {
  .home-hero--photo {
    background-position: 62% center;
  }
  .home-hero--photo::before {
    background: linear-gradient(90deg, var(--cream) 8%, rgba(248,245,238,.92) 45%, rgba(248,245,238,.55) 72%, rgba(248,245,238,.15) 100%);
  }
  .home-hero--photo .hero-grid { min-height: 460px; padding: 40px 0; }
  .home-hero--photo .hero-copy { max-width: none; padding: 0; }
}

/* =========================================================
   Image placeholder (used everywhere a real photo will go)
   ========================================================= */
.img-placeholder {
  background: linear-gradient(135deg, var(--green-tint), var(--cream-soft));
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--green);
  font-size: .8rem;
  font-weight: 600;
  padding: 16px;
  gap: 8px;
  flex-direction: column;
}
.img-placeholder svg { width: 30px; height: 30px; color: var(--gold); }

/* =========================================================
   Welcome / intro banded text section
   ========================================================= */
.welcome-block { text-align: center; max-width: 820px; margin: 0 auto; }
.welcome-block h2 { }
.welcome-block .purpose-line {
  font-weight: 700;
  color: var(--green);
  margin-top: 20px;
}

/* Dark quote/way banner */
.way-banner {
  background: var(--green);
  color: var(--cream);
  text-align: center;
  padding: 56px 24px;
}
.way-banner h2 { color: var(--white); }
.way-banner .eyebrow-rule { background: var(--gold); }
.way-banner blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  max-width: 780px;
  margin: 10px auto 0;
}
.way-banner p.supporting {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.82);
  font-style: normal;
  font-size: .95rem;
}

/* =========================================================
   Icon grid rows (What We Offer / Everyday Living Support)
   ========================================================= */
.icon-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 12px;
}
.icon-card .icon-circle {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.icon-card .icon-circle svg { width: 20px; height: 20px; }
.icon-card .icon-label { font-weight: 700; color: var(--ink); font-size: .86rem; line-height: 1.35; }

@media (max-width: 760px) {
  .icon-row { grid-template-columns: repeat(2, 1fr); }
}

/* Column layout for two-group sections (Who We Serve / Why Choose) */
.two-col-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 44px;
}
.group-heading {
  text-align: center;
  margin-bottom: 22px;
}
.group-heading .eyebrow-rule { margin: 10px auto; }

.serve-list { display: flex; flex-direction: column; gap: 20px; }
.serve-item { display: flex; gap: 14px; align-items: flex-start; }
.serve-item .icon-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-tint); color: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.serve-item .icon-circle svg { width: 18px; height: 18px; }
.serve-item h4 { margin: 0 0 4px; font-family: var(--font-body); color: var(--ink); font-size: .98rem; }
.serve-item p { margin: 0; font-size: .88rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 14px;
  background: var(--white);
}
.why-card .icon-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-tint); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.why-card .icon-circle svg { width: 20px; height: 20px; }
.why-card h4 { font-family: var(--font-body); color: var(--ink); font-size: .88rem; margin: 0; }

@media (max-width: 860px) {
  .two-col-groups { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   CTA banner (Let's Take the Next Step Together)
   ========================================================= */
.cta-banner {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.cta-banner .cta-media {
  position: absolute; inset: 0;
  background-color: var(--green);
  background-size: cover;
  background-position: center;
}
.cta-banner .cta-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15,42,32,.94) 40%, rgba(15,42,32,.55));
}
.cta-banner .container {
  position: relative;
  z-index: 2;
  padding: 68px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}
@media (max-width: 760px) {
  .cta-banner .container { grid-template-columns: 1fr; }
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 480px; margin: 0; }
.cta-banner .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--green);
  color: rgba(255,255,255,.85);
  padding: 48px 0 20px;
  font-size: .85rem;
  line-height: 1.55;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-brand img { height: 42px; }
.footer-brand .brand-eyebrow { color: var(--gold-light); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-subtag { color: rgba(255,255,255,.7); }
.footer-brand .brand-tag,
.footer-brand .brand-ornament { color: var(--gold-light); }

.footer-col h4 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a:hover { color: var(--gold-light); }

.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 8px; }
.footer-contact svg { width: 15px; height: 15px; color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }

.footer-social { display: flex; gap: 10px; margin-top: 10px; }
.footer-social a {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.footer-social svg { width: 14px; height: 14px; }
.footer-social a:hover { background: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
}
.footer-bottom a:hover { color: var(--white); }

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

/* =========================================================
   About page specifics
   ========================================================= */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
  align-items: stretch;
}
.mission-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-photo-soft);
}
.mission-card .icon-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.mission-card .icon-circle svg { width: 24px; height: 24px; }
.mission-card h3 { margin-bottom: 6px; }
.mission-card .eyebrow-rule { margin: 8px auto 14px; }
.mission-card p { font-size: 1rem; line-height: 1.6; margin: 0; }
.mission-card ul.check-list { text-align: left; margin-top: 6px; }
.mission-card .check-list li { font-size: 1rem; margin-bottom: 8px; }

@media (max-width: 860px) { .mission-grid { grid-template-columns: 1fr; } }

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .92rem;
  margin-bottom: 10px;
  color: var(--body-text);
}
.check-list li svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.symbol-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: .92rem;
  margin-bottom: 14px;
  color: var(--body-text);
}
.icon-circle--sm {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.icon-circle--sm svg { width: 16px; height: 16px; }

.two-col-text-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col-text-media img,
.two-col-text-media .img-placeholder {
  border-radius: var(--radius-photo);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-photo);
}
.two-col-text-media.reverse { direction: rtl; }
.two-col-text-media.reverse > * { direction: ltr; }
.hero-media--wide img { aspect-ratio: 3/2; object-position: center 35%; }

@media (max-width: 860px) {
  .two-col-text-media { grid-template-columns: 1fr; }
  .two-col-text-media.reverse .hero-media { order: -1; }
}

.checklist-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 40px;
  margin-top: 20px;
}
@media (max-width: 640px) { .checklist-two-col { grid-template-columns: 1fr; } }

/* =========================================================
   Living page — support icon grid (6 cards)
   ========================================================= */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.support-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
}
.support-card .icon-circle {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green-tint); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.support-card .icon-circle svg { width: 20px; height: 20px; }
.support-card h4 { font-size: .95rem; margin-bottom: 6px; color: var(--ink); font-family: var(--font-body); }
.support-card p { font-size: .84rem; margin: 0; }

@media (max-width: 860px) { .support-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .support-grid { grid-template-columns: 1fr; } }

.community-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 4px 40px;
  align-items: start;
  margin-top: 4px;
}
.community-list ul { display: contents; }
.community-list li { margin-bottom: 6px; }

.partner-block {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--cream-soft);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.partner-block .icon-circle {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--white); color: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.partner-block .icon-circle svg { width: 24px; height: 24px; }
.partner-block .partner-copy { flex: 1; min-width: 240px; }
.partner-block .partner-copy h3 { margin-bottom: 8px; }

/* =========================================================
   Referral page — who may refer + process steps
   ========================================================= */
.referral-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 10px;
}
.info-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.info-panel h3 { display: flex; align-items: center; gap: 12px; }
.info-panel h3 .icon-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-tint); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.info-panel h3 .icon-circle svg { width: 18px; height: 18px; }

.process-steps { display: flex; flex-direction: column; gap: 22px; }
.process-step { display: flex; gap: 16px; }
.process-step .step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green); color: var(--white);
  font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.process-step .step-label {
  color: var(--gold);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
  display: block;
}
.process-step h4 { margin: 0 0 4px; color: var(--ink); font-family: var(--font-body); }
.process-step p { margin: 0; font-size: .9rem; }

@media (max-width: 860px) { .referral-grid { grid-template-columns: 1fr; } }

.three-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 860px) { .three-panel { grid-template-columns: 1fr; } }

.work-together {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 56px;
  background: var(--cream-soft);
  padding: 32px 40px;
  border-radius: var(--radius);
}
.work-together .btn { margin-top: 8px; }
.work-together img {
  width: 100%;
  aspect-ratio: 5/3;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-photo-soft);
}
@media (max-width: 780px) {
  .work-together { grid-template-columns: 1fr; }
  .work-together img { aspect-ratio: 16/9; }
}

/* =========================================================
   FAQ page
   ========================================================= */
.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 860px) { .faq-columns { grid-template-columns: 1fr; } }

.faq-category { margin-bottom: 34px; }
.faq-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.faq-category-title .icon-circle {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.faq-category-title .icon-circle svg { width: 16px; height: 16px; }
.faq-category-title h3 { margin: 0; }
.faq-category-title .eyebrow-rule { display: none; }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 14px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .94rem;
  color: var(--ink);
}
.faq-question svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-answer-inner { padding: 0 6px 18px; font-size: .9rem; }
.faq-answer-inner .check-list { margin-top: 4px; }
.faq-answer-inner .checklist-two-col { margin-top: 4px; }

.still-questions {
  background: var(--cream-soft);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  max-width: 620px;
  margin: 10px auto 0;
}
.still-questions .icon-circle {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.still-questions .icon-circle svg { width: 20px; height: 20px; }

/* =========================================================
   Resources page
   ========================================================= */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.resource-card .icon-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.resource-card .icon-circle svg { width: 22px; height: 22px; }
.resource-card h4 { font-size: .95rem; margin-bottom: 8px; }
.resource-card p { font-size: .82rem; flex: 1; margin-bottom: 16px; }
.resource-card .btn { align-self: center; font-size: .8rem; padding: 10px 16px; }

@media (max-width: 980px) { .resource-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .resource-grid { grid-template-columns: 1fr; } }

.looking-else {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.looking-else .icon-circle {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green-tint); color: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.looking-else .icon-circle svg { width: 26px; height: 26px; }
.looking-else .content { flex: 1; min-width: 240px; }
.looking-else h3 { margin-bottom: 4px; }
.looking-else p { margin: 0; font-style: italic; font-size: .88rem; }

.disclaimer-text {
  font-size: .76rem;
  color: rgba(255,255,255,.55);
  max-width: 900px;
  margin: 14px auto 0;
  text-align: center;
  }

.legal-band {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.legal-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.legal-band .legal-copyright {
  font-weight: 700;
  color: var(--ink);
  font-size: .9rem;
  margin: 0 0 12px;
}
.legal-band .legal-text {
  font-size: .82rem;
  color: var(--body-text);
  line-height: 1.6;
  margin: 0;
}
.legal-band .legal-links {
  font-size: .82rem;
  color: var(--body-text);
  margin: 12px 0 0;
}
.legal-band .legal-links a { color: var(--body-text); }
.legal-band .legal-links a:hover { color: var(--green); }
@media (max-width: 760px) {
  .legal-band-grid { grid-template-columns: 1fr; gap: 24px; }
}
  
  /* =========================================================
   Contact page
   ========================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: .92rem;
  background: var(--cream);
  color: var(--ink);
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--gold-light);
  outline-offset: 1px;
}
.field textarea { min-height: 120px; resize: vertical; }

.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: .9rem;
  color: var(--body-text);
  cursor: pointer;
}
.radio-group input[type="radio"] { accent-color: var(--gold); width: 16px; height: 16px; }

.sidebar-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-panel h3 { margin-bottom: 16px; }
.sidebar-panel.soft { background: var(--cream-soft); border: none; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-detail .icon-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail .icon-circle svg { width: 18px; height: 18px; }
.contact-detail .label { font-weight: 700; color: var(--ink); font-size: .85rem; margin-bottom: 2px; }
.contact-detail .value { font-size: .9rem; color: var(--ink); }

.form-status {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 4px;
  font-size: .9rem;
}
.form-status.show { display: block; }
.form-status.success { background: var(--green-tint); color: var(--green); border: 1px solid #cfe0d7; }
.form-status.error { background: #FBEAEA; color: #8A2C2C; border: 1px solid #f0c9c9; }

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .mission-grid, .support-grid, .why-grid { gap: 14px; }
}
