.site-header {
    position: relative;
    z-index: 10;
    color: white;
    background: var(--teal);
    box-shadow: 0 2px 12px rgb(0 0 0 / 14%);
}

.header-inner,
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-inner {
    min-height: 76px;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    color: white;
    text-decoration: none;
}

.brand-mark {
    font-family: var(--serif);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -.06em;
}

.brand-name {
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: .92rem;
    font-weight: 650;
}

.primary-nav a {
    text-decoration: none;
}

.primary-nav a:not(.nav-cta):hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.nav-cta {
    padding: 10px 18px;
    color: var(--teal-dark);
    background: white;
    border-radius: 999px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 86px;
    background:
        radial-gradient(circle at 8% 28%, rgb(118 169 40 / 8%), transparent 23%),
        radial-gradient(circle at 92% 12%, rgb(23 111 126 / 8%), transparent 28%),
        var(--mist);
}

.hero-shell {
    position: relative;
}

.hero-art {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 70px 36px 138px;
    background:
        radial-gradient(circle at 4% 25%, rgb(214 181 87 / 88%) 0 1px, transparent 2px) 0 0 / 13px 13px,
        radial-gradient(circle at 97% 15%, rgb(214 181 87 / 65%) 0 1.5px, transparent 2.5px) 0 0 / 17px 17px,
        linear-gradient(118deg, transparent 0 15%, rgb(214 181 87 / 14%) 15% 25%, transparent 25% 74%, rgb(214 181 87 / 18%) 74% 87%, transparent 87%),
        var(--paper);
    border: 1px solid rgb(214 181 87 / 32%);
    border-radius: 10px;
    box-shadow: 0 16px 44px rgb(39 61 63 / 9%);
}

.hero-art::before,
.hero-art::after {
    position: absolute;
    content: '';
    width: 310px;
    height: 150%;
    top: -25%;
    background: linear-gradient(90deg, transparent, rgb(214 181 87 / 22%), transparent);
    filter: blur(2px);
    transform: rotate(18deg);
}

.hero-art::before { left: -90px; }
.hero-art::after { right: -80px; transform: rotate(-18deg); }

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 850px;
    text-align: center;
}

.script-line {
    margin-bottom: 14px;
    color: var(--green);
    font-family: 'Segoe Script', 'Bradley Hand', cursive;
    font-size: clamp(1.35rem, 3vw, 2.6rem);
    font-style: italic;
}

.hero h1 {
    margin-bottom: 16px;
    font-family: var(--serif);
    font-size: clamp(3.2rem, 8vw, 6.8rem);
    font-weight: 500;
    letter-spacing: .04em;
    line-height: .92;
    text-transform: uppercase;
}

.hero-theme {
    margin-bottom: 0;
    color: var(--teal-dark);
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.event-card {
    position: relative;
    z-index: 2;
    width: min(940px, calc(100% - 72px));
    margin: -102px auto 0;
    padding: 44px 48px 40px;
    background: white;
    border: 1px solid rgb(27 48 52 / 7%);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.section-label {
    margin-bottom: 7px;
    color: var(--green);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.event-card h2,
.promise h2 {
    max-width: 790px;
    margin-bottom: 12px;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.08;
}

.intro {
    max-width: 720px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 1.08rem;
}

.event-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 34px;
}

.meta-item-wide {
    grid-column: 1 / -1;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: #f6f8f7;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.meta-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 44px;
    height: 44px;
    color: white;
    background: var(--teal);
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 800;
}

.meta-label {
    display: block;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.meta-item strong {
    display: block;
    margin-top: 2px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.card-footer h3 {
    margin-bottom: 4px;
    font-family: var(--serif);
    font-size: 1.35rem;
}

.card-footer p {
    max-width: 570px;
    margin-bottom: 0;
    color: var(--muted);
}

.button {
    flex: 0 0 auto;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    color: white;
    background: var(--green);
    border-radius: 999px;
    font-weight: 750;
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
}

.button:hover {
    background: #618f1b;
    transform: translateY(-2px);
}

.promise {
    padding: 86px 0;
    color: white;
    background: var(--teal-dark);
}

.promise-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: end;
    gap: 80px;
}

.promise .section-label {
    color: #bada84;
}

.promise h2 {
    margin-bottom: 0;
}

.promise-grid > p {
    margin-bottom: 6px;
    color: rgb(255 255 255 / 80%);
    font-size: 1.05rem;
}

.site-footer {
    padding: 28px 0;
    color: #d7dfdd;
    background: #17383e;
    font-size: .85rem;
}

.site-footer a {
    text-underline-offset: 4px;
}

@media (max-width: 760px) {
    .shell {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 68px;
    }

    .primary-nav a:not(.nav-cta) {
        display: none;
    }

    .hero {
        padding-top: 28px;
    }

    .hero-art {
        min-height: 430px;
        padding: 58px 22px 118px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 15vw, 4.5rem);
        overflow-wrap: anywhere;
    }

    .event-card {
        width: calc(100% - 20px);
        margin-top: -82px;
        padding: 32px 24px;
    }

    .event-meta,
    .promise-grid {
        grid-template-columns: 1fr;
    }

    .meta-item-wide {
        grid-column: auto;
    }

    .card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .promise-grid {
        gap: 22px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
