/* StickyChef marketing + legal. Brand Guide tokens. No Vite — droplet has no npm build. */
:root {
    --cream: #fff8ee;
    --tomato: #b9472b;
    --herb: #244a3a;
    --honey: #f2c66d;
    --ink: #282822;
    --sage: #e0e8de;
    --ink-soft: color-mix(in srgb, var(--ink) 72%, var(--herb));
    --font-ui: "Manrope", ui-sans-serif, system-ui, sans-serif;
    --font-display: "Fraunces", "Times New Roman", serif;
    --page: min(72rem, calc(100% - 2.5rem));
    color-scheme: light;
    --focus: 0 0 0 2px var(--cream), 0 0 0 4px var(--herb);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-ui);
    font-size: 1.0625rem;
    line-height: 1.55;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
}

main {
    flex: 1;
}

::selection {
    background: var(--honey);
    color: var(--ink);
}

:focus-visible {
    outline: none;
    box-shadow: var(--focus);
}

a {
    color: var(--tomato);
    text-underline-offset: 0.18em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.skip {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 20;
    padding: 0.5rem 0.85rem;
    background: var(--herb);
    color: var(--cream);
    text-decoration: none;
    border-radius: 0.4rem;
}

.skip:focus {
    top: 0.75rem;
}

.wrap {
    width: var(--page);
    margin-inline: auto;
}

.site-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -0.03em;
    font-size: 1.05rem;
}

.brand img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.7rem;
    box-shadow: 0 8px 18px color-mix(in srgb, var(--ink) 16%, transparent);
}

.nav {
    display: flex;
    gap: 1.35rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.nav a {
    color: var(--ink);
    text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
    color: var(--tomato);
}

.nav a:hover {
    text-decoration: underline;
}

.hero {
    display: grid;
    gap: 2.5rem;
    padding: 1.5rem 0 3.5rem;
    align-items: end;
}

.hero h1 {
    margin: 0 0 0.7rem;
    font-family: var(--font-display);
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: clamp(2.6rem, 7vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
    max-width: 12ch;
}

.hero h1 em {
    font-style: italic;
    font-weight: 500;
    background-image: linear-gradient(var(--honey), var(--honey));
    background-repeat: no-repeat;
    background-size: 100% 0.28em;
    background-position: 0 88%;
}

.lede {
    margin: 0 0 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.body {
    margin: 0;
    max-width: 36rem;
    color: var(--ink-soft);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    border: 1.5px solid transparent;
}

.btn-tomato {
    background: var(--tomato);
    color: var(--cream);
}

.btn-tomato:hover {
    background: color-mix(in srgb, var(--tomato) 88%, var(--ink));
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: color-mix(in srgb, var(--ink) 22%, var(--cream));
}

.btn-ghost:hover {
    border-color: var(--ink);
}

.platforms {
    margin: 1rem 0 0;
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.hero-stage {
    margin: 0;
    background: var(--sage);
    border-radius: 1.75rem 1.75rem 0 0;
    padding: 1.75rem 1.5rem 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.hero-stage img {
    width: min(22rem, 100%);
    border-radius: 1.1rem 1.1rem 0 0;
    box-shadow: 0 22px 48px color-mix(in srgb, var(--ink) 22%, transparent);
    animation: settle 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes settle {
    from {
        opacity: 0.35;
        transform: translateY(1.6rem);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

.proof {
    background: var(--sage);
    padding: 3.5rem 0 4rem;
}

.proof-intro {
    margin: 0 0 2rem;
    max-width: 34rem;
}

.proof h2 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.proof p {
    margin: 0;
    color: var(--ink-soft);
}

.film {
    display: grid;
    gap: 1.25rem;
}

.film figure {
    margin: 0;
}

.film img {
    width: 100%;
    border-radius: 1.15rem;
    box-shadow: 0 16px 36px color-mix(in srgb, var(--ink) 16%, transparent);
}

.film figcaption {
    margin-top: 0.7rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.film figcaption span {
    display: block;
    margin-top: 0.2rem;
    font-weight: 500;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.site-foot {
    background: var(--herb);
    color: var(--cream);
    padding: 2.25rem 0 2.5rem;
}

.site-foot a {
    color: var(--honey);
    text-decoration: none;
}

.site-foot a:hover {
    text-decoration: underline;
}

.foot-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
}

.foot-links {
    display: flex;
    gap: 1.25rem;
    font-weight: 600;
}

.fine {
    margin: 0.85rem 0 0;
    font-size: 0.88rem;
    color: color-mix(in srgb, var(--cream) 72%, var(--herb));
}

.legal-doc {
    max-width: 68ch;
    margin: 0 auto;
    padding: 2.5rem 0 5rem;
}

.legal-doc h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0.2rem 0 0.4rem;
}

.legal-doc h2 {
    font-size: 1.05rem;
    margin: 1.85rem 0 0.45rem;
    letter-spacing: -0.02em;
}

.legal-doc .muted {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.legal-doc ul {
    padding-inline-start: 1.15rem;
}

@media (min-width: 860px) {
    .hero {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3rem;
        padding-top: 2.5rem;
    }

    .film {
        grid-template-columns: repeat(3, 1fr);
        align-items: end;
        gap: 1.5rem;
    }

    .film figure:nth-child(2) {
        transform: translateY(-1.6rem);
    }
}

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

    .hero-stage img {
        animation: none;
    }
}

@media (max-width: 640px) {
    :root {
        --page: min(72rem, calc(100% - 1.5rem));
    }

    .nav {
        gap: 0.95rem;
    }
}
