﻿/* ════ HERO ════ */
.hero {
    background: linear-gradient(155deg, var(--navy-dark) 0%, var(--navy) 48%, var(--teal) 100%);
    padding: 11rem 2.5rem 7rem;
    min-height: 75vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 80% 15%, rgba(169,202,214,0.1) 0%, transparent 50%), radial-gradient(ellipse at 8% 85%, rgba(111,146,120,0.08) 0%, transparent 48%), linear-gradient(180deg, transparent 40%, rgba(7,37,58,0.55) 100%);
}

.hero-compass {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    opacity: 0.04;
    pointer-events: none;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-kicker {
    font-family: var(--label);
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.75rem;
    animation: fadeUp 0.9s ease both 0.1s;
}

.hero-kicker::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.55;
}

.hero h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    color: var(--white);
    line-height: 1.06;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    max-width: 820px;
    animation: fadeUp 0.95s ease both 0.28s;
}

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

.hero-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1rem, 1.9vw, 1.3rem);
    color: rgba(169,202,214,0.68);
    max-width: 600px;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.9s ease both 0.42s;
}

.hero-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(169,202,214,0.12);
    padding-top: 1.75rem;
    animation: fadeUp 0.9s ease both 0.55s;
}

.hero-meta-pill {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    color: rgba(169,202,214,0.48);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-meta-pill::before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.9s ease both 0.7s;
}

.btn-gold {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    background: var(--gold);
    padding: 0.95rem 2.2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.btn-gold:hover {
    background: var(--gold-champ);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(216,168,79,0.28);
}

.btn-gold svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn-ghost-light {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    border: 1px solid rgba(169,202,214,0.3);
    padding: 0.95rem 2.2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
}

.btn-ghost-light:hover {
    border-color: var(--blue);
    background: rgba(169,202,214,0.08);
}

/* ════ UTILITIES ════ */
.kicker {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.9rem;
}

.k-teal {
    color: var(--teal);
}

.k-gold {
    color: var(--gold-dark);
}

.k-light {
    color: var(--blue);
    opacity: 0.72;
}

.k-sage {
    color: var(--sage);
}

.h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.h2-navy {
    color: var(--navy);
}

.h2-white {
    color: var(--white);
}

.h2-em {
    font-style: italic;
    font-weight: 300;
}

.prose {
    font-family: var(--body);
    font-weight: 300;
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.88;
    margin-bottom: 1.25rem;
}

.prose:last-child {
    margin-bottom: 0;
}

.prose strong {
    font-weight: 600;
    color: var(--ink-mid);
}

/* ════ BUILT FOR ════ */
.built-for {
    background: var(--white);
    padding: 9rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.built-for-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1px 1.5fr;
    gap: 6rem;
    align-items: start;
}

.bf-rule {
    background: var(--cream-deep);
    align-self: stretch;
}

.bf-left .h2 {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    margin-bottom: 1.5rem;
}

.conviction-box {
    background: var(--navy);
    border-radius: 4px;
    padding: 2.25rem 2rem;
    margin-top: 2rem;
}

.conviction-box p {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--cream);
    line-height: 1.62;
    margin-bottom: 1rem;
}

.conviction-box p:last-child {
    margin-bottom: 0;
    color: rgba(169,202,214,0.65);
    font-size: 0.97rem;
}

.bf-right {
}

.bf-right .prose {
    margin-bottom: 1.35rem;
}

.fit-list {
    list-style: none;
    margin-top: 0.5rem;
}

.fit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cream-deep);
    font-family: var(--body);
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.55;
}

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

.fit-item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
    margin-top: 0.5em;
    opacity: 0.7;
}

.bf-note {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--ink-muted);
    line-height: 1.72;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream-deep);
}

/* ════ WHAT MAKES THIS DIFFERENT ════ */
.different {
    background: var(--navy-dark);
    padding: 9rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.different::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 90% 15%, rgba(31,111,115,0.18) 0%, transparent 52%), radial-gradient(ellipse at 5% 85%, rgba(216,168,79,0.05) 0%, transparent 48%);
}

.different-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.different-header {
    max-width: 600px;
    margin-bottom: 4rem;
}

.different-header .h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.different-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5px;
    background: rgba(169,202,214,0.08);
    border: 1.5px solid rgba(169,202,214,0.08);
}

