/* ===================================
   DESIGN YOUR LIFE — DOMAIN 2 STYLESHEET
   Clean, professional, editorial.
=================================== */

:root {
    /* ── Gold Scale (domain1 palette) ── */
    --g50:  #FBF7EF;
    --g100: #F2E6C8;
    --g200: #DEBB80;
    --g300: #C49A50;
    --g400: #AE852F;
    --g500: #8E6A22;
    --g600: #6B4E18;

    /* ── Rose / Terracotta Scale ── */
    --r50:  #F9F0F2;
    --r100: #EDD4D8;
    --r200: #C9909A;
    --r300: #A66874;
    --r400: #86525F;
    --r500: #6B3F4A;
    --r600: #4E2D36;

    /* ── Neutrals ── */
    --cream:  #FAFAF5;
    --warm:   #F5F0EA;
    --ivory:  #FEFCF7;
    --ink:    #1E1A18;
    --ink2:   #3D3530;
    --ink3:   #6B5E58;
    --ink4:   #A09088;
    --ink5:   #D4C8C0;

    /* ── Convenience aliases used in this file ── */
    --mustard:      var(--g300);
    --mustard-dark: var(--g400);
    --terracotta:   var(--r400);
    --charcoal:     var(--ink);
    --charcoal-mid: var(--ink2);
    --warm-grey:    var(--ink3);
    --sand:         var(--warm);
    --warm-white:   var(--ivory);
    --border:       rgba(30, 26, 24, 0.10);
    --border-strong:rgba(30, 26, 24, 0.18);

    --ff-serif:  'Cormorant Garamond', Georgia, serif;
    --ff-sans:   'Jost', system-ui, sans-serif;

    --shadow-sm:  0 2px 12px rgba(174, 133, 47, .10);
    --shadow-md:  0 6px 32px rgba(174, 133, 47, .14);
    --shadow-lg:  0 16px 60px rgba(134, 82, 95, .14);
    --ease:       cubic-bezier(0.25, 1, 0.5, 1);
    --transition: all 0.35s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--ff-sans);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink2);
    background: var(--ivory);
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

/* ── Typography ── */
h1, h2, h3 {
    font-family: var(--ff-serif);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }

p { color: var(--warm-grey); line-height: 1.8; }

em {
    font-family: var(--ff-serif);
    font-style: italic;
    color: var(--terracotta);
}

strong { color: var(--charcoal); font-weight: 600; }

/* ── Layout ── */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

section { padding: 100px 0; }
.bg-sand { background: var(--warm); }
.bg-cream { background: var(--cream); }

.section-header {
    margin-bottom: 60px;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-label { margin-left: auto; margin-right: auto; }

.section-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--r400);
    margin-bottom: 16px;
}

.section-sub {
    max-width: 620px;
    margin-top: 18px;
    font-size: 1.08rem;
    line-height: 1.8;
}

.section-header.centered .section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    font-family: var(--ff-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--r400);
    color: var(--ivory);
    border-color: var(--r400);
}
.btn-primary:hover {
    background: var(--r500);
    border-color: var(--r500);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background: var(--g300);
    color: var(--ivory);
    border-color: var(--g300);
}
.btn-gold:hover {
    background: var(--g400);
    border-color: var(--g400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(174, 133, 47, 0.30);
}

.btn-outline {
    background: transparent;
    color: var(--r400);
    border-color: var(--r400);
}
.btn-outline:hover {
    background: var(--r400);
    color: var(--ivory);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--warm-grey);
    border: none;
    padding: 10px 0;
    font-size: 0.82rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    letter-spacing: 0.5px;
}
.btn-ghost:hover { color: var(--terracotta); }

/* ── NAV ── */
#navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(254, 252, 247, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-wrap { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 44px; }

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a:not(.btn) {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-mid);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}
.nav-links a:not(.btn):hover,
.nav-links a.active { color: var(--r400); }

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

