﻿/* ════ HERO ════ */
.hero {
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 45%, var(--teal) 100%);
    padding: 10rem 2.5rem 6.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 90% 10%, rgba(169,202,214,0.1) 0%, transparent 50%), radial-gradient(ellipse at 5% 90%, rgba(216,168,79,0.08) 0%, transparent 45%);
    pointer-events: none;
}

/* Decorative compass watermark */
.hero-watermark {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.04;
    pointer-events: none;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.75rem;
    animation: fadeUp 0.85s ease both 0.1s;
}

.hero-kicker::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.9s ease both 0.25s;
}

.hero h1 span {
    font-style: italic;
    font-weight: 400;
    color: var(--blue);
    font-size: 1em;
}

.hero-sub {
    font-family: var(--body);
    font-weight: 300;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(216,236,242,0.65);
    max-width: 580px;
    line-height: 1.78;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.9s ease both 0.42s;
}

.hero-casel {
    font-family: var(--body);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(169,202,214,0.55);
    font-style: italic;
    max-width: 540px;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(216,168,79,0.3);
    animation: fadeUp 0.9s ease both 0.55s;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.9s ease both 0.68s;
}

.btn-gold {
    font-family: var(--label);
    font-size: 0.72rem;
    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.6rem;
}

.btn-gold:hover {
    background: var(--gold-champ);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(216,168,79,0.28);
}

.btn-ghost-light {
    font-family: var(--label);
    font-size: 0.72rem;
    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);
}

.hero-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(169,202,214,0.1);
    padding-top: 2rem;
    animation: fadeUp 0.9s ease both 0.82s;
}

.hero-meta-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--label);
    font-size: 0.63rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(169,202,214,0.52);
}

.hero-meta-pill::before {
    content: '·';
    color: var(--gold);
    opacity: 0.5;
}

/* ════ SUMMER ANNOUNCEMENT ════ */
.summer-announce {
    background: linear-gradient(90deg, var(--navy-dark) 0%, var(--teal) 100%);
    border-top: 2px solid var(--gold);
    padding: 0;
}

.sa-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.sa-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.sa-badge {
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 0.3em 0.85em;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.sa-text {
    font-family: var(--body);
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(216,236,242,0.75);
}

.sa-text strong {
    font-weight: 600;
    color: var(--white);
}

.sa-cta {
    font-family: var(--label);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(216,168,79,0.4);
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.22s;
    white-space: nowrap;
    flex-shrink: 0;
}

.sa-cta:hover {
    background: rgba(216,168,79,0.12);
    border-color: var(--gold);
}

/* ════ SUMMER FINDER ════ */
.finder {
    background: var(--gold-wash);
    border-bottom: 1px solid var(--gold-pale);
    padding: 3.5rem 2.5rem;
}

.finder-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.finder-label {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 0.6rem;
}

.finder-title {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
    font-style: italic;
}

.finder-note {
    font-family: var(--body);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--ink-muted);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.finder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    gap: 0.65rem;
}

.finder-btn {
    background: var(--white);
    border: 1.5px solid var(--cream-deep);
    border-radius: 3px;
    padding: 1.15rem 1.1rem;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.22s;
    display: block;
    position: relative;
    overflow: hidden;
}

.finder-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.finder-btn:hover {
    border-color: var(--navy);
    box-shadow: 0 4px 16px rgba(11,53,81,0.1);
}

.finder-btn:hover::after {
    transform: scaleX(1);
}

.fb-age {
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 0.35rem;
}

.fb-name {
    font-family: var(--serif);
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--navy);
    display: block;
    margin-bottom: 0.3rem;
    line-height: 1.25;
    letter-spacing: -0.005em;
}

.fb-tag {
    font-family: var(--body);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--ink-muted);
    letter-spacing: 0.01em;
}

.finder-schools-note {
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--ink-muted);
    margin-top: 1.25rem;
    font-style: italic;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gold-pale);
}

.finder-schools-note a {
    color: var(--teal);
    text-decoration: none;
    border-bottom: 1px solid rgba(31,111,115,0.3);
    transition: border-color 0.2s;
}

.finder-schools-note a:hover {
    border-color: var(--teal);
}

/* ════ SECTION UTILITIES ════ */
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.kicker-navy {
    color: var(--teal);
}

.kicker-navy::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--teal);
    opacity: 0.5;
}

.kicker-light {
    color: var(--blue);
    opacity: 0.75;
}

.kicker-light::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--blue);
    opacity: 0.4;
}

