:root {
    --red: #df442b;
    --red-dark: #b82f20;
    --orange: #ff9d0a;
    --cream: #fff7e5;
    --pink: #f6b7b2;
    --pink-soft: #e8b6b9;
    --ink: #25160f;
    --white: #fffdf7;
    --display: "Changa One", Georgia, serif;
    --body: "Inter", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection { background: var(--red); color: var(--cream); }

.site-header {
    position: relative;
    z-index: 20;
    height: 80px;
    background: var(--cream);
    border-top: 3px solid var(--red);
}

.header-shell {
    width: min(1180px, 91vw);
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.menu-link {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red-dark);
    font-size: 0.69rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-lines { width: 25px; display: grid; gap: 6px; }
.menu-lines i { display: block; height: 3px; background: var(--red); border-radius: 4px; transition: width .2s ease; }
.menu-lines i:last-child { width: 16px; }
.menu-link:hover .menu-lines i:last-child { width: 25px; }

.brand {
    grid-column: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--red);
    line-height: 1;
}

.brand img {
    width: clamp(128px, 14vw, 178px);
    max-height: 64px;
    object-fit: contain;
}

.header-order {
    justify-self: end;
    padding: 11px 17px;
    color: var(--red-dark);
    border: 2px solid var(--red);
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 3px 3px 0 var(--red);
    transition: transform .18s ease, box-shadow .18s ease, color .18s ease, background .18s ease;
}

.header-order:hover { color: var(--cream); background: var(--red); transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--red-dark); }

.hero {
    position: relative;
    min-height: 670px;
    height: calc(100svh - 80px);
    max-height: 900px;
    overflow: hidden;
    background: #76513c;
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.hero-image { object-fit: cover; object-position: center 59%; transform: scale(1.015); }
.hero-shade { background: linear-gradient(90deg, rgba(42, 21, 13, .76) 0%, rgba(42, 21, 13, .46) 39%, rgba(42, 21, 13, .05) 74%); }

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, 89vw);
    height: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--red);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--cream);
    text-shadow: 1px 2px 0 rgba(0,0,0,.3);
}

.hero h1 {
    max-width: 770px;
    margin: 0 0 18px;
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(3.1rem, 6.7vw, 6.5rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .94;
    text-shadow: 4px 5px 0 rgba(93, 41, 24, .38);
}

.hero-copy {
    max-width: 600px;
    margin: 0 0 30px;
    color: var(--white);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 700;
    line-height: 1.65;
    text-shadow: 0 2px 5px rgba(0,0,0,.65);
}

.retro-button {
    min-height: 48px;
    padding: 13px 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border: 2px solid var(--red);
    border-radius: 999px;
    font-size: .73rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, color .18s ease, background .18s ease;
}

.retro-button span { font-size: 1.05rem; transition: transform .18s ease; }
.retro-button:hover span { transform: translateX(4px); }
.retro-button:hover { transform: translate(-3px, -3px); }

.button-light {
    color: var(--red);
    background: var(--cream);
    box-shadow: 5px 5px 0 var(--red);
}

.button-light:hover { color: var(--cream); background: var(--red); box-shadow: 7px 7px 0 var(--cream); }

.button-outline {
    color: var(--red);
    background: transparent;
    box-shadow: 4px 4px 0 var(--red);
}

.button-outline:hover { color: var(--cream); background: var(--red); box-shadow: 6px 6px 0 var(--orange); }

.wave {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 72px;
    line-height: 0;
    overflow: hidden;
}

.wave svg {
    position: absolute;
    top: 0;
    left: -3px;
    display: block;
    width: calc(100% + 6px);
    max-width: none;
    height: calc(100% + 4px);
}

.wave::after {
    content: "";
    position: absolute;
    z-index: 2;
    right: -4px;
    bottom: -1px;
    left: -4px;
    height: 7px;
    background: var(--wave-end-color);
}

.wave-cream { position: absolute; z-index: 3; bottom: -2px; left: 0; }
.wave-cream { --wave-end-color: var(--cream); }
.wave-cream path { fill: var(--cream); }

.story {
    min-height: 520px;
    padding: 68px max(5vw, calc((100vw - 1180px) / 2));
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 70px;
    background: var(--cream);
}

.story-copy h2,
.section-heading h2 {
    margin: 0;
    color: var(--red);
    font-family: var(--display);
    font-size: clamp(2.65rem, 5.2vw, 5rem);
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: 1;
}

.story-copy > p:not(.section-kicker) {
    max-width: 650px;
    margin: 23px 0 28px;
    color: var(--red-dark);
    font-size: .96rem;
    font-weight: 800;
    line-height: 1.65;
}

.delivery-character {
    position: relative;
    width: min(100%, 440px);
    margin: 0 auto;
    filter: drop-shadow(8px 10px 0 rgba(217, 68, 43, .14));
}

.delivery-character img {
    width: 100%;
    animation: delivery-wiggle 2.2s ease-in-out infinite;
    transform-origin: 50% 82%;
}

.delivery-note {
    position: absolute;
    right: -4px;
    bottom: 34px;
    padding: 9px 13px;
    transform: rotate(7deg);
    color: var(--red-dark);
    background: var(--cream);
    border: 3px solid var(--red);
    border-radius: 12px;
    font-family: var(--display);
    font-size: 1.08rem;
    line-height: 1;
    box-shadow: 4px 4px 0 var(--orange);
}

@keyframes delivery-wiggle {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50% { transform: translateY(-9px) rotate(1.5deg); }
}

.products {
    position: relative;
    padding: 92px max(5vw, calc((100vw - 1180px) / 2)) 72px;
    text-align: center;
    background: var(--cream);
}

.section-heading { position: relative; z-index: 2; }
.section-heading .section-kicker { margin-bottom: 8px; }

.product-grid {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    margin: 52px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 30px;
}

.product-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
}

