:root {
    --ivory: #fbf7ee;
    --bg: var(--ivory);
    --card: #ffffff;
    --text: #10203b;
    --muted: rgba(16, 32, 59, 0.7);
    --border: rgba(16, 32, 59, 0.12);
    --primary: #1e2f5b;
    --gold: #d6ad60;
    --gold-ink: #13223e;
    --shadow-soft: 0 10px 30px rgba(30, 47, 91, 0.12);
    --shadow-elegant: 0 24px 60px rgba(30, 47, 91, 0.18);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: Fraunces, Georgia, serif;
    letter-spacing: 0;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
}

.mt-3 { margin-top: 12px; }
.mt-6 { margin-top: 24px; }

.muted { color: var(--muted); }
.lead { color: var(--muted); font-size: 18px; line-height: 1.65; }
.eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(102, 70, 30, 0.9);
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
    cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
    background: linear-gradient(135deg, #e7c777 0%, #cda054 100%);
    color: var(--gold-ink);
    box-shadow: 0 14px 40px rgba(214, 173, 96, 0.35);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(30, 47, 91, 0.18);
    color: var(--primary);
}

.link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(214, 173, 96, 0.8);
    text-underline-offset: 4px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
    background: rgba(251, 247, 238, 0.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 240px;
}

.brand-mark {
    position: relative;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: rotate(45deg);
    border-radius: 10px;
    background: linear-gradient(135deg, #e7c777 0%, #cda054 100%);
    box-shadow: 0 14px 40px rgba(214, 173, 96, 0.35);
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 7px;
    transform: rotate(45deg);
    border-radius: 8px;
    background: var(--primary);
}

.brand-mark span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-family: Fraunces, Georgia, serif;
    font-weight: 800;
    font-size: 18px;
}

.brand-text { line-height: 1.1; }
.brand-name {
    display: block;
    font-family: Fraunces, Georgia, serif;
    font-weight: 800;
    color: var(--primary);
    font-size: 14px;
}
.brand-sub {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(16, 32, 59, 0.6);
    margin-top: 3px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(16, 32, 59, 0.08);
}

.site-nav a {
    font-size: 13px;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 999px;
    color: rgba(16, 32, 59, 0.74);
    transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover {
    background: rgba(214, 173, 96, 0.18);
    color: var(--primary);
}

.site-nav a.is-active {
    background: rgba(214, 173, 96, 0.25);
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.link-login {
    font-size: 13px;
    font-weight: 700;
    color: rgba(16, 32, 59, 0.7);
}
.link-login:hover { color: var(--primary); }

.icon-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(16, 32, 59, 0.14);
    background: rgba(255, 255, 255, 0.7);
}
.icon-menu {
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--primary);
    position: relative;
}
.icon-menu::before,
.icon-menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}
.icon-menu::before { top: -6px; }
.icon-menu::after { top: 6px; }
.site-header.is-open .icon-menu { background: transparent; }
.site-header.is-open .icon-menu::before { top: 0; transform: rotate(45deg); }
.site-header.is-open .icon-menu::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
    display: none;
    border-top: 1px solid var(--border);
    background: rgba(251, 247, 238, 0.96);
    backdrop-filter: blur(10px);
}
.mobile-nav-inner {
    display: grid;
    gap: 10px;
    padding: 14px 0 18px;
}
.mobile-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(16, 32, 59, 0.10);
    font-weight: 700;
}
.site-header.is-open .mobile-nav { display: block; }

/* Sections */
.hero {
    padding-top: 110px;
    overflow: hidden;
    position: relative;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 300px at 20% 20%, rgba(214, 173, 96, 0.24), transparent 55%),
        radial-gradient(900px 320px at 80% 10%, rgba(30, 47, 91, 0.18), transparent 55%),
        linear-gradient(180deg, rgba(251, 247, 238, 1) 0%, rgba(247, 242, 230, 1) 100%);
}
.hero-grid {
    position: relative;
    padding: 28px 0 64px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(16, 32, 59, 0.10);
    box-shadow: var(--shadow-soft);
}
.pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--gold);
}