.diff-card {
    background: rgba(255,255,255,0.04);
    padding: 2.5rem 2.25rem 2.75rem;
    border-bottom: 2px solid transparent;
    transition: background 0.28s, border-color 0.28s;
    position: relative;
}

.diff-card:hover {
    background: rgba(255,255,255,0.09);
    border-bottom-color: var(--gold);
}

.diff-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(169,202,214,0.08);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

.diff-card h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.diff-card p {
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(189,213,200,0.72);
    line-height: 1.78;
}

/* ════ CORE AREAS ════ */
.core-areas {
    background: var(--cream-mid);
    padding: 9rem 2.5rem;
    border-top: 1px solid var(--cream-deep);
    border-bottom: 1px solid var(--cream-deep);
}

.core-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.core-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.core-left .h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    margin-bottom: 1.25rem;
}

.core-left .prose {
    margin-bottom: 1.25rem;
}

.core-note {
    background: var(--sage-wash);
    border-left: 3px solid var(--sage);
    border-radius: 0 4px 4px 0;
    padding: 1.5rem 1.75rem;
    margin-top: 1.75rem;
}

.core-note p {
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.72;
    margin: 0;
}

.core-note p strong {
    font-weight: 600;
    color: var(--ink-mid);
}

.core-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    background: var(--cream-deep);
    border: 1.5px solid var(--cream-deep);
}

.core-card {
    background: var(--white);
    padding: 1.85rem 1.75rem 2rem;
    border-bottom: 2px solid transparent;
    transition: background 0.25s, border-color 0.28s;
}

.core-card:hover {
    background: var(--cream);
    border-bottom-color: var(--teal);
}

.core-card h4 {
    font-family: var(--serif);
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.005em;
}

.core-card p {
    font-family: var(--body);
    font-size: 0.87rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.72;
}

/* ════ HOW SESSIONS WORK ════ */
.sessions {
    background: var(--navy);
    padding: 9rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.sessions-compass {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.035;
    pointer-events: none;
}

.sessions-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sessions-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 7rem;
    align-items: start;
}

.sessions-left .h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    margin-bottom: 1.25rem;
}

.sessions-left p {
    font-family: var(--body);
    font-size: 0.97rem;
    font-weight: 300;
    color: rgba(189,213,200,0.75);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.sessions-left p:last-child {
    margin-bottom: 0;
}

.sessions-left p.italic {
    font-family: var(--serif);
    font-style: italic;
    color: rgba(189,213,200,0.6);
}

.sessions-right {
}

.session-steps {
    list-style: none;
}

.session-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 1.5rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(169,202,214,0.1);
    align-items: flex-start;
}

.session-step:first-child {
    padding-top: 0;
    border-top: 1px solid rgba(169,202,214,0.1);
}

.session-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(169,202,214,0.08);
    border: 1px solid rgba(169,202,214,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s;
}

.session-step:hover .step-circle {
    background: rgba(216,168,79,0.15);
    border-color: rgba(216,168,79,0.3);
}

.step-circle span {
    font-family: var(--label);
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(169,202,214,0.65);
}

.step-content {
}

.step-title {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    display: block;
    margin-bottom: 0.25rem;
}

.step-desc {
    font-family: var(--body);
    font-size: 0.87rem;
    font-weight: 300;
    color: rgba(189,213,200,0.68);
    line-height: 1.68;
}

.sessions-note {
    background: rgba(169,202,214,0.06);
    border-radius: 4px;
    padding: 1.5rem 1.75rem;
    margin-top: 2rem;
    font-family: var(--body);
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(169,202,214,0.5);
    line-height: 1.72;
}

/* ════ MINDFULNESS ════ */
.mindfulness-section {
    background: var(--navy);
    padding: 7rem 2.5rem;
    border-top: 1px solid rgba(169,202,214,0.12);
    border-bottom: 1px solid rgba(169,202,214,0.12);
    position: relative;
    overflow: hidden;
}

.mind-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.mind-left .h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin-bottom: 1.25rem;
    color: var(--white);
}

.mind-right .prose {
    color: rgba(189,213,200,0.72);
}