.product-image-wrap {
    position: relative;
    height: 380px;
    overflow: hidden;
    border: 3px solid var(--red);
    border-radius: 16px;
    background: var(--pink-soft);
    box-shadow: 7px 7px 0 var(--red);
}

.product-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 65%, rgba(83, 35, 18, .2));
}

.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.product-card:nth-child(1) img { object-position: center 57%; }
.product-card:nth-child(2) img { object-position: center 47%; }
.product-card:nth-child(3) img { object-position: center 45%; }
.product-card:hover .product-image-wrap img { transform: scale(1.055); }

.card-number {
    position: absolute;
    z-index: 2;
    top: 13px;
    left: 13px;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    color: var(--red);
    background: var(--cream);
    border: 2px solid var(--red);
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 900;
    box-shadow: 3px 3px 0 var(--red);
}

.product-copy { flex: 1; padding: 25px 5px 17px; display: flex; flex-direction: column; }
.product-copy h3 { margin: 0 0 9px; font-family: var(--display); color: var(--red); font-size: 1.55rem; font-weight: 400; line-height: 1.12; }
.product-copy p { min-height: 66px; margin: 0 0 13px; font-size: .83rem; font-weight: 700; line-height: 1.55; }
.product-price { margin-top: auto; }
.price-prefix {
    display: block;
    margin-bottom: 2px;
    color: var(--red);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.product-copy strong {
    display: block;
    color: var(--ink);
    font-family: var(--display);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1;
}
.product-unit {
    display: block;
    margin-top: 7px;
    color: var(--red);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.product-copy small { display: block; margin-top: 7px; font-size: .72rem; font-weight: 800; }

.button-product { width: 100%; color: var(--cream); background: var(--red); box-shadow: 5px 5px 0 var(--orange); }
.button-product:hover { background: var(--red-dark); box-shadow: 7px 7px 0 var(--orange); }

.doodle { position: absolute; color: var(--orange); pointer-events: none; line-height: 1; }
.doodle-heart { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.doodle-spark { font-size: clamp(3rem, 6vw, 6rem); }
.d1 { top: 38%; left: 2%; transform: rotate(-15deg); }
.d2 { top: 17%; right: 5%; transform: rotate(10deg); }
.d3 { bottom: 13%; left: 2.5%; transform: rotate(-8deg); }
.d4 { bottom: 16%; right: 2.5%; transform: rotate(14deg); }

.wave-orange {
    --wave-end-color: var(--orange);
    margin-bottom: -3px;
    background: var(--cream);
}

.wave-orange path { fill: var(--orange); }

.advantages {
    position: relative;
    z-index: 1;
    margin-top: -1px;
    padding: 52px max(5vw, calc((100vw - 1180px) / 2)) 92px;
    color: var(--red-dark);
    text-align: center;
    background: var(--orange);
}

.advantages .section-kicker,
.advantages .section-heading h2 { color: var(--red-dark); }
.advantages .section-heading h2 { font-size: clamp(2.55rem, 4.5vw, 4.3rem); }

.advantage-grid {
    max-width: 920px;
    margin: 55px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.advantage svg {
    width: 100px;
    height: 100px;
    overflow: visible;
    fill: none;
    stroke: var(--red-dark);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s ease;
}
.advantage:hover svg { transform: translateY(-7px) rotate(-3deg); }
.advantage h3 { margin: 13px 0 0; font-size: .77rem; font-weight: 900; letter-spacing: .07em; line-height: 1.4; text-transform: uppercase; }

.site-footer {
    padding: 50px 5vw 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--cream);
    text-align: center;
    background: var(--red);
    border-top: 3px solid var(--red-dark);
}

.footer-brand {
    padding: 9px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--cream);
}
.footer-brand img { width: clamp(165px, 20vw, 220px); }
.site-footer p { margin: 5px 0 22px; font-size: .76rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.footer-order { padding-bottom: 4px; border-bottom: 2px solid currentColor; font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.site-footer small { margin-top: 34px; opacity: .72; font-size: .62rem; font-weight: 700; letter-spacing: .05em; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease var(--delay, 0ms), transform .7s ease var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 920px) {
    .hero { min-height: 610px; height: 78svh; }
    .hero-content { padding-bottom: 30px; }
    .story { grid-template-columns: 1fr 300px; gap: 35px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
    .product-card:last-child { grid-column: 1 / -1; width: calc(50% - 15px); justify-self: center; }
    .advantage-grid { gap: 28px; }
}

@media (max-width: 680px) {
    html { scrollbar-width: none; }
    body::-webkit-scrollbar { display: none; width: 0; height: 0; }

    body,
    .site-header,
    main,
    main > section,
    .wave,
    .site-footer {
        width: 100%;
        max-width: 100%;
    }

    .site-header { height: 69px; }
    .header-shell {
        width: 92vw;
        grid-template-columns: minmax(0, 1fr) auto;
    }
    .menu-link { display: none; }
    .brand {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        text-align: left;
    }
    .header-order {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }
    .header-order { padding: 9px 11px; font-size: .55rem; box-shadow: 2px 2px 0 var(--red); }
    .brand img { width: 104px; max-height: 54px; }

    .hero { min-height: 580px; height: calc(100svh - 69px); max-height: 760px; }
    .hero-image { object-position: 62% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(42,21,13,.74) 0%, rgba(42,21,13,.38) 82%, rgba(42,21,13,.16)); }
    .hero-content { width: 90vw; justify-content: flex-end; padding-bottom: 108px; }
    .hero h1 { font-size: clamp(2.55rem, 11.8vw, 3.55rem); line-height: .98; }
    .hero-copy { max-width: 460px; font-size: .94rem; line-height: 1.6; }
    .wave {
        height: 52px;
        overflow: visible;
    }
    .wave svg,
    .wave::after {
        display: none;
    }
    .wave-cream {
        bottom: -1px;
        background:
            radial-gradient(
                ellipse 54% 78% at 50% 100%,
                var(--cream) 0 98%,
                transparent 100%
            ) 0 0 / 25% 100% repeat-x;
    }
    .wave-orange {
        margin-bottom: -3px;
        background:
            radial-gradient(
                ellipse 54% 78% at 50% 100%,
                var(--orange) 0 98%,
                transparent 100%
            ) 0 0 / 25% 100% repeat-x;
        box-shadow: 0 6px 0 var(--orange);
    }
    .advantages { margin-top: -3px; }

    .story { min-height: auto; padding: 48px 6vw 65px; grid-template-columns: 1fr; gap: 45px; text-align: center; }
    .story-copy > p:not(.section-kicker) { font-size: .84rem; }
    .delivery-character { width: min(92vw, 330px); }
    .delivery-note { right: -2px; bottom: 22px; font-size: .84rem; }

    .products { padding: 72px 6vw 52px; }
    .product-grid { grid-template-columns: 1fr; max-width: 390px; gap: 46px; }
    .product-card:last-child { grid-column: auto; width: 100%; }
    .product-image-wrap { height: 400px; }
    .product-copy { text-align: center; }
    .product-copy p { min-height: 0; }
    .d1, .d3 { left: -1%; }
    .d2, .d4 { right: -1%; }
    .doodle { opacity: .55; }

    .advantages { padding: 42px 6vw 72px; }
    .advantage-grid { grid-template-columns: repeat(2, 1fr); gap: 43px 28px; }
    .advantage svg { width: 88px; height: 88px; }
}

@media (max-width: 390px) {
    .header-order span { display: none; }
    .hero-content { padding-bottom: 90px; }
    .hero h1 { font-size: 2.45rem; }
    .product-image-wrap { height: 340px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