/* Mobile nav */
@media (max-width: 900px) {
    .nav-hamburger { display: flex; }
    .nav-links {
        position: absolute;
        top: 72px;
        left: 0; right: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 32px;
        gap: 20px;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: var(--transition);
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

.hero-section-wrap {
    background: var(--cream);
}

/* ── HERO ── */
.hero {
    display: grid;
    grid-template-columns: 57.5% 42.5%;
    align-items: start;
    min-height: auto;
    background: var(--cream);
    padding: 4% 8%; /* Uniform 8% padding all around */
    gap: 40px;
}

.hero-content {
    max-width: 620px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    z-index: 2;
}

.hero-image-wrap {
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 0;
    margin-top: 30px;
    z-index: 1;
    width: 100%;
}

.hero-image-layered {
    position: relative;
    width: 100%;
    max-width: 100%; /* Spans the full column width to align perfectly with the card below */
    aspect-ratio: 4 / 5;
    margin-left: 0; /* Aligns perfectly with the grid boundary of the card below without magic numbers */
}

.hero-image-backdrop {
    position: absolute;
    top: 30px; /* Offset top */
    left: -30px; /* Offset left */
    width: 100%;
    height: calc(100% + 0px); /* Height strictly set to calc(100% + 0px) */
    background: var(--warm);
    border: 2px solid rgba(30, 26, 24, 0.15);
    z-index: 1;
    box-shadow: 0 4px 20px rgba(30, 26, 24, 0.05);
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(30, 26, 24, 0.12);
    border: 1px solid rgba(30, 26, 24, 0.2);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70%;
    transition: transform 0.5s var(--ease);
    display: block;
}

.hero-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--r400);
    border: 1px solid rgba(134, 82, 95, 0.3);
    padding: 7px 16px;
    border-radius: 2px;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 0;
}

/* ── HERO BOTTOM DETAILS MODULE ── */
.hero-intro-details {
    padding: 0 8% 80px 8%; /* Symmetric 8% left and right padding */
    background: var(--cream);
}

.hero-details-grid {
    display: grid;
    grid-template-columns: 57.5% 42.5%;
    gap: 40px;
    margin-bottom: 40px;
    align-items: stretch;
}

.hero-details-card {
    background: var(--ivory);
    border: 1px solid rgba(30, 26, 24, 0.28); /* Stronger contrast card border */
    padding: 40px;
    box-shadow: 0 8px 32px rgba(30, 26, 24, 0.08); /* More distinct card shadow */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Unified flow layout */
    height: 100%;
}

.hero-card-footer {
    border-top: 1px solid rgba(30, 26, 24, 0.12);
    padding-top: 20px;
    margin-top: auto; /* Pushes left card footer to the exact bottom of the card */
}

.hero-card-footer p {
    font-size: 0.92rem;
    font-style: italic;
    color: var(--warm-grey);
    line-height: 1.6;
}

.card-cta-footer {
    margin-top: auto; /* Pushes right card CTAs to the exact bottom of the card */
    padding-top: 20px;
}

.transition-title {
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.transition-list {
    margin: 0;
    gap: 12px;
}

.quote-mark {
    font-family: var(--ff-serif);
    font-size: 3.5rem;
    color: var(--r400);
    line-height: 0.1;
    display: block;
    margin-bottom: 12px; /* Decreased space for cohesive top alignment */
}

.hero-philosophy-quote {
    font-family: var(--ff-serif);
    font-size: 1.25rem;
    color: var(--ink2);
    line-height: 1.6;
    margin-bottom: 0; /* Remove margin-bottom to align with cta margin spacing */
    position: relative;
    padding-top: 10px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.hero-note {
    font-size: 0.82rem;
    color: var(--warm-grey);
    font-style: italic;
}


.nav-cta-btn {
    padding: 10px 22px;
    font-size: 0.75rem;
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 4rem 24px;
        min-height: auto;
        gap: 40px;
    }
    .hero-image-wrap {
        order: -1;
        margin-top: 0;
        padding: 0 24px;
    }
    .hero-image-layered {
        max-width: 320px;
        margin: 0 auto 20px;
        margin-left: auto;
    }
    .hero-image-backdrop {
        top: 24px;
        left: -24px;
        height: 100%;
    }
    .hero-content {
        padding: 20px 0;
        max-width: 100%;
        margin: 0;
    }
    .hero-intro-details {
        padding: 0 24px 60px 24px;
    }
    .hero-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    .hero-details-card {
        padding: 30px 20px;
    }
}


/* ── LOGO BAR / TRUST BAR ── */
.trust-bar {
    padding: 28px 0;
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-bar-item {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(251, 245, 234, 0.55);
}

/* ── TWO-COL SPLIT ROWS ── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split.reverse { }
.split-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top center;
}
.split-content { }
.split-content h2 { margin-bottom: 20px; }
.split-content p { margin-bottom: 16px; }
.split-content .btn { margin-top: 24px; }

@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; gap: 40px; }
    .split-image img { height: 280px; }
    .split.reverse .split-image { order: -1; }
}

/* ── CHECKLIST ── */
.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}
.checklist li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--charcoal-mid);
}
.checklist li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: var(--g300);
    border-radius: 50%;
    margin-top: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1.5 5l3 3 6-7'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ── OUTCOMES GRID ── */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px; /* Spacing from the full-width image above */
}
.outcome-cell {
    background: var(--warm-white);
    border: 1px solid var(--border);
    padding: 36px 32px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(30, 26, 24, 0.03);
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.outcome-cell:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(30, 26, 24, 0.08);
    background: var(--cream);
}
.outcome-cell h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: var(--ff-serif);
    color: var(--ink);
}
.outcome-cell p { font-size: 0.92rem; line-height: 1.6; color: var(--charcoal); }