.mind-pull {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: var(--cream);
    line-height: 1.62;
    border-left: 2px solid var(--sage-light);
    padding-left: 1.5rem;
    margin: 1.75rem 0;
    display: block;
}

/* ════ FAMILY PARTNERSHIP ════ */
.family {
    background: var(--white);
    padding: 9rem 2.5rem;
}

.family-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.family-layout {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 5rem;
    align-items: start;
}

.family-rule {
    background: var(--cream-deep);
    align-self: stretch;
}

.family-left .h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin-bottom: 1.25rem;
}

.family-left .prose {
    margin-bottom: 1.25rem;
}

.family-quote {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--navy);
    line-height: 1.55;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.family-right {
}

.family-items {
    list-style: none;
}

.family-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream-deep);
}

.family-item:first-child {
    padding-top: 0;
}

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

.fi-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sage-wash);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

.fi-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--sage);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fi-content {
}

.fi-name {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
    display: block;
    margin-bottom: 0.15rem;
}

.fi-desc {
    font-family: var(--body);
    font-size: 0.87rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.65;
}

/* ════ FORMAT & PRICING ════ */
.format {
    background: var(--cream);
    padding: 9rem 2.5rem;
    border-top: 1px solid var(--cream-deep);
}

.format-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.format-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.format-card {
    background: var(--white);
    border: 1px solid var(--cream-deep);
    border-radius: 4px;
    overflow: hidden;
}

.format-card-header {
    background: var(--navy);
    padding: 2rem 2.25rem;
}

.format-card-header h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.01em;
}

.format-card-header p {
    font-family: var(--body);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(169,202,214,0.55);
    line-height: 1.65;
    margin-top: 0.35rem;
}

.format-card-body {
    padding: 1.75rem 2.25rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--cream-deep);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-key {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.spec-val {
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink-mid);
    text-align: right;
}

.spec-val.price {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--navy);
}

/* Service blocks table */
.blocks-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
}

.blocks-table th {
    font-family: var(--label);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    padding: 0.85rem 1rem;
    text-align: left;
    background: var(--cream-mid);
    border-bottom: 2px solid var(--cream-deep);
}

.blocks-table td {
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink-muted);
    padding: 0.95rem 1rem;
    border-bottom: 1px solid var(--cream-deep);
}

.blocks-table tr:last-child td {
    border-bottom: none;
}

.blocks-table td:first-child {
    font-weight: 400;
    color: var(--ink-mid);
}

.blocks-table td.highlight {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
}

/* Summer start callout */
.summer-callout {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
    border-radius: 4px;
    padding: 2.5rem 2.25rem;
    margin-top: 3rem;
}

.summer-callout h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}

.summer-callout p {
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(216,236,242,0.72);
    line-height: 1.78;
    margin-bottom: 1.25rem;
}

.summer-callout ul {
    list-style: none;
}

.summer-callout li {
    font-family: var(--body);
    font-size: 0.87rem;
    font-weight: 300;
    color: rgba(216,236,242,0.65);
    padding: 0.3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.55;
}

.summer-callout li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 0.5em;
    opacity: 0.8;
}

.btn-summer {
    font-family: var(--label);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--teal);
    background: var(--white);
    padding: 0.78rem 1.75rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
    margin-top: 1.25rem;
}

.btn-summer:hover {
    background: var(--cream);
    transform: translateY(-1px);
}

/* ════ SDP ════ */
.sdp {
    background: var(--gold-wash);
    border-top: 1px solid var(--gold-pale);
    border-bottom: 1px solid var(--gold-pale);
    padding: 7rem 2.5rem;
}

.sdp-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.sdp-left .h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin-bottom: 1.25rem;
}

.sdp-left .prose {
    color: var(--ink-muted);
}

.sdp-right {
}

.sdp-items {
    list-style: none;
    margin-bottom: 1.75rem;
}

.sdp-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--gold-pale);
    font-family: var(--body);
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.65;
}

.sdp-item:first-child {
    padding-top: 0;
}

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

.sdp-item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-dark);
    flex-shrink: 0;
    margin-top: 0.55em;
    opacity: 0.7;
}

.sdp-disclaimer {
    background: var(--white);
    border: 1px solid var(--gold-pale);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    font-family: var(--body);
    font-size: 0.84rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.72;
}