.hero h1 {
    margin-top: 18px;
    font-size: 60px;
    line-height: 1.02;
    color: var(--primary);
}
.hero h1 .highlight {
    display: inline-block;
    position: relative;
}
.hero h1 .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 12px;
    background: rgba(214, 173, 96, 0.42);
    border-radius: 8px;
    z-index: -1;
}
.hero-actions { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }

.stats {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.stat-v {
    font-family: Fraunces, Georgia, serif;
    font-weight: 800;
    color: var(--primary);
    font-size: 28px;
}
.stat-l {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(16, 32, 59, 0.62);
    margin-top: 4px;
}

.media-card {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(16, 32, 59, 0.10);
    box-shadow: var(--shadow-elegant);
    padding: 10px;
}
.media-card img {
    width: 100%;
    height: auto;
    border-radius: 22px;
    display: block;
}
.media-badge {
    margin-top: 14px;
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e7c777 0%, #cda054 100%);
    font-weight: 800;
    color: var(--gold-ink);
    box-shadow: 0 14px 40px rgba(214, 173, 96, 0.35);
}

.band {
    padding: 44px 0;
}
.band-navy {
    background: var(--primary);
    color: var(--ivory);
}
.band-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.band-grid h3 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 10px;
}
.band-grid p {
    margin: 0;
    color: rgba(251, 247, 238, 0.78);
    line-height: 1.6;
    font-size: 14px;
}

.section { padding: 70px 0; }
.section-soft { background: rgba(214, 173, 96, 0.12); border-top: 1px solid rgba(16, 32, 59, 0.06); border-bottom: 1px solid rgba(16, 32, 59, 0.06); }
.center { text-align: center; max-width: 720px; margin: 0 auto 26px; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.photo-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    position: relative;
}
.photo-stack img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}
.photo-stack img:last-child { margin-top: 28px; }

.check { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.check li { position: relative; padding-left: 18px; line-height: 1.5; }
.check li::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--gold); position: absolute; left: 0; top: 8px; }

.cards {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(5, 1fr);
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(16, 32, 59, 0.10);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    transition: transform 160ms ease, box-shadow 160ms ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elegant); }
.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e7c777 0%, #cda054 100%);
    box-shadow: 0 14px 40px rgba(214, 173, 96, 0.30);
    margin-bottom: 12px;
}
.card-title {
    font-family: Fraunces, Georgia, serif;
    font-weight: 800;
    color: var(--primary);
    font-size: 18px;
}
.card-text { margin-top: 10px; color: rgba(16, 32, 59, 0.70); font-size: 13px; line-height: 1.6; }

.split-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.programs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.program {
    border-radius: 22px;
    border: 1px solid rgba(16, 32, 59, 0.10);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-soft);
    padding: 18px;
}
.program-title { font-family: Fraunces, Georgia, serif; font-weight: 800; color: var(--primary); font-size: 18px; }
.program-age { margin-top: 6px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(16, 32, 59, 0.60); }
.program-desc { margin-top: 10px; color: rgba(16, 32, 59, 0.72); font-size: 13px; line-height: 1.6; }

.cta-banner {
    margin-top: 30px;
    border-radius: 26px;
    padding: 18px;
    border: 1px solid rgba(16, 32, 59, 0.10);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-elegant);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.cta-title { font-family: Fraunces, Georgia, serif; font-weight: 800; color: var(--primary); font-size: 20px; }
.cta-text { margin-top: 6px; color: rgba(16, 32, 59, 0.70); }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Page hero + forms */
.page-hero {
    padding-top: 120px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(16, 32, 59, 0.06);
    background:
        radial-gradient(700px 240px at 18% 18%, rgba(214, 173, 96, 0.20), transparent 55%),
        linear-gradient(180deg, rgba(251, 247, 238, 1) 0%, rgba(247, 242, 230, 1) 100%);
}
.page-hero h1 { font-size: 44px; color: var(--primary); margin-top: 10px; }

