:root {
    --navy:       #1e3a5f;
    --navy-dark:  #152a44;
    --gold:       #c9a347;
    --gold-light: #f0dea0;
    --cream:      #f8f5ef;
    --green:      #2d6a4f;
    --text:       #2d2d2d;
    --muted:      #6b7280;
    --border:     #e5e0d8;
    --white:      #ffffff;

    --font-head: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, sans-serif;

    --radius: 12px;
    --shadow: 0 4px 16px rgba(30,58,95,.10);
    --shadow-hover: 0 8px 28px rgba(30,58,95,.18);
    --max-w: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ── Header ── */
.site-header {
    background: var(--navy);
    color: var(--white);
    padding: .875rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.site-brand { display: flex; align-items: center; gap: .75rem; }
.site-brand__star { font-size: 1.6rem; color: var(--gold); flex-shrink: 0; }
.site-brand__name {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
}
.site-brand__sub {
    font-size: .7rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: .07em;
}
.site-nav { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.site-nav a {
    color: rgba(255,255,255,.82);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: .02em;
    transition: color .2s;
}
.site-nav a:hover { color: var(--gold); }
.site-nav .btn-cta {
    background: var(--gold);
    color: var(--navy-dark) !important;
    padding: .45rem 1.25rem;
    border-radius: 100px;
    transition: background .2s, transform .2s;
}
.site-nav .btn-cta:hover { background: #ddb94f; transform: translateY(-1px); }

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 65%, #2a5080 100%);
    color: var(--white);
    padding: 5.5rem 0 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; }
.hero__badge {
    display: inline-block;
    background: rgba(201,163,71,.18);
    color: var(--gold-light);
    border: 1px solid rgba(201,163,71,.45);
    padding: .3rem 1.1rem;
    border-radius: 100px;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.hero__title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}
.hero__text {
    color: rgba(255,255,255,.85);
    font-size: 1.08rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.85;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    padding: .875rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover {
    background: #ddb94f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,163,71,.45);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.5);
    padding: .875rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ── Section base ── */
section { padding: 4.5rem 0; }
.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: .6rem;
}
.section-bar {
    width: 56px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    margin: .6rem auto 2.75rem;
}
.section-lead {
    text-align: center;
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 2.75rem;
    font-size: 1.02rem;
}

/* ── Features ── */
.features { background: var(--cream); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
    transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card__icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.card__title {
    font-family: var(--font-head);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
}
.card__text { font-size: .95rem; color: var(--muted); line-height: 1.75; }
.day-pills { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.day-pill {
    background: var(--cream);
    color: var(--navy);
    font-size: .72rem;
    font-weight: 700;
    padding: .22rem .65rem;
    border-radius: 100px;
    border: 1px solid var(--border);
}

/* ── Fees ── */
.fees { background: var(--white); }
.fees-wrap { max-width: 840px; margin: 0 auto; }
.fees-block { margin-bottom: 3rem; }
.fees-block__title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 1.25rem;
}
table { width: 100%; border-collapse: collapse; font-size: .94rem; }
th {
    background: var(--navy);
    color: var(--white);
    padding: .75rem 1rem;
    text-align: left;
    font-weight: 700;
}
th:last-child, td:last-child { text-align: center; }
td {
    padding: .75rem 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
tr:nth-child(even) td { background: var(--cream); }
tr.total td {
    font-weight: 700;
    color: var(--navy);
    background: #fdf4d8;
    border-top: 2px solid var(--gold);
    border-bottom: none;
}
.check { color: var(--green); font-weight: 700; }
.scholarship-note {
    background: #edf4f0;
    border-left: 4px solid var(--green);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: .94rem;
    margin-bottom: 2.5rem;
}
.scholarship-note strong { color: var(--green); }
.addons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.addon-box {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}
.addon-box__title {
    font-weight: 700;
    color: var(--navy);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .75rem;
}
.addon-box ul { list-style: none; }
.addon-box li {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
    padding: .35rem 0;
    font-size: .93rem;
    border-bottom: 1px solid var(--border);
}
.addon-box li:last-child { border-bottom: none; }
.addon-box .price { font-weight: 700; color: var(--navy); white-space: nowrap; }
.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.payment-box {
    background: var(--cream);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}
.payment-box--preferred { border-color: var(--gold); background: #fdf8ec; }
.payment-box__label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: .2rem;
}
.payment-box__name { font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.payment-box__desc { font-size: .875rem; color: var(--muted); }

/* ── CTA ── */
.cta {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
    text-align: center;
}
.cta__title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}
.cta__text {
    color: rgba(255,255,255,.85);
    max-width: 660px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    line-height: 1.85;
}
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.cta__tagline { font-family: var(--font-head); font-style: italic; color: var(--gold-light); font-size: 1.05rem; }

/* ── Footer ── */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.55);
    text-align: center;
    padding: 1.5rem;
    font-size: .875rem;
}
.site-footer strong { color: rgba(255,255,255,.85); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .header-inner { flex-direction: column; align-items: flex-start; }
    .site-nav { gap: 1rem; }
    .features-grid { grid-template-columns: 1fr; }
    .addons-grid, .payment-grid { grid-template-columns: 1fr; }
    table, thead, tbody, th, td, tr { display: block; }
    thead { display: none; }
    td { border: none; padding: .4rem .75rem; }
    td[data-label]::before {
        content: attr(data-label) ": ";
        font-weight: 700;
        color: var(--navy);
    }
    tr { border-bottom: 1px solid var(--border); padding: .5rem 0; }
    tr.total td::before { display: none; }
}
@media (max-width: 480px) {
    section { padding: 3rem 0; }
    .hero { padding: 4rem 0 3rem; }
}
