:root {
    --red: #c81016;
    --red-deep: #9a0c12;
    --red-bright: #e31b23;
    --cream: #f6e6c8;
    --yellow: #f5d76e;
    --ink: #161616;
    --green: #00a651;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Outfit, system-ui, sans-serif;
    color: var(--ink);
    background: var(--white);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.hero {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(circle at 68% 42%, #f03a3a 0%, var(--red-bright) 28%, var(--red) 62%, var(--red-deep) 100%);
    color: var(--white);
    overflow: hidden;
}

.swirl {
    position: absolute;
    inset: -20%;
    background:
        repeating-radial-gradient(circle at 68% 40%, transparent 0 42px, rgba(120, 8, 12, 0.16) 42px 46px);
    transform: rotate(-8deg);
    pointer-events: none;
}

.nav {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 6vw 0;
}

.brand img {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
}

.nav-menu {
    position: relative;
}

.nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    min-width: 12.5rem;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.65rem;
    background: rgba(90, 8, 12, 0.94);
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.nav.is-open .nav-links {
    display: flex;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    white-space: nowrap;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--cream);
}

.menu-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    color: var(--white);
    appearance: none;
}

.menu-toggle-bars {
    position: relative;
    display: block;
    width: 22px;
    height: 14px;
    margin: 0 auto;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.2s ease, top 0.2s ease;
}

.menu-toggle-bars::before {
    top: 0;
}

.menu-toggle-bars::after {
    top: 12px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
    gap: 1.5rem;
    align-items: center;
    padding: 3vh 5vw 7rem;
    min-height: calc(100vh - 96px);
}

.script {
    display: block;
    font-family: Knewave, cursive;
    font-size: 3rem;
    font-weight: 400;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 0.2em;
}

.display {
    display: block;
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(2.4rem, 5.6vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.lead {
    margin-top: 1.25rem;
    max-width: 34rem;
    font-size: 1.12rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.notify {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.75rem;
    max-width: 28rem;
}

.notify input {
    flex: 1;
    min-width: 0;
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.2rem;
    font: inherit;
    font-size: 1rem;
}

.notify button {
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.4rem;
    background: var(--yellow);
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.notify button:hover {
    filter: brightness(1.05);
}

.notify.on-dark input {
    background: var(--white);
}

.form-note {
    margin-top: 0.85rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-art {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    overflow: visible;
}

.hero-photo {
    width: min(100%, 520px);
    height: auto;
    max-height: 72vh;
    object-fit: contain;
    filter: drop-shadow(0 28px 40px rgba(70, 0, 8, 0.35));
    animation: bob 5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 110px;
    z-index: 3;
}

.story {
    background: var(--white);
    padding: 4.5rem 6vw 2rem;
}

.story-inner {
    max-width: 44rem;
    margin: 0 auto;
    text-align: center;
}

.eyebrow {
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.story h2,
.cta-band h2 {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.story p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.product {
    padding: 2rem 6vw 5rem;
}

.product-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.product article {
    background: #fff6ea;
    border-radius: 1.25rem;
    padding: 1.5rem;
}

.product h3 {
    color: var(--red);
    margin-bottom: 0.5rem;
}

.product p {
    color: #444;
    line-height: 1.55;
}

.cta-band {
    background: var(--ink);
    color: var(--white);
    text-align: center;
    padding: 4rem 6vw;
}

.cta-band .notify {
    margin: 1.25rem auto 0;
}

.status {
    margin-top: 1rem;
    color: var(--yellow);
}

footer {
    background: #0c0c0c;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    padding: 2.5rem 6vw 3rem;
}

footer img {
    height: 56px;
    margin: 0 auto 1rem;
}

footer p {
    font-size: 0.9rem;
    line-height: 1.5;
}

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 900px) {
    .script {
        font-size: clamp(2.8rem, 6.5vw, 5.4rem);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 2rem;
        text-align: center;
    }

    .lead,
    .notify {
        margin-left: auto;
        margin-right: auto;
    }

    .product-inner {
        grid-template-columns: 1fr;
    }

    .hero-art {
        min-height: 420px;
        order: -1;
    }

    .hero-photo {
        width: min(92%, 420px);
        min-height: 0;
        max-height: 52vh;
    }
}

@media (max-width: 640px) {
    .notify {
        flex-direction: column;
    }
}