.form-card {
    border-radius: 26px;
    border: 1px solid rgba(16, 32, 59, 0.10);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-elegant);
    padding: 18px;
}
.form-title { font-size: 28px; color: var(--primary); margin-bottom: 6px; }
.grid-form {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.input {
    width: 100%;
    border-radius: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(16, 32, 59, 0.14);
    background: #fff;
    font-size: 14px;
    outline: none;
}
.input:focus { border-color: rgba(214, 173, 96, 0.9); box-shadow: 0 0 0 4px rgba(214, 173, 96, 0.18); }
.span-2 { grid-column: span 2; }

.alert-success, .alert-error {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 13px;
}
.alert-success { background: rgba(46, 204, 113, 0.10); border: 1px solid rgba(46, 204, 113, 0.25); color: rgba(16, 32, 59, 0.85); }
.alert-error { background: rgba(231, 76, 60, 0.10); border: 1px solid rgba(231, 76, 60, 0.22); color: rgba(16, 32, 59, 0.85); }

.steps { padding: 0; margin: 0; list-style: none; display: grid; gap: 14px; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: start; }
.step-num {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e7c777 0%, #cda054 100%);
    box-shadow: 0 14px 40px rgba(214, 173, 96, 0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Fraunces, Georgia, serif;
    font-weight: 900;
    color: var(--gold-ink);
}
.step-title { font-family: Fraunces, Georgia, serif; font-weight: 800; color: var(--primary); font-size: 20px; }

/* Contact + map */
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 18px;
    align-items: start;
}
.contact-cards { display: grid; gap: 12px; }
.contact-card {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(16, 32, 59, 0.10);
    box-shadow: var(--shadow-soft);
}
.contact-title { font-family: Fraunces, Georgia, serif; font-weight: 800; color: var(--primary); }
.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e7c777 0%, #cda054 100%);
    box-shadow: 0 14px 40px rgba(214, 173, 96, 0.28);
    flex: 0 0 46px;
}

.map-wrap {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(16, 32, 59, 0.10);
    box-shadow: var(--shadow-elegant);
    background: #fff;
    aspect-ratio: 16 / 9;
}
.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.gallery-card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(16, 32, 59, 0.10);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
}
.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.gallery-meta { padding: 14px; }
.gallery-title { font-family: Fraunces, Georgia, serif; font-weight: 800; color: var(--primary); }
.gallery-text { margin-top: 8px; color: rgba(16, 32, 59, 0.70); font-size: 13px; line-height: 1.6; }

/* Footer */
.site-footer {
    margin-top: 70px;
    background: var(--primary);
    color: rgba(251, 247, 238, 0.92);
}
.brand-light .brand-name { color: rgba(251, 247, 238, 0.96); }
.brand-light .brand-sub { color: rgba(251, 247, 238, 0.70); }
.footer-grid {
    padding: 50px 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 22px;
}
.footer-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    font-weight: 900;
    margin: 4px 0 10px;
}
.footer-links, .footer-meta { display: grid; gap: 10px; }
.footer-links a { color: rgba(251, 247, 238, 0.80); font-weight: 700; }
.footer-links a:hover { color: var(--gold); }
.newsletter { margin-top: 12px; display: flex; gap: 10px; }
.newsletter input {
    flex: 1;
    border-radius: 999px;
    border: 1px solid rgba(251, 247, 238, 0.22);
    background: rgba(251, 247, 238, 0.08);
    padding: 12px 14px;
    color: rgba(251, 247, 238, 0.92);
    outline: none;
}
.newsletter input::placeholder { color: rgba(251, 247, 238, 0.55); }
.footer-bottom { border-top: 1px solid rgba(251, 247, 238, 0.10); padding: 14px 0; }
.footer-bottom-row { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: rgba(251, 247, 238, 0.62); font-size: 12px; }

/* Responsive */
@media (max-width: 980px) {
    .site-nav { display: none; }
    .icon-btn { display: inline-flex; align-items: center; justify-content: center; }
    .hero-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .band-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .cards { grid-template-columns: repeat(2, 1fr); }
    .programs { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .brand { min-width: 0; }
}

@media (max-width: 520px) {
    .hero h1 { font-size: 44px; }
    .grid-form { grid-template-columns: 1fr; }
    .span-2 { grid-column: auto; }
}