.kicker-gold {
    color: var(--gold-dark);
}

.kicker-gold::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.section-hed {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hed-navy {
    color: var(--navy);
}

.hed-white {
    color: var(--white);
}

.hed-accent {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
}

/* ════ SUMMER SERIES SECTION ════ */
.summer {
    background: var(--navy-dark);
    padding: 8rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.summer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 95% 10%, rgba(31,111,115,0.25) 0%, transparent 50%), radial-gradient(ellipse at 5% 90%, rgba(111,146,120,0.12) 0%, transparent 45%);
    pointer-events: none;
}

.summer-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.summer-header {
    margin-bottom: 3.5rem;
}

.summer-header .section-hed {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    margin-bottom: 0.75rem;
}

.summer-header-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: end;
}

.summer-deck {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1rem, 1.8vw, 1.22rem);
    color: rgba(189,213,200,0.75);
    line-height: 1.72;
    font-weight: 400;
    max-width: 520px;
}

.summer-hdr-right {
    text-align: right;
}

.summer-hdr-right p {
    font-family: var(--body);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(169,202,214,0.38);
    line-height: 1.72;
    max-width: 220px;
    margin-left: auto;
    margin-bottom: 1rem;
}

/* Program cards */
.prog-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5px;
}

.prog-row {
    display: grid;
    gap: 1.5px;
}

.prog-row.three {
    grid-template-columns: repeat(3, 1fr);
}

.prog-row.two {
    grid-template-columns: repeat(2, 1fr);
}

.pc {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(169,202,214,0.08);
    padding: 2.5rem 2.25rem 2.75rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.pc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--teal-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.38s ease;
}

.pc:hover {
    background: rgba(255,255,255,0.08);
}

.pc:hover::before {
    transform: scaleX(1);
}

.pc:hover .pc-arrow {
    gap: 0.9rem;
    opacity: 1;
}

.pc.featured {
    background: rgba(31,111,115,0.1);
    border-color: rgba(31,111,115,0.22);
}

.pc.featured::before {
    transform: scaleX(0.35);
    background: var(--teal);
}

.pc.featured:hover::before {
    transform: scaleX(1);
}

.pc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.pc-age {
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.pc-pipe {
    width: 1px;
    height: 10px;
    background: rgba(169,202,214,0.2);
}

.pc-format {
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(169,202,214,0.42);
    font-weight: 300;
}

.pc-duration {
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(169,202,214,0.42);
    font-weight: 300;
}

.pc h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    color: var(--white);
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin-bottom: 0.85rem;
}

.pc > p {
    font-family: var(--body);
    font-weight: 300;
    font-size: 0.93rem;
    color: rgba(189,213,200,0.72);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.pc-skills {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.chip {
    font-family: var(--label);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sage-light);
    background: rgba(111,146,120,0.12);
    border: 1px solid rgba(111,146,120,0.2);
    padding: 0.2em 0.65em;
    border-radius: 2px;
}

.pc-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap 0.25s, opacity 0.25s;
    opacity: 0.7;
}

.pc-arrow svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ════ WHICH OPTION ════ */
.which {
    background: var(--cream);
    padding: 7rem 2.5rem;
    border-top: 1px solid var(--cream-deep);
}

.which-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.which-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.which-card {
    background: var(--white);
    border: 1px solid var(--cream-deep);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}

.which-card:hover {
    box-shadow: 0 12px 40px rgba(11,53,81,0.1);
    transform: translateY(-3px);
}

.which-card-top {
    padding: 2rem 2rem 1.75rem;
    border-bottom: 1px solid var(--cream-deep);
}

.wc-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-icon.g {
    background: rgba(31,111,115,0.1);
}

.wc-icon.i {
    background: rgba(216,168,79,0.1);
}

.wc-icon.n {
    background: rgba(11,53,81,0.08);
}

.wc-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wc-icon.g svg {
    stroke: var(--teal);
}

.wc-icon.i svg {
    stroke: var(--gold-dark);
}

.wc-icon.n svg {
    stroke: var(--navy);
}

.which-card h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: 0.35rem;
}

.which-card .wc-sub {
    font-family: var(--label);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sage);
}

.which-card-body {
    padding: 1.75rem 2rem;
    flex: 1;
}

.which-card-body p {
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.78;
    margin-bottom: 1rem;
}

.which-list {
    list-style: none;
}

.which-list li {
    font-family: var(--body);
    font-size: 0.86rem;
    font-weight: 300;
    color: var(--ink-muted);
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.55;
}

.which-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5em;
}

