.awards-bar {
    background: var(--white);
    padding: 36px 0 42px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
.awards-bar .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
.awards-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin: 0;
    white-space: nowrap;
  }
.awards-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
  }
.award-logo {
    height: 110px;
    width: 110px;
    padding: 6px 14px;
    border: 1.5px dashed rgba(0, 0, 0, 0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--ink-muted);
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    background: var(--cream);
    transition: transform 0.25s;
  }
.award-logo.has-img {
    border: none;
    background: transparent;
    padding: 0;
    width: 110px;
    height: 110px;
  }
.award-logo.has-img:hover { transform: scale(1.06); }
.award-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
/* ─── PILLAR BELT ────────────────────────── */
.pillars {
    padding: 90px 0;
    background: var(--tint-yellow);
    position: relative;
  }
.pillars h3 { color: var(--brand-black); }
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
.pillar { text-align: center; }
.pillar-icon {
    width: 68px; height: 68px;
    margin: 0 auto 24px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
  }
.pillar:nth-child(1) .pillar-icon { background: var(--brand-pink); }
.pillar:nth-child(2) .pillar-icon { background: var(--brand-green); }
.pillar:nth-child(3) .pillar-icon { background: var(--brand-blue); }
.pillar h3 {
    font-size: 26px;
    color: var(--green-deep);
    margin-bottom: 12px;
  }
.pillar p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
  }
/* ─── THE PROMISE ────────────────────────── */
.promise {
    padding: 100px 0;
    background: var(--cream-warm);
    text-align: center;
  }
.promise-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-black);
    background: var(--brand-yellow);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
  }
.promise h2 {
    font-size: clamp(32px, 4vw, 52px);
    color: var(--green-deep);
    max-width: 900px;
    margin: 0 auto 32px;
    line-height: 1.25;
  }
.promise h2 em { color: var(--brand-pink); font-style: italic; }
.promise p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--ink-soft);
  }
/* ─── TESTIMONIALS ────────────────────────── */
.voices {
    padding: 100px 0;
    background: var(--white);
  }
.section-head {
    text-align: center;
    margin-bottom: 60px;
  }
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--brand-red);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
  }
.voices .section-eyebrow { background: var(--brand-red); }
.differentiators .section-eyebrow { background: var(--brand-blue); }
.peek .section-eyebrow { background: var(--brand-green); }
.programs .section-eyebrow { background: var(--brand-red); }
.readiness .section-eyebrow { background: var(--brand-blue); }
.section-head h2 {
    font-size: clamp(34px, 4vw, 48px);
    color: var(--green-deep);
    max-width: 720px;
    margin: 0 auto;
  }
.voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
.voice {
    background: var(--white);
    border-radius: 18px;
    padding: 40px 32px 32px;
    position: relative;
    transition: all 0.3s;
    border-top: 6px solid var(--brand-green);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  }
.voice:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  }
.voice:nth-child(1) { border-top-color: var(--brand-red); }
.voice:nth-child(2) { border-top-color: var(--brand-blue); }
.voice:nth-child(3) { border-top-color: var(--brand-green); }
.voice::before {
    content: "“";
    position: absolute;
    top: 10px; left: 24px;
    font-family: var(--serif);
    font-size: 90px;
    line-height: 1;
    opacity: 0.4;
  }
.voice:nth-child(1)::before { color: var(--brand-red); }
.voice:nth-child(2)::before { color: var(--brand-blue); }
.voice:nth-child(3)::before { color: var(--brand-green); }
.voice p {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink);
    margin: 20px 0 24px;
    position: relative;
  }
.voice-attr {
    display: flex; align-items: center; gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(45, 95, 63, 0.1);
  }
.voice-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 17px;
    font-family: var(--sans);
  }
.voice:nth-child(1) .voice-avatar { background: var(--brand-pink); }
.voice:nth-child(2) .voice-avatar { background: var(--brand-blue); }
.voice:nth-child(3) .voice-avatar { background: var(--brand-purple); }
.voice-attr-text strong { display: block; font-size: 14px; color: var(--ink); }
.voice-attr-text span { font-size: 13px; color: var(--ink-muted); }
/* ─── DIFFERENTIATORS ──────────────────────── */
.differentiators {
    padding: 100px 0;
    background: var(--tint-blue);
  }
.diff-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
.diff-grid > .diff-card {
    flex: 0 0 calc(25% - 18px);
  }
