:root {
    color-scheme: light;
    --ink: #15202b;
    --muted: #5c6773;
    --line: #d8dde3;
    --paper: #fffdf8;
    --soft: #f4efe6;
    --soft-2: #eef7f4;
    --accent: #b92f4b;
    --accent-dark: #8f2037;
    --gold: #c89b3c;
    --teal: #2f807c;
    --navy: #111c29;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}
a { color: inherit; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(21, 32, 43, 0.12);
    background: rgba(255, 253, 248, 0.94);
    backdrop-filter: blur(12px);
}
.site-header__inner,
.section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}
.site-header__inner {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
}
.brand__mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
}
.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}
.nav a {
    text-decoration: none;
}
.nav .nav-cta {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}
.button:hover,
.nav .nav-cta:hover {
    background: var(--accent-dark);
}
.button--light {
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.12);
}
.button--light:hover {
    background: rgba(255, 255, 255, 0.2);
}
.button--outline {
    border-color: var(--accent);
    background: transparent;
    color: var(--accent);
}
.button--outline:hover {
    background: #fff0f3;
}
.hero {
    position: relative;
    isolation: isolate;
    min-height: 560px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #111;
}
.hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
    background:
        linear-gradient(90deg, rgba(11, 16, 22, 0.88), rgba(11, 16, 22, 0.42) 58%, rgba(11, 16, 22, 0.18)),
        url("https://images.unsplash.com/photo-1518834107812-67b0b7c58434?auto=format&fit=crop&w=1800&q=82");
    background-position: center;
    background-size: cover;
}
.hero__content {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 76px 0 66px;
    color: #fff;
}
.hero__content p {
    max-width: 660px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}
.hero__actions,
.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: 0;
}
h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
    letter-spacing: 0;
}
h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.2;
}
.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.section {
    padding: 56px 0;
}
.page-intro {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}
.page-intro .section {
    padding: 34px 0 30px;
}
.page-intro h1 {
    font-size: clamp(34px, 5vw, 58px);
}
.page-intro p:not(.eyebrow) {
    max-width: 740px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 17px;
}
.intro-grid,
.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
    gap: 32px;
    align-items: start;
}
.intro-copy p,
.section-lead {
    max-width: 710px;
    color: var(--muted);
    font-size: 17px;
}
.highlights,
.card-grid,
.staff-grid {
    display: grid;
    gap: 16px;
}
.card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.staff-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.highlight,
.card,
.staff-card,
.info-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(21, 32, 43, 0.08);
}
.highlight {
    border-left: 4px solid var(--accent);
    background: var(--soft);
    padding: 16px 18px;
}
.highlight strong {
    display: block;
    margin-bottom: 3px;
}
.highlight span,
.card p,
.staff-card p,
.info-panel p {
    color: var(--muted);
}
.card,
.staff-card,
.info-panel {
    padding: 22px;
}
.program-card {
    min-height: 210px;
}
.program-card strong {
    color: var(--teal);
}
.program-art {
    width: 100%;
    aspect-ratio: 1.25;
    margin: -6px 0 18px;
    border-radius: 8px;
    background-image: url("/assets/program-scenes.png");
    background-size: 300% 200%;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1px rgba(21, 32, 43, 0.08);
}
.program-art--kids { background-position: 0 0; }
.program-art--teens { background-position: 50% 0; }
.program-art--adult { background-position: 100% 0; }
.program-art--private { background-position: 0 100%; }
.program-art--wedding { background-position: 50% 100%; }
.program-art--events { background-position: 100% 100%; }
.staff-portrait {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 16px;
    border-radius: 8px;
    background-image: url("/assets/staff-portraits.png");
    background-size: 200% 200%;
    background-repeat: no-repeat;
}
.staff-portrait--one { background-position: 0 0; }
.staff-portrait--two { background-position: 100% 0; }
.staff-portrait--three { background-position: 0 100%; }
.staff-portrait--four { background-position: 100% 100%; }
.feature-band {
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.cta-band {
    border-top: 1px solid var(--line);
    background: #f8f5ef;
}
.cta-band .section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cta-band p {
    max-width: 640px;
    margin: 10px 0 0;
    color: var(--muted);
}
.registration {
    padding: 18px 0 48px;
    background: #f8f5ef;
}
.embed-frame {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(21, 32, 43, 0.14);
}
.visit-list {
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}
.visit-list li {
    padding: 10px 0;
    border-top: 1px solid var(--line);
}
.map-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(21, 32, 43, 0.08);
}
.map-card iframe {
    display: block;
    width: 100%;
    min-height: 390px;
    border: 0;
}
.map-card__body {
    padding: 18px 22px 22px;
}
.demo-note {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #fff2cc;
    color: #7a5600;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.82);
    padding: 28px 0;
}
.site-footer .section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0;
}
@media (max-width: 900px) {
    .nav {
        gap: 10px;
        font-size: 13px;
    }
    .card-grid,
    .staff-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .site-header__inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 12px 0;
    }
    .nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .hero {
        min-height: 500px;
    }
    .intro-grid,
    .two-column,
    .cta-band .section,
    .site-footer .section {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: start;
    }
    .card-grid,
    .staff-grid {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: clamp(38px, 12vw, 54px);
    }
}