@media (max-width: 900px) {
    .outcomes-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 600px) {
    .outcomes-grid { grid-template-columns: 1fr; }
}

/* ── PROGRAMS ── */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.program-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(30, 26, 24, 0.03);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}
.program-card:hover {
    border-color: var(--g300);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(30, 26, 24, 0.08);
}
.program-card-img {
    height: 240px;
    overflow: hidden;
}
.program-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s var(--ease);
}
.program-card:hover .program-card-img img { transform: scale(1.04); }
.program-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.program-card-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--r400);
    margin-bottom: 12px;
}
.program-card-body h3 { font-size: 1.4rem; margin-bottom: 12px; }
.program-card-body p { font-size: 0.92rem; margin-bottom: 20px; line-height: 1.6; }
.program-card-body .btn { margin-top: auto; }

@media (max-width: 900px) {
    .programs-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ── STEPS ── */
.steps-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    margin-top: 56px; /* Spacing from the full-width image above */
}
.step-item {
    padding: 36px 28px;
    border-right: 1px solid var(--border);
    position: relative;
}
.step-item:last-child { border-right: none; }
.step-num {
    font-family: var(--ff-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: rgba(196, 154, 80, 0.25);
    line-height: 1;
    margin-bottom: 16px;
}
.step-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-item p { font-size: 0.9rem; }

@media (max-width: 900px) {
    .steps-list { grid-template-columns: 1fr 1fr; }
    .step-item:nth-child(2) { border-right: none; }
    .step-item:nth-child(1),
    .step-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 600px) {
    .steps-list { grid-template-columns: 1fr; }
    .step-item { border-right: none; border-bottom: 1px solid var(--border); }
    .step-item:last-child { border-bottom: none; }
}

/* ── TESTIMONIALS ── */
.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.testi-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    padding: 36px;
}
.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}
.testi-star {
    color: var(--g300);
    font-size: 0.85rem;
}
.testi-quote {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--charcoal);
    margin-bottom: 20px;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    flex-shrink: 0;
}
.testi-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--charcoal);
    display: block;
}
.testi-role {
    font-size: 0.78rem;
    color: var(--warm-grey);
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .testi-grid { grid-template-columns: 1fr; }
}

/* ── LARGE QUOTE BLOCK ── */
.quote-block {
    padding: 80px 0;
    background: var(--charcoal);
    text-align: center;
}
.quote-block blockquote {
    font-family: var(--ff-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.5;
}
.quote-block cite {
    display: block;
    margin-top: 24px;
    font-family: var(--ff-sans);
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(251, 245, 234, 0.45);
}

/* ── FAQ ACCORDION ── */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-family: var(--ff-sans);
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color 0.2s;
}
.faq-trigger:hover { color: var(--terracotta); }
.faq-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1.5px solid var(--border-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--warm-grey);
    transition: var(--transition);
}
.faq-item.open .faq-icon {
    background: var(--r400);
    border-color: var(--r400);
    color: white;
    transform: rotate(45deg);
}
.faq-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.38s var(--ease);
}
.faq-body p {
    padding: 0 0 24px;
    font-size: 0.95rem;
}