.diff-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px 28px;
    transition: all 0.3s;
    border: 1px solid transparent;
    cursor: pointer;
  }
.diff-card:hover {
    border-color: var(--green-soft);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -20px rgba(45, 95, 63, 0.15);
  }
.diff-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
  }
.diff-card:nth-child(1) .diff-icon { background: var(--brand-purple); }
.diff-card:nth-child(2) .diff-icon { background: var(--brand-green); }
.diff-card:nth-child(3) .diff-icon { background: var(--brand-blue); }
.diff-card:nth-child(4) .diff-icon { background: var(--brand-pink); }
.diff-card:nth-child(5) .diff-icon { background: var(--green-deep); }
.diff-card:nth-child(6) .diff-icon { background: var(--brand-yellow-deep); }
.diff-card:nth-child(7) .diff-icon { background: var(--brand-blue); }
.diff-card h4 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 10px;
    line-height: 1.2;
  }
.diff-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
/* ─── WORKING FAMILY CALENDAR ────────────── */
.calendar-section {
    padding: 100px 0;
    background: var(--green-deep);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
.calendar-section::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, var(--brand-yellow) 0%, transparent 70%);
    opacity: 0.05;
  }
.calendar-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
.calendar-stat {
    text-align: center;
  }
.calendar-number {
    font-family: var(--serif);
    font-size: clamp(140px, 18vw, 220px);
    color: var(--brand-yellow);
    line-height: 1;
    font-weight: 700;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  }
.calendar-label {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(250, 246, 236, 0.85);
    font-weight: 700;
    margin-top: 8px;
  }
.calendar-content h2 {
    font-size: clamp(30px, 4vw, 44px);
    color: var(--cream);
    margin-bottom: 18px;
    line-height: 1.15;
  }
.calendar-content h2 em {
    font-family: var(--script);
    font-style: normal;
    color: var(--brand-yellow);
    font-size: 1.2em;
    line-height: 0.7;
  }
.calendar-content > p {
    font-size: 16px;
    color: rgba(250, 246, 236, 0.85);
    margin-bottom: 24px;
    line-height: 1.7;
  }
.closures-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 28px;
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
.closure-item {
    font-size: 14px;
    color: rgba(250, 246, 236, 0.92);
    display: flex;
    align-items: center;
    gap: 10px;
  }
.closure-item::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--brand-yellow);
    border-radius: 50%;
    flex-shrink: 0;
  }
.weather-callout {
    margin-top: 20px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--brand-yellow);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(250, 246, 236, 0.85);
    font-style: italic;
  }
/* ─── FAMILY TRADITIONS ───────────────────── */
.traditions {
    padding: 100px 0;
    background: var(--white);
  }
.traditions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
.tradition-card {
    background: var(--cream);
    border-radius: 18px;
    padding: 30px 26px 28px;
    text-align: center;
    transition: all 0.25s;
    border-top: 5px solid var(--brand-green);
  }
.tradition-card:nth-child(2) { border-top-color: var(--brand-blue); }
.tradition-card:nth-child(3) { border-top-color: var(--brand-red); }
.tradition-card:nth-child(4) { border-top-color: var(--brand-yellow); }
.tradition-card:nth-child(5) { border-top-color: var(--brand-green); }
.tradition-card:nth-child(6) { border-top-color: var(--brand-blue); }
.tradition-card:nth-child(7) { border-top-color: var(--brand-red); }
.tradition-card:nth-child(8) { border-top-color: var(--brand-yellow); }
.tradition-card:nth-child(9) { border-top-color: var(--brand-green); }
.tradition-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  }
.tradition-emoji {
    font-size: 40px;
    margin-bottom: 12px;
    display: inline-block;
    line-height: 1;
  }
.tradition-emoji img {
    max-width: 48px;
    max-height: 48px;
    width: auto;
    height: 48px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
.tradition-card h4 {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--green-deep);
    margin-bottom: 8px;
    line-height: 1.2;
  }
.tradition-when {
    font-size: 11px;
    color: var(--brand-red);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
.tradition-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
/* ─── PEEK INSIDE (photo grid) ─────────────── */
.peek {
    padding: 100px 0;
    background: var(--white);
  }
.peek-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 16px;
  }
.peek-tile {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--green-soft), var(--green-leaf));
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    text-align: center;
    padding: 16px;
  }