.which-card.g .which-list li::before {
    background: var(--teal);
}

.which-card.i .which-list li::before {
    background: var(--gold-dark);
}

.which-card.n .which-list li::before {
    background: var(--navy);
}

.which-card-foot {
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--cream-deep);
}

.btn-card-cta {
    font-family: var(--label);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: gap 0.22s;
}

.btn-card-cta.teal {
    color: var(--teal);
}

.btn-card-cta.gold {
    color: var(--gold-dark);
}

.btn-card-cta.navy {
    color: var(--navy);
}

.btn-card-cta:hover {
    gap: 0.8rem;
}

.btn-card-cta svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ════ SESSION STRUCTURE ════ */
.session {
    background: linear-gradient(160deg, var(--navy) 0%, var(--teal) 100%);
    padding: 8rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.session::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 50%, rgba(216,168,79,0.06) 0%, transparent 55%);
    pointer-events: none;
}

.session-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.session-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
    align-items: start;
}

.session-left {
    padding-top: 0.5rem;
}

.session-left .section-hed {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1.25rem;
}

.session-left p {
    font-family: var(--body);
    font-weight: 300;
    font-size: 0.97rem;
    color: rgba(169,202,214,0.6);
    line-height: 1.82;
    margin-bottom: 1.5rem;
}

.session-casel-note {
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(169,202,214,0.45);
    line-height: 1.68;
    font-style: italic;
    border-left: 2px solid rgba(216,168,79,0.3);
    padding-left: 1rem;
}

.session-steps {
    list-style: none;
}

.step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0 1.5rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(169,202,214,0.1);
    align-items: flex-start;
    transition: all 0.25s;
    cursor: default;
}

.step:first-child {
    border-top: 1px solid rgba(169,202,214,0.1);
    padding-top: 0;
}

.step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step:hover .step-num-circle {
    background: var(--gold);
}

.step:hover .step-num-circle span {
    color: var(--navy);
}

.step:hover .step-title {
    color: var(--white);
}

.step-num-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(169,202,214,0.1);
    border: 1px solid rgba(169,202,214,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.15rem;
    transition: background 0.25s;
}

.step-num-circle span {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(169,202,214,0.7);
    letter-spacing: 0.05em;
    transition: color 0.25s;
}

.step-content {
}

.step-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(216,236,242,0.9);
    letter-spacing: -0.005em;
    margin-bottom: 0.3rem;
    transition: color 0.25s;
    line-height: 1.3;
}

.step-time {
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    display: block;
    margin-bottom: 0.35rem;
}

.step-desc {
    font-family: var(--body);
    font-size: 0.87rem;
    font-weight: 300;
    color: rgba(189,213,200,0.7);
    line-height: 1.72;
}

/* ════ HOME PRACTICE ════ */
.home-practice {
    background: var(--white);
    padding: 8rem 2.5rem;
    border-top: 3px solid var(--gold);
}

.hp-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.hp-layout {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3.5rem;
}

.hp-rule {
    background: var(--cream-deep);
    align-self: stretch;
}

.hp-left {
}

.hp-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.58;
    margin-bottom: 1.5rem;
}

.hp-left p {
    font-family: var(--body);
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--ink-muted);
    line-height: 1.82;
    margin-bottom: 1.1rem;
}

.hp-right {
}

.hp-items {
    list-style: none;
}

.hp-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 1.25rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--cream-deep);
    align-items: flex-start;
}

.hp-item:first-child {
    padding-top: 0;
}

.hp-item:last-child {
    border-bottom: none;
}

.hpi-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--blue-wash);
    border: 1px solid var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hpi-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hpi-content {
}

.hpi-name {
    font-family: var(--serif);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    display: block;
    margin-bottom: 0.25rem;
    letter-spacing: -0.005em;
}

.hpi-desc {
    font-family: var(--body);
    font-size: 0.84rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.65;
}

/* ════ YEAR-ROUND PATHWAYS ════ */
.yearround {
    background: var(--cream-mid);
    padding: 8rem 2.5rem;
    border-top: 1px solid var(--cream-deep);
}

.yr-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.yr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.yr-card {
    background: var(--white);
    border: 1px solid var(--cream-deep);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}

.yr-card:hover {
    box-shadow: 0 12px 40px rgba(11,53,81,0.08);
    transform: translateY(-3px);
}

.yr-card-header {
    padding: 2.25rem 2.25rem 2rem;
}

.yr-card-header.navy-bg {
    background: var(--navy);
}