/* ── FINAL CTA ── */
.cta-banner {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 0;
    text-align: center;
}
.cta-banner h2 { max-width: 700px; margin: 0 auto 20px; }
.cta-banner p { max-width: 540px; margin: 0 auto 40px; }
.cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── FOOTER (matches domain1 dark style exactly) ── */
footer {
    background: #111;
    padding: 3rem 5% 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: #875361;
    letter-spacing: .02em;
    text-decoration: none;
    margin-bottom: 0.8rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
    line-height: 1.7;
    max-width: 240px;
    font-weight: 300;
}

.footer-email {
    display: block;
    margin-top: 8px;
    font-size: 0.82rem;
    color: var(--g300);
    text-decoration: none;
    transition: opacity 0.2s;
}
.footer-email:hover { opacity: 0.75; }

.footer-col h4 {
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col a {
    display: block;
    font-size: .82rem;
    color: rgba(255, 255, 255, .4);
    margin-bottom: .5rem;
    transition: color .2s;
    text-decoration: none;
}

.footer-col a:hover { color: var(--g300); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, .25);
}

.footer-bottom a {
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color .2s;
}
.footer-bottom a:hover { color: var(--g300); }

.footer-legal-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── MOBILE STICKY BAR ── */
.sticky-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: 12px 20px;
    z-index: 99;
}
@media (max-width: 768px) {
    .sticky-mobile-bar { display: block; }
    body { padding-bottom: 72px; }
}

/* ── UTILITY ── */
.divider {
    width: 48px;
    height: 2px;
    background: var(--g300);
    margin: 20px 0;
}
.divider.centered { margin: 20px auto; }

.text-center { text-align: center; }

/* ── ADDITIONAL UTILITY & COMPONENT CLASSES (MIGRATED FROM INLINE STYLES) ── */
.split-large-gap {
    gap: 100px;
}
@media (max-width: 992px) {
    .split-large-gap {
        gap: 40px;
    }
}

.callout-italic {
    margin-top: 8px;
    font-style: italic;
    font-family: var(--ff-serif);
    font-size: 1.1rem;
    color: var(--charcoal);
}

.mt-8 {
    margin-top: 8px;
}

.mt-18 {
    margin-top: 18px;
}

.cta-center-wrap {
    text-align: center;
    margin-top: 48px;
}

.cta-footnote {
    margin-top: 14px;
    font-size: 0.82rem;
    font-style: italic;
    color: var(--warm-grey);
}

.section-label.centered {
    display: block;
    text-align: center;
    margin-bottom: 16px;
}

.btn-full-width {
    width: 100%;
    justify-content: center;
}

/* ── REUSABLE LAYERED IMAGE COMPONENT ── */
.layered-image-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 5;
    z-index: 1;
}

.layered-image-backdrop {
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background: var(--warm);
    border: 2px solid rgba(30, 26, 24, 0.15);
    z-index: 1;
    box-shadow: 0 4px 20px rgba(30, 26, 24, 0.05);
}

.layered-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(30, 26, 24, 0.12);
    border: 1px solid rgba(30, 26, 24, 0.2);
}

.layered-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70%;
    display: block;
}

@media (max-width: 992px) {
    .layered-image-wrap {
        max-width: 320px;
        margin: 0 auto 20px;
    }
    .layered-image-backdrop {
        top: 24px;
        left: -24px;
    }
}