.peek-tile.large { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg, var(--green-leaf), var(--green-deep)); }
.peek-tile.warm { background: linear-gradient(135deg, var(--cream-warm), var(--brand-pink)); color: rgba(0,0,0,0.5); }
.peek-tile { transition: transform 0.3s; }
.peek-tile:hover { transform: scale(1.02); }
.peek-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
  }
.peek-caption {
    text-align: center;
    margin-top: 32px;
    font-style: italic;
    color: var(--ink-muted);
    font-family: var(--serif);
    font-size: 18px;
  }
/* ─── COMMUNITY & GIVING ───────────────────── */
.community {
    padding: 100px 0;
    background: var(--cream-warm);
  }
.community-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
  }
.community-intro p {
    font-size: 18px;
    color: var(--ink-soft);
    margin-top: 16px;
  }
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
  }
.service-card {
    background: var(--white);
    border-radius: 18px;
    padding: 0 0 24px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
.service-card:hover {
    transform: translateY(-4px);
  }
/* Full-bleed banner — extends edge-to-edge of the card for maximum image impact */
.service-banner {
    width: 100%;
    height: 260px;
    border-radius: 0;
    margin-bottom: 22px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
.service-banner.has-logo {
    background: var(--brand-black);
    padding: 22px;
  }
.service-banner.has-logo-light {
    background: transparent;
    padding: 0;
  }
.service-banner.has-logo img,
  .service-banner.has-logo-light img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
.service-banner.has-logo img {
    object-fit: contain;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
.service-banner.icon-only {
    color: var(--white);
    font-size: 30px;
    margin: 22px 22px 22px;
    height: calc(260px - 44px);
    border-radius: 14px;
  }
.service-card:nth-child(1) .service-banner.icon-only { background: var(--brand-red); }
.service-card:nth-child(2) .service-banner.icon-only { background: var(--brand-blue); }
.service-card:nth-child(3) .service-banner.icon-only { background: var(--brand-green); }
.service-card:nth-child(4) .service-banner.icon-only { background: var(--brand-yellow); color: var(--brand-black); }
.service-card h4 {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--brand-black);
    margin-bottom: 10px;
    line-height: 1.2;
    padding: 0 22px;
  }
.service-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 16px;
    padding: 0 22px;
  }
.service-card .charity-actions {
    margin-top: auto;
    padding: 0 22px;
  }
.charity-block {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  }
.charity-head {
    text-align: center;
    margin-bottom: 36px;
  }
.charity-head h3 {
    font-size: 32px;
    color: var(--green-deep);
    margin-bottom: 10px;
  }
.charity-head p {
    font-size: 15px;
    color: var(--ink-soft);
    max-width: 540px;
    margin: 0 auto;
  }
.charity-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: stretch;
  }
.charity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px 20px;
    background: var(--white);
    border-radius: 16px;
    text-align: center;
    transition: all 0.25s;
  }
.charity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  }
/* Logo wrapper — clickable, goes to main site */
.charity-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 110px;            /* uniform logo area across all cards */
    margin-bottom: 16px;
    padding: 6px;
    cursor: pointer;
  }
.charity-logo-link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.25s;
  }
.charity-logo-link:hover img { transform: scale(1.05); }
/* Placeholder for unwired cards */
.charity-logo-link.placeholder {
    border: 1.5px dashed rgba(0, 0, 0, 0.18);
    border-radius: 8px;
    background: var(--cream);
    font-size: 11px;
    color: var(--ink-muted);
    font-weight: 600;
  }
/* Name — fixed min-height so 1-line and 2-line names align uniformly */
.charity-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.3;
    min-height: 34px;          /* fits up to 2 lines */
    display: flex;
    align-items: center;
    justify-content: center;
  }
/* Real action buttons, bottom-anchored */
.charity-actions {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: auto;
  }
.charity-btn {
    flex: 1;
    padding: 8px 4px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
  }
.charity-btn-visit {
    background: transparent;
    color: var(--brand-blue);
    border: 1.5px solid var(--brand-blue);
  }
.charity-btn-visit:hover {
    background: var(--brand-blue);
    color: var(--white);
  }
.charity-btn-donate {
    background: var(--brand-red);
    color: var(--white);
    border: 1.5px solid var(--brand-red);
  }
.charity-btn-donate:hover {
    background: var(--brand-red-deep);
    border-color: var(--brand-red-deep);
  }
/* Optional microcopy under buttons — used when we want donors to credit Grace */
.donor-note {
    font-size: 11px;
    color: var(--ink-muted);
    font-style: italic;
    margin-top: 10px;
    line-height: 1.35;
    padding: 0 4px;
  }
