:root {
    --cream: #f7f3e9;
    --paper: #fbfaf5;
    --olive: #53643a;
    --olive-dark: #26321d;
    --olive-soft: #e8eadc;
    --orange: #e68b32;
    --line: #d8dacd;
    --text: #293022;
    --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a { color: inherit; }

.container {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}

.site-header {
    background: rgba(251,250,245,.96);
    border-bottom: 1px solid rgba(84,100,58,.08);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
}

.nav-wrap {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--olive);
    font-weight: 800;
    letter-spacing: .02em;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.brand-icon {
    width: 48px;
    height: 48px;
    border: 3px solid var(--olive);
    border-radius: 0 0 22px 22px;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    line-height: 1;
}

.nav {
    display: flex;
    gap: clamp(18px, 3vw, 42px);
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.nav a {
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus-visible {
    color: var(--olive);
    border-color: var(--olive);
}

.hero {
    background: var(--cream);
    overflow: hidden;
}

.hero-content {
    min-height: 590px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: stretch;
}

.hero-copy {
    padding: 90px 30px 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.eyebrow,
.script,
.tagline {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
}

.eyebrow {
    color: var(--olive);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    margin: 0 0 5px;
}

.eyebrow span,
.script span,
.tagline span { color: var(--orange); }

h1 {
    margin: 0;
    color: #172013;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4.3rem, 8vw, 7.4rem);
    line-height: .95;
    letter-spacing: -.055em;
}

.ornament {
    color: var(--olive);
    font-size: 1.5rem;
    letter-spacing: .7rem;
    margin: 24px 0;
}

.ornament span { letter-spacing: 0; }

.lead {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.45;
    margin: 0 0 32px;
}

.lead strong { color: var(--olive); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: fit-content;
    min-height: 56px;
    padding: 0 30px;
    border-radius: 999px;
    background: var(--olive);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .02em;
    transition: transform .2s ease, background .2s ease;
}

.button:hover {
    background: var(--olive-dark);
    transform: translateY(-2px);
}

.hero-photo {
    min-height: 590px;
    background:
        linear-gradient(90deg, var(--cream) 0%, rgba(247,243,233,0) 18%),
        url("assets/soppa-hero.png") center/cover no-repeat;
}

.features {
    padding: 58px 0 42px;
    background: var(--paper);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature {
    text-align: center;
    padding: 0 30px;
    border-right: 1px solid var(--line);
}

.feature:last-child { border-right: 0; }

.feature-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--olive-soft);
    color: var(--olive);
    display: grid;
    place-items: center;
    font-size: 2rem;
}

.feature h2 {
    margin: 0 0 10px;
    color: var(--olive-dark);
    font-size: 1.05rem;
    text-transform: uppercase;
}

.feature p {
    margin: 0;
    font-size: .96rem;
}

.tagline {
    text-align: center;
    color: var(--olive);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin: 50px 0 5px;
}

.details {
    background: #f0f1e8;
    padding: 70px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.section-kicker {
    margin: 0 0 5px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--olive-dark);
}

.details h2 {
    margin: 0 0 35px;
    font-size: 1.1rem;
    font-weight: 400;
    color: #5a624f;
}

.event-list {
    margin: 0;
}

.event-list > div {
    display: grid;
    grid-template-columns: 120px 1fr;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.event-list dt {
    color: var(--olive);
    font-weight: 800;
}

.event-list dt span {
    margin-left: 8px;
    color: var(--text);
    text-transform: uppercase;
    font-size: .8rem;
}

.event-list dd {
    margin: 0;
}

.welcome {
    padding-left: 40px;
    border-left: 1px solid var(--line);
}

.script {
    margin: 0 0 25px;
    color: var(--olive);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.welcome p:not(.script) {
    max-width: 570px;
    font-size: 1.05rem;
}

.footer {
    padding: 45px 0 30px;
    background: var(--olive);
    color: white;
    text-align: center;
}

.footer p {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: clamp(2rem, 4vw, 3rem);
}

.footer p span { color: #f2a65a; }

.footer small { opacity: .75; }

@media (max-width: 850px) {
    .nav-wrap { min-height: 76px; }
    .nav { display: none; }

    .hero-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-copy {
        padding: 70px 20px 55px;
    }

    .hero-photo {
        min-height: 420px;
        background:
            linear-gradient(180deg, var(--cream) 0%, rgba(247,243,233,0) 18%),
            url("assets/soppa-hero.png") center/cover no-repeat;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 0;
    }

    .feature:nth-child(2) { border-right: 0; }
    .feature:nth-child(3) {
        border-right: 1px solid var(--line);
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .welcome {
        padding-left: 0;
        border-left: 0;
        padding-top: 35px;
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 520px) {
    .container { width: min(calc(100% - 28px), var(--max)); }

    h1 { font-size: 4rem; }

    .hero-photo { min-height: 330px; }

    .feature-grid { grid-template-columns: 1fr; }

    .feature,
    .feature:nth-child(3) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 0 20px 30px;
    }

    .feature:last-child { border-bottom: 0; }

    .event-list > div { grid-template-columns: 105px 1fr; }

    .button { width: 100%; }
}