.yr-card-header.teal-bg {
    background: var(--teal);
}

.yr-tag {
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(169,202,214,0.6);
    display: block;
    margin-bottom: 0.65rem;
}

.yr-card-header h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(1.1rem, 1.9vw, 1.45rem);
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.yr-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.yr-meta span {
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(169,202,214,0.45);
}

.yr-card-body {
    padding: 2rem 2.25rem;
    flex: 1;
}

.yr-card-body p {
    font-family: var(--body);
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--ink-mid);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.yr-includes {
    background: var(--cream);
    border-radius: 3px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
}

.yr-includes-lbl {
    font-family: var(--label);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
    margin-bottom: 0.75rem;
}

.yr-includes ul {
    list-style: none;
}

.yr-includes li {
    font-family: var(--body);
    font-size: 0.84rem;
    font-weight: 300;
    color: var(--ink-muted);
    padding: 0.25rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.55;
}

.yr-includes li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
    margin-top: 0.5em;
    opacity: 0.7;
}

.sdp-note {
    background: var(--gold-wash);
    border: 1px solid var(--gold-pale);
    border-radius: 3px;
    padding: 0.9rem 1.1rem;
}

.sdp-note p {
    font-family: var(--body);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gold-dark);
    line-height: 1.65;
    margin: 0 !important;
}

.yr-card-foot {
    padding: 1.25rem 2.25rem 2rem;
    border-top: 1px solid var(--cream-deep);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.yr-foot-note {
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--ink-muted);
    font-style: italic;
}

.btn-navy {
    font-family: var(--label);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    background: var(--navy);
    padding: 0.72rem 1.5rem;
    border-radius: 2px;
    transition: all 0.22s;
    white-space: nowrap;
}

.btn-navy:hover {
    background: var(--navy-mid);
    transform: translateY(-1px);
}

/* ════ SCHOOLS ════ */
.schools {
    background: var(--navy-dark);
    padding: 7rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.schools::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 80%, rgba(31,111,115,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.schools-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.schools-header {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
    align-items: center;
}

.schools-header .section-hed {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 0.75rem;
}

.schools-header-right p {
    font-family: var(--body);
    font-weight: 300;
    font-size: 0.97rem;
    color: rgba(189,213,200,0.72);
    line-height: 1.85;
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(169,202,214,0.07);
    border: 1.5px solid rgba(169,202,214,0.07);
}

.school-card {
    background: rgba(255,255,255,0.03);
    padding: 1.85rem 1.75rem 2.1rem;
    border-bottom: 2px solid transparent;
    transition: background 0.25s, border-color 0.25s;
}

.school-card:hover {
    background: rgba(255,255,255,0.07);
    border-bottom-color: var(--gold);
}

.sc-num {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 300;
    color: rgba(169,202,214,0.1);
    line-height: 1;
    display: block;
    margin-bottom: 0.75rem;
}

.school-card h4 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 0.97rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.005em;
}

.school-card p {
    font-family: var(--body);
    font-size: 0.87rem;
    font-weight: 300;
    color: rgba(189,213,200,0.62);
    line-height: 1.72;
}

.schools-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ════ MATCH SECTION ════ */
.match {
    background: var(--gold-wash);
    border-top: 1px solid var(--gold-pale);
    border-bottom: 1px solid var(--gold-pale);
    padding: 6rem 2.5rem;
}

.match-inner {
    max-width: 900px;
    margin: 0 auto;
}

.match .section-hed {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 0.5rem;
}

.match-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    color: var(--ink-muted);
    line-height: 1.65;
    margin-bottom: 3rem;
    font-weight: 400;
}

.match-list {
    list-style: none;
}

.match-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--gold-pale);
}

.match-item:first-child {
    border-top: 1px solid var(--gold-pale);
}

.mi-scenario {
    font-family: var(--serif);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--navy);
    display: block;
    margin-bottom: 0.2rem;
    letter-spacing: -0.005em;
}

.mi-detail {
    font-family: var(--body);
    font-size: 0.84rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.6;
}

.mi-prog {
    font-family: var(--label);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    border-bottom: 1.5px solid var(--gold-pale);
    padding-bottom: 0.1rem;
    transition: border-color 0.2s;
}

.mi-prog:hover {
    border-color: var(--navy);
}

.match-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.match-cta p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--ink-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.btn-outline-navy {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 0.85rem 2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

/* ════ FINAL CTA ════ */
.final {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--teal) 100%);
    padding: 9rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(216,168,79,0.1) 0%, transparent 55%);
    pointer-events: none;
}