.donor-note strong { color: var(--green-deep); font-style: normal; }
/* ─── PROGRAMS LADDER ──────────────────────── */
.programs {
    padding: 100px 0;
    background: var(--green-pale);
    position: relative;
    overflow: hidden;
  }
.programs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 50px;
  }
.program-card {
    background: var(--white);
    border-radius: 22px;
    padding: 40px 28px 32px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  }
.program-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: var(--brand-green);
  }
.program-card:nth-child(2)::before { background: var(--brand-blue); }
.program-card:nth-child(3)::before { background: var(--brand-red); }
.program-card:nth-child(4)::before { background: var(--brand-yellow); }
.program-card:nth-child(5)::before { background: var(--brand-black); }
.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }
.program-age {
    display: inline-block;
    font-size: 11px;
    color: var(--white);
    background: var(--brand-green);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 5px 12px;
    border-radius: 999px;
  }
.program-card:nth-child(2) .program-age { background: var(--brand-blue); }
.program-card:nth-child(3) .program-age { background: var(--brand-red); }
.program-card:nth-child(4) .program-age { background: var(--brand-yellow); color: var(--brand-black); }
.program-card:nth-child(5) .program-age { background: var(--brand-black); }
.program-card h4 {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--green-deep);
    margin-bottom: 16px;
  }
.program-card p {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 20px;
    line-height: 1.5;
  }
.program-card .arrow {
    color: var(--green-deep);
    font-weight: 600;
    font-size: 14px;
  }
/* ─── CURRICULUM (Frog Street) ─────────────── */
.curriculum {
    padding: 100px 0;
    background: var(--white);
  }
.curriculum-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
  }
.curriculum-text h2 {
    font-size: clamp(32px, 4vw, 46px);
    color: var(--green-deep);
    margin-bottom: 20px;
    line-height: 1.15;
  }
.curriculum-text p {
    font-size: 17px;
    color: var(--ink-soft);
    margin-bottom: 18px;
  }
.frogstreet-logo {
    margin-bottom: 24px;
  }
.frogstreet-logo img {
    max-height: 70px;
    width: auto;
  }
.frogstreet-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
  }
.frogstreet-link:hover { text-decoration: underline; }
.curriculum-video {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.25);
    background: var(--brand-black);
    cursor: pointer;
    transition: transform 0.3s;
  }
.curriculum-video:hover { transform: scale(1.02); }
.curriculum-video img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--white);
    text-decoration: none;
  }
.play-button {
    width: 88px; height: 88px;
    background: var(--brand-red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
  }
.curriculum-video:hover .play-button {
    background: var(--brand-red-deep);
    transform: scale(1.08);
  }
.play-button svg {
    width: 36px; height: 36px;
    margin-left: 6px;
    fill: var(--white);
  }
.video-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  }
/* ─── KINDERGARTEN READINESS ───────────────── */
.readiness {
    padding: 100px 0;
    background: var(--cream-warm);
  }
.readiness-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
.readiness h2 {
    font-size: clamp(34px, 4vw, 48px);
    color: var(--green-deep);
    margin-bottom: 28px;
    line-height: 1.15;
  }
.readiness > .wrap > .readiness-grid > div:first-child p {
    color: var(--ink-soft);
    font-size: 17px;
    margin-bottom: 32px;
  }
.proof-list { list-style: none; }
.proof-list li {
    display: flex; gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(45, 95, 63, 0.1);
  }
.proof-list li:last-child { border-bottom: none; }
.proof-num {
    flex-shrink: 0;
    width: 42px; height: 42px;
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 17px;
  }
.proof-list li:nth-child(1) .proof-num { background: var(--brand-pink); }
.proof-list li:nth-child(2) .proof-num { background: var(--brand-blue); }
.proof-list li:nth-child(3) .proof-num { background: var(--brand-green); }
.proof-text strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.proof-text span { font-size: 14px; color: var(--ink-soft); }
.readiness-visual {
    aspect-ratio: 1;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--green-deep), var(--green-leaf));
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px -16px rgba(45, 95, 63, 0.4);
  }
.readiness-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
  }
/* ─── BLOG MARQUEE ────────────────────────── */
.blog-marquee-band {
    background: var(--green-deep);
    color: var(--cream);
    padding: 80px 0 70px;
    text-align: center;
    overflow: hidden;
    position: relative;
  }