.sdp-disclaimer strong {
    font-weight: 600;
    color: var(--ink-mid);
}

/* ════ SCOPE ════ */
.scope {
    background: var(--navy-dark);
    padding: 8rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.scope-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.scope-layout {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 5rem;
    align-items: start;
}

.scope-rule {
    background: rgba(169,202,214,0.1);
    align-self: stretch;
}

.scope-col-label {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
}

.scope-col-label.green {
    color: var(--teal-mid);
}

.scope-col-label.gold {
    color: rgba(216,168,79,0.6);
}

.scope-list {
    list-style: none;
}

.scope-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(189,213,200,0.75);
    line-height: 1.65;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(169,202,214,0.08);
}

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

.scope-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5em;
}

.scope-dot.g {
    background: var(--teal-mid);
    opacity: 0.65;
}

.scope-dot.r {
    background: rgba(216,168,79,0.5);
}

.scope-note {
    font-family: var(--body);
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(169,202,214,0.45);
    line-height: 1.72;
    font-style: italic;
    border-top: 1px solid rgba(169,202,214,0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    grid-column: 1 / -1;
}

/* ════ NOT A FIT ════ */
.not-fit {
    background: var(--cream-mid);
    padding: 7rem 2.5rem;
    border-top: 1px solid var(--cream-deep);
}

.not-fit-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
    align-items: start;
}

.not-fit-left .h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin-bottom: 1.25rem;
}

.not-fit-left .prose {
    color: var(--ink-muted);
}

.not-fit-right .prose {
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
}

.not-fit-list {
    list-style: none;
}

.not-fit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--cream-deep);
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.65;
}

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

.not-fit-item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ink-muted);
    flex-shrink: 0;
    margin-top: 0.55em;
    opacity: 0.35;
}

.not-fit-follow {
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.78;
    margin-top: 1.25rem;
    font-style: italic;
}

/* ════ PROGRESS ════ */
.progress-section {
    background: var(--white);
    padding: 9rem 2.5rem;
}

.progress-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.progress-layout {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3.5rem;
}

.progress-rule {
    background: var(--cream-deep);
    align-self: stretch;
}

.progress-heart {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.1rem, 2vw, 1.32rem);
    color: var(--navy);
    line-height: 1.65;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.progress-body {
    font-family: var(--body);
    font-size: 0.97rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.88;
}

.progress-list {
    list-style: none;
    margin-top: 1rem;
}

.progress-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--cream-deep);
    font-family: var(--body);
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.55;
}

.progress-item:first-child {
    padding-top: 0;
}

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

.progress-item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
    margin-top: 0.5em;
    opacity: 0.7;
}

/* ════ GUIDANCE CTA ════ */
.guidance {
    background: var(--navy);
    padding: 8rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.guidance::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(216,168,79,0.08) 0%, transparent 55%);
    pointer-events: none;
}

.guidance-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.guidance-left .h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.guidance-left p {
    font-family: var(--body);
    font-size: 0.97rem;
    font-weight: 300;
    color: rgba(189,213,200,0.72);
    line-height: 1.82;
    margin-bottom: 1.25rem;
}

.guidance-right {
}

.guidance-topics {
    list-style: none;
    margin-bottom: 2rem;
}

.guidance-topic {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(169,202,214,0.1);
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(189,213,200,0.72);
    line-height: 1.6;
}

.guidance-topic:first-child {
    padding-top: 0;
}

.guidance-topic:last-child {
    border-bottom: none;
}

.guidance-topic::before {
    content: '·';
    color: var(--gold);
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: -0.1em;
    opacity: 0.7;
}

.guidance-note {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.88rem;
    color: rgba(169,202,214,0.38);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.btn-guidance-primary {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    background: var(--gold);
    padding: 0.95rem 2.2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: block;
    text-align: center;
    margin-bottom: 0.75rem;
}

.btn-guidance-primary:hover {
    background: var(--gold-champ);
    transform: translateY(-2px);
}

.btn-guidance-secondary {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    border: 1px solid rgba(169,202,214,0.25);
    padding: 0.95rem 2.2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: block;
    text-align: center;
}

.btn-guidance-secondary:hover {
    border-color: var(--blue);
    background: rgba(169,202,214,0.07);
}