.final-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-ornament {
    font-family: var(--serif);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
    display: block;
    margin-bottom: 2rem;
}

.final h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.final h2 .accent {
    font-style: italic;
    font-weight: 300;
    color: var(--blue);
}

.final > .final-inner > p {
    font-family: var(--body);
    font-weight: 300;
    font-size: 1rem;
    color: rgba(169,202,214,0.55);
    line-height: 1.78;
    max-width: 520px;
    margin: 0 auto 3rem;
}

.final-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.program-shortcuts {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

.shortcut {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(169,202,214,0.12);
    padding: 0.75rem 1.15rem;
    border-radius: 3px;
    transition: all 0.22s;
}

.shortcut:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(216,168,79,0.3);
}

.sc-name {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 0.2rem;
    white-space: nowrap;
}

.sc-age {
    font-family: var(--label);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(169,202,214,0.38);
}

/* ════ SHARED BTN ════ */
.btn-teal {
    font-family: var(--label);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    background: var(--teal);
    padding: 0.78rem 1.5rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
}

.btn-teal:hover {
    background: var(--teal-mid);
    transform: translateY(-1px);
}

.btn-ghost-dark {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    border: 1.5px solid rgba(169,202,214,0.5);
    padding: 0.88rem 2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
}

.btn-ghost-dark:hover {
    border-color: var(--blue);
    background: var(--blue-wash);
}

.btn-outline-white {
    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.28);
    padding: 0.88rem 2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
}

.btn-outline-white:hover {
    border-color: var(--blue);
    background: rgba(169,202,214,0.08);
}

/* Dual card CTAs */
.pc-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.pc-btn-primary {
    font-family: var(--label);
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    background: var(--gold);
    padding: 0.65rem 1.25rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
    white-space: nowrap;
}

.pc-btn-primary:hover {
    background: var(--gold-champ);
    transform: translateY(-1px);
}

.pc-btn-ghost {
    font-family: var(--label);
    font-size: 0.63rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--sage-light);
    border: 1px solid rgba(142,174,150,0.3);
    padding: 0.65rem 1.25rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
    white-space: nowrap;
}

.pc-btn-ghost:hover {
    border-color: var(--sage-light);
    background: rgba(142,174,150,0.08);
    color: var(--white);
}

/* Heading weight updates */
.which-card h3 {
    font-family: var(--head);
    font-weight: 500;
    font-size: 1.35rem;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: 0.35rem;
}

.yr-card-header h3 {
    font-family: var(--head);
    font-weight: 500;
    font-size: clamp(1.2rem, 1.9vw, 1.6rem);
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.school-card h4 {
    font-family: var(--head);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.005em;
}

.step-title {
    font-family: var(--head);
    font-weight: 500;
    font-size: 1.1rem;
    color: rgba(216,236,242,0.9);
    letter-spacing: -0.005em;
    margin-bottom: 0.3rem;
    transition: color 0.25s;
    line-height: 1.3;
}

.hpi-name {
    font-family: var(--head);
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
    display: block;
    margin-bottom: 0.25rem;
    letter-spacing: -0.005em;
}

.mi-scenario {
    font-family: var(--head);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
    display: block;
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
}

.nf-name {
    font-family: var(--head);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    display: block;
    margin-bottom: 0.2rem;
}

.sc-num {
    font-family: var(--head);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(169,202,214,0.08);
    line-height: 1;
    display: block;
    margin-bottom: 0.75rem;
}

/* Body text contrast improvements */
.which-card-body p {
    color: var(--ink-mid);
}

.which-list li {
    color: var(--ink-mid);
}

.hp-left p {
    color: var(--ink-mid);
}

.hpi-desc {
    color: var(--ink-mid);
    font-size: 0.87rem;
}

.match-sub {
    color: var(--ink-mid);
}

.finder-note {
    color: var(--ink-mid);
}

.concern-card p {
    color: var(--ink-mid);
}

.yr-includes li {
    color: var(--ink-mid);
}

.yr-foot-note {
    color: var(--ink-mid);
}

.summer-hdr-right p {
    color: rgba(189,213,200,0.6);
}

.session-left p {
    color: rgba(189,213,200,0.75);
}

.schools-header-right p {
    color: rgba(189,213,200,0.68);
}

.session-casel-note {
    color: rgba(189,213,200,0.62);
}

.final > .final-inner > p {
    color: rgba(189,213,200,0.7);
}
/* Hide step-time if it remains anywhere */
.step-time {
    display: none;
}