/* ── ASYMMETRIC GRID LAYOUT ── */
.split-asymmetric {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr; /* 62.5% content / 37.5% image */
    gap: 60px;
    align-items: center;
}
@media (max-width: 992px) {
    .split-asymmetric {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* "Unknown Canvas" full-width approach section */
.approach-header {
  max-width: 720px;
  margin-bottom: 40px;
}

.approach-image-full {
  width: 100%;
  aspect-ratio: 1672 / 941;
  margin-bottom: 48px;
  border-radius: 4px;
  overflow: hidden;
}

.approach-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.approach-body {
  max-width: 720px;
}

@media (max-width: 768px) {
  .approach-image-full {
    margin-bottom: 32px;
  }
}

/* Core Value Proposition Section */
.hero-value-prop {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
    background: var(--ivory);
}

.value-prop-wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.value-prop-wrap h2 {
    font-family: var(--ff-serif);
    font-size: 2.2rem;
    color: var(--ink);
    margin-bottom: 24px;
    line-height: 1.3;
}

.grid-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    margin-top: 36px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-value-prop {
        padding: 60px 0;
    }
    .value-prop-wrap h2 {
        font-size: 1.8rem;
    }
    .grid-checklist {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Split 2-column content layout below the full-width image */
.struggling-content-grid {
    display: grid;
    grid-template-columns: 42% 52%;
    gap: 6%;
    margin-top: 56px;
    align-items: start;
}

.struggling-content-left {
    position: sticky;
    top: 100px; /* Pin the heading column while scrolling on desktop */
}

.struggling-content-left h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 24px;
}

.struggling-content-left .intro-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 20px;
}

.struggling-content-left .intro-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--charcoal);
}

.struggling-cta-wrap {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(30, 26, 24, 0.12);
}

@media (max-width: 992px) {
    .struggling-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    .struggling-content-left {
        position: static;
    }
}

/* Full-width variant of the existing layered-image system */
.layered-image-wrap-full {
  width: 100%;
  aspect-ratio: 1672 / 941; /* Solves circular height collapse */
  max-height: 520px;      /* prevents the image ballooning in height */
  position: relative;
  z-index: 1;
}

.layered-image-wrap-full .layered-image {
  width: 100%;
  height: 100%; /* Match parent container height determined by aspect-ratio */
  position: relative;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(30, 26, 24, 0.12);
  border: 1px solid rgba(30, 26, 24, 0.2);
}

.layered-image-wrap-full .layered-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.layered-image-wrap-full .layered-image-backdrop {
  position: absolute;
  top: 30px;
  left: -40px;
  width: 100%;
  height: 100%;
  background: var(--warm);
  border: 2px solid rgba(30, 26, 24, 0.15);
  z-index: -1; /* Render behind siblings */
  box-shadow: 0 4px 20px rgba(30, 26, 24, 0.05);
}

@media (max-width: 768px) {
  .layered-image-wrap-full .layered-image-backdrop {
    top: 24px;
    left: -24px;
    width: 100%;
    height: 100%;
  }
}

/* 2-Column Checklist variant */
.checklist-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 28px;
}

@media (max-width: 768px) {
    .checklist-two-col:not(.mobile-two-col) {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .checklist-two-col.mobile-two-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 14px;
        font-size: 0.82rem;
    }
    .checklist-two-col.mobile-two-col li {
        padding-left: 18px;
    }
}

/* Confidence Foundation Section */
.confidence-foundation {
    padding: 80px 0;
}

.beliefs-card {
    background: var(--ivory);
    border: 1px solid rgba(30, 26, 24, 0.28);
    padding: 32px;
    box-shadow: 0 8px 32px rgba(30, 26, 24, 0.06);
    margin-bottom: 24px;
}

.beliefs-list {
    margin: 0;
    gap: 12px;
}

.foundation-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 16px;
}

.foundation-sub-lead {
    font-weight: 500;
    color: var(--r400);
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.foundation-footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--charcoal);
    font-style: italic;
}

/* Approach Section Helpers */
.approach-transition {
    font-weight: 500;
    margin: 32px 0 16px 0;
    font-size: 1.1rem;
    color: var(--ink);
}

.approach-footer {
    margin-top: 36px;
    padding: 24px;
    background: var(--ivory);
    border-left: 3px solid var(--g300);
    border-radius: 2px;
    margin-bottom: 32px;
}

.approach-footer p {
    margin: 0;
    line-height: 1.6;
}

.approach-highlight {
    font-size: 1.15rem;
    color: var(--ink);
    margin-top: 8px !important;
}