.blog-marquee-band .section-eyebrow {
    background: var(--brand-yellow);
    color: var(--brand-black);
  }
.blog-marquee-band h2 {
    color: var(--cream);
    font-size: clamp(30px, 4vw, 44px);
    margin-bottom: 14px;
    font-family: var(--serif);
    font-weight: 600;
  }
.blog-marquee-band h2 em {
    font-family: var(--script);
    font-style: normal;
    color: var(--brand-yellow);
    font-size: 1.15em;
  }
.blog-marquee-band > .wrap > p {
    font-size: 17px;
    max-width: 620px;
    margin: 0 auto 36px;
    color: rgba(250, 246, 236, 0.88);
  }
.blog-marquee {
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 24px 0;
    border: 1px solid rgba(255,255,255,0.12);
    overflow: hidden;
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
  }
.blog-marquee::before, .blog-marquee::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
  }
.blog-marquee::before { left: 0; background: linear-gradient(90deg, var(--green-deep), transparent); }
.blog-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--green-deep), transparent); }
.blog-row {
    display: flex; gap: 36px;
    font-family: var(--serif); font-size: 22px;
    white-space: nowrap;
    animation: blogmarquee 30s linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
  }
@keyframes blogmarquee {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
  }
.blog-topic {
    display: inline-flex; align-items: center;
    color: rgba(250, 246, 236, 0.92);
    text-decoration: none;
    transition: color 0.2s;
  }
.blog-topic:hover { color: var(--brand-yellow); }
.blog-topic::before { content: "📖"; font-size: 18px; margin-right: 12px; }
.blog-topic::after  { content: "·"; color: var(--brand-yellow); font-size: 28px; margin-left: 28px; }
.blog-marquee-cta { margin-top: 32px; }
/* MOBILE: keep the smooth horizontal scroll — GPU-accelerated transform, tuned for phones.
     Pure transform animation (translate3d) stays on the compositor, so it scrolls smoothly
     without the layout jank an older non-transform marquee would cause. */
/* Respect users who prefer reduced motion */
/* ─── FINAL CTA BAND ──────────────────────── */
.final-cta {
    padding: 100px 0;
    background: var(--green-deep);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
.final-cta::before, .final-cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--green-leaf) 0%, transparent 70%);
    opacity: 0.4;
  }
.final-cta::before { top: -100px; left: -100px; width: 400px; height: 400px; }
.final-cta::after { bottom: -150px; right: -100px; width: 500px; height: 500px; }
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
    font-size: clamp(36px, 5vw, 60px);
    margin-bottom: 20px;
    line-height: 1.1;
  }
.final-cta h2 em {
    color: var(--brand-yellow);
    font-style: normal;
    font-family: var(--script);
    font-size: 1.3em;
    line-height: 0.7;
  }
.final-cta p {
    font-size: 19px;
    max-width: 580px;
    margin: 0 auto 40px;
    color: rgba(250, 246, 236, 0.85);
  }
.final-cta .btn-primary {
    background: var(--brand-yellow);
    color: var(--brand-black);
    box-shadow: 0 6px 18px rgba(255, 199, 44, 0.18);
  }
.final-cta .btn-primary:hover {
    background: var(--brand-yellow-deep);
    color: var(--brand-black);
    transform: translateY(-2px);
  }
/* ─── FOOTER ──────────────────────────────── */
footer {
    background: #1A3527;
    color: rgba(250, 246, 236, 0.7);
    padding: 70px 0 32px;
  }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
footer h5 {
    color: var(--cream);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
footer ul { list-style: none; }
footer ul li { margin-bottom: 12px; }
footer ul li a {
    color: rgba(250, 246, 236, 0.7);
    font-size: 14px;
    transition: color 0.2s;
  }
footer ul li a:hover { color: var(--cream); }
.footer-brand .logo {
    color: var(--cream);
    margin-bottom: 18px;
  }
.footer-brand p { font-size: 14px; line-height: 1.65; max-width: 320px; }
.footer-contact { font-size: 14px; line-height: 1.7; }
.footer-contact a { color: var(--cream); }
.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(250, 246, 236, 0.1);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px;
    flex-wrap: wrap; gap: 16px;
  }
.footer-social a {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(250, 246, 236, 0.7);
    transition: color 0.2s;
    text-decoration: none;
  }
