:root {
    --ink: #241a10;
    --muted: #6c604f;
    --paper: #fff9ec;
    --cream: #f4ead4;
    --honey: #c97818;
    --leaf: #4f6f3b;
    --dark: #12150e;
    --line: rgba(36, 26, 16, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

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

.hero {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    color: #fffdf4;
    background: var(--dark);
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 12, 6, 0.76), rgba(10, 12, 6, 0.34) 52%, rgba(10, 12, 6, 0.2)),
        linear-gradient(0deg, rgba(10, 12, 6, 0.64), rgba(10, 12, 6, 0.04) 42%);
}

.nav {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0;
}

.nav__links {
    display: flex;
    gap: 18px;
    font-size: 0.9rem;
}

.nav__links a {
    opacity: 0.88;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    display: block;
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.hero__content {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(70px, 11vh, 130px) 0 120px;
}

.hero__logo {
    display: block;
    width: min(360px, 82vw);
    height: auto;
    margin-bottom: 32px;
    filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.36));
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--honey);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #ffd178;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.02;
}

h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(3.4rem, 8vw, 7.2rem);
    font-weight: 700;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4.6vw, 4rem);
}

h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
}

.lead {
    max-width: 610px;
    margin-bottom: 0;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 253, 244, 0.9);
}

.section {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(68px, 10vw, 120px) 0;
}

.intro {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(32px, 7vw, 96px);
    border-bottom: 1px solid var(--line);
}

.intro__text {
    color: var(--muted);
    font-size: 1.08rem;
}

.intro__text p:last-child {
    margin-bottom: 0;
}

.facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 46px 0;
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.facts article {
    min-height: 210px;
    padding: 30px;
    background: var(--paper);
}

.facts span {
    display: block;
    margin-bottom: 36px;
    color: var(--honey);
    font-size: 0.8rem;
    font-weight: 800;
}

.facts p {
    margin-bottom: 0;
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
    gap: clamp(32px, 7vw, 86px);
    align-items: center;
}

.split__copy p {
    color: var(--muted);
    font-size: 1.06rem;
}

.note-panel {
    border-left: 4px solid var(--honey);
    padding: 30px 0 30px 30px;
}

.note-panel p {
    margin-bottom: 0;
    color: var(--muted);
}

.jar {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(28px, 6vw, 80px);
    border-top: 1px solid var(--line);
}

.jar p {
    color: var(--muted);
    font-size: 1.08rem;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 28px max(20px, calc((100vw - 1120px) / 2));
    background: var(--dark);
    color: rgba(255, 253, 244, 0.74);
    font-size: 0.86rem;
}

.footer p {
    margin: 0;
}

@media (max-width: 760px) {
    .hero {
        min-height: 88vh;
    }

    .hero__shade {
        background:
            linear-gradient(90deg, rgba(10, 12, 6, 0.78), rgba(10, 12, 6, 0.36)),
            linear-gradient(0deg, rgba(10, 12, 6, 0.68), rgba(10, 12, 6, 0.02) 48%);
    }

    .nav {
        align-items: flex-start;
        width: min(100% - 32px, 1120px);
        padding-top: 16px;
    }

    .nav__links {
        display: none;
    }

    .hero__content,
    .section,
    .facts {
        width: min(100% - 32px, 1120px);
    }

    .hero__content {
        padding-top: 72px;
    }

    h1 {
        font-size: clamp(3.2rem, 16vw, 5rem);
    }

    .brand img {
        width: 74px;
        height: 74px;
    }

    .hero__logo {
        width: min(300px, 84vw);
        margin-bottom: 28px;
    }

    .intro,
    .split,
    .jar {
        grid-template-columns: 1fr;
    }

    .facts {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .facts article {
        min-height: 0;
        padding: 28px 0;
    }

    .note-panel {
        padding: 24px 0 24px 22px;
    }

    .footer {
        display: block;
        padding: 26px 16px;
    }

    .footer p + p {
        margin-top: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero__video {
        display: none;
    }
}