/* Coaching Experience Grid Section */
.coaching-experience {
    padding: 80px 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.experience-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    padding: 36px 32px;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    box-shadow: 0 4px 20px rgba(30, 26, 24, 0.03);
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(30, 26, 24, 0.08);
    background: var(--cream);
}

.experience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--ink);
    font-family: var(--ff-serif);
}

.experience-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin: 0;
}

@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

/* Suitability / Fit Section */
.suitability-section {
    padding: 80px 0;
}

.suitability-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin-top: 24px;
}

.suitability-desc p {
    margin-bottom: 16px;
}

.suitability-desc p:last-child {
    margin-bottom: 0;
}

/* Parents Section - Split 2-column content layout below full-width image */
.parents-content-grid {
    display: grid;
    grid-template-columns: 42% 52%;
    gap: 6%;
    margin-top: 56px;
    align-items: start;
}

.parents-content-left {
    position: sticky;
    top: 100px;
}

.parents-content-left h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 24px;
}

.parents-content-left .intro-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 20px;
}

.parents-content-left .intro-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.parents-content-left .intro-transition {
    font-weight: 500;
    color: var(--r400);
    font-size: 1.15rem;
}

.parents-footer {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(30, 26, 24, 0.12);
}

.parents-footer p {
    margin: 0;
    line-height: 1.6;
}

.parents-highlight {
    font-size: 1.15rem;
    color: var(--ink);
    margin-top: 8px !important;
}

@media (max-width: 992px) {
    .parents-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    .parents-content-left {
        position: static;
    }
}

/* Program Card Details Styles */
.program-meta-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--charcoal);
}

.program-meta-list li strong {
    color: var(--ink);
}

.program-meta-title {
    font-size: 0.92rem;
    color: var(--ink);
    margin: 20px 0 8px 0;
}

.program-meta-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.program-meta-checklist li {
    position: relative;
    padding-left: 20px;
}

.program-meta-checklist li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: var(--g300);
    font-weight: bold;
}

/* About Section Custom Styles */
.about-subtitle {
    font-size: 1.15rem;
    color: var(--r400);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.4;
}

.about-callout-quote {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--ink);
    border-left: 3px solid var(--r400);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
}

.about-mission-card {
    background: var(--ivory);
    border: 1px solid rgba(30, 26, 24, 0.18);
    padding: 24px 28px;
    border-radius: 4px;
    margin: 28px 0;
    box-shadow: 0 4px 20px rgba(30, 26, 24, 0.03);
}

.about-mission-card h4 {
    font-family: var(--ff-serif);
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--ink);
}

.about-mission-card p {
    font-size: 0.95rem;
    color: var(--charcoal);
    margin: 0 !important;
    line-height: 1.5;
}

/* About Section - Split 2-column content layout below full-width image */
.about-content-grid {
    display: grid;
    grid-template-columns: 42% 52%;
    gap: 6%;
    margin-top: 56px;
    align-items: start;
}

.about-content-left {
    position: sticky;
    top: 100px;
}

.about-content-left h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    .about-content-left {
        position: static;
    }
}

/* Parent Concerns Cards Section */
.parent-concerns {
    padding: 80px 0;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.concern-card {
    background: var(--ivory);
    border: 1px solid rgba(30, 26, 24, 0.2);
    padding: 40px 36px;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(30, 26, 24, 0.03);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.concern-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(30, 26, 24, 0.06);
    border-color: rgba(30, 26, 24, 0.35);
}

.concern-card h3 {
    font-size: 1.25rem;
    color: var(--ink);
    font-family: var(--ff-serif);
    margin-bottom: 16px;
    line-height: 1.4;
}

.concern-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--charcoal);
    margin: 0;
}

@media (max-width: 768px) {
    .concerns-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Framed Image layout instead of offset backdrop */
.framed-image-wrap {
    width: 100%;
    aspect-ratio: 1672 / 941;
    max-height: 520px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(30, 26, 24, 0.08);
    border: 1px solid rgba(30, 26, 24, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.framed-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* About image7.png 1232x692 specific layout */
.about-image-wrap {
    width: 100%;
    max-width: 1232px;
    margin: 0 auto;
    aspect-ratio: 1232 / 692;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(30, 26, 24, 0.08);
    border: 1px solid rgba(30, 26, 24, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