.footer-social a:hover { color: var(--cream); }
.footer-social svg { color: #1877F2; }
.footer-social a:hover svg { color: #4093ff; }
/* ─── RESPONSIVE ─────────────────────────── */
/* ─── MOCKUP BANNER ───────────────────────── */
/* ─── LIGHTBOX (click any photo to expand) ───── */
[data-zoom] { cursor: zoom-in; }
.lightbox {
    position: fixed; inset: 0;
    background: rgba(15, 25, 20, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 40px;
    backdrop-filter: blur(6px);
    cursor: zoom-out;
  }
.lightbox.is-open { display: flex; }
.lightbox img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    animation: lb-pop 0.25s ease-out;
  }
@keyframes lb-pop {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
.lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    cursor: pointer;
    transition: background 0.2s;
    border: none;
    line-height: 1;
  }
.lightbox-close:hover { background: rgba(255,255,255,0.32); }
/* === Hamburger Menu === */
.hamburger-btn { position: relative; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; padding: 0; display: flex; align-items: center; justify-content: center; margin-left: 14px; border-radius: 8px; transition: background 0.2s; }
.hamburger-btn:hover { background: rgba(6, 136, 67, 0.1); }
.hamburger-btn span { display: block; width: 26px; height: 3px; background: var(--green-deep, #068843); border-radius: 2px; position: absolute; left: 9px; transition: all 0.3s ease; }
.hamburger-btn span:nth-child(1) { top: 13px; }
.hamburger-btn span:nth-child(2) { top: 20px; }
.hamburger-btn span:nth-child(3) { top: 27px; }
.hamburger-btn[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.hamburger-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger-btn[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }
.menu-overlay { position: fixed; inset: 0; background: rgba(26, 26, 26, 0.6); backdrop-filter: blur(4px); z-index: 9998; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); background: var(--cream, #FAF6EC); z-index: 9999; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto; box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15); display: flex; flex-direction: column; }
.menu-drawer.open { transform: translateX(0); }
.menu-header { display: flex; justify-content: space-between; align-items: center; padding: 22px 28px; border-bottom: 1px solid rgba(26, 26, 26, 0.08); }
.menu-header-title { font-family: var(--script, 'Sacramento', cursive); font-size: 28px; color: var(--green-deep, #068843); }
.menu-close { background: transparent; border: none; cursor: pointer; padding: 8px; border-radius: 8px; transition: background 0.2s; }
.menu-close:hover { background: rgba(26, 26, 26, 0.08); }
.menu-close svg { width: 24px; height: 24px; stroke: var(--ink, #1A1A1A); }
.menu-body { padding: 18px 0; flex: 1; }
.menu-section { padding: 8px 28px; }
.menu-section-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-muted, #7A7A7A); font-weight: 600; margin-bottom: 10px; padding-left: 4px; }
.menu-link { display: block; padding: 12px 16px; color: var(--ink, #1A1A1A); font-family: var(--serif, 'Cormorant Garamond', Georgia, serif); font-size: 22px; font-weight: 500; border-radius: 10px; transition: all 0.15s; }
.menu-link:hover { background: var(--green-pale, #E0F0E1); color: var(--green-deep, #068843); transform: translateX(4px); }
.menu-link.sub { font-family: var(--sans, sans-serif); font-size: 15px; font-weight: 500; padding: 10px 16px 10px 32px; color: var(--ink-soft, #4A4A4A); }
.menu-link.sub:hover { color: var(--green-deep, #068843); }
.menu-cta { margin: 16px 28px 24px; padding: 16px; background: var(--brand-red, #ED1C24); color: var(--cream, #FAF6EC); border-radius: 999px; text-align: center; font-weight: 600; font-size: 15px; letter-spacing: 0.02em; transition: all 0.2s; }
.menu-cta:hover { background: var(--brand-red-deep, #B81620); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(237, 28, 36, 0.25); color: var(--cream, #FAF6EC); }
.menu-footer { padding: 18px 28px 28px; border-top: 1px solid rgba(26, 26, 26, 0.08); font-size: 13px; color: var(--ink-muted, #7A7A7A); }
.menu-footer p { margin: 4px 0; }
.menu-footer a { color: var(--green-deep, #068843); font-weight: 500; }
body.menu-open { overflow: hidden; }
/* Header layout polish for hamburger placement */
.header-row { gap: 14px; }
.header-row > nav.primary { margin-right: auto; }
.header-row .btn-primary { margin-left: 0; }