:root {
    --red: #e20d13;
    --deep-red: #bc0509;
    --green: #098a2d;
    --lime: #7fc018;
    --yellow: #ffc900;
    --orange: #f5821f;
    --cream: #fff3dc;
    --paper: #fff8ea;
    --ink: #17120c;
    --shadow: 0 10px 24px rgba(80, 44, 0, .18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 12%, rgba(255, 201, 0, .18), transparent 18rem),
        radial-gradient(circle at 96% 30%, rgba(9, 138, 45, .12), transparent 16rem),
        linear-gradient(90deg, rgba(122, 79, 24, .05) 1px, transparent 1px),
        var(--paper);
    background-size: auto, auto, 34px 34px, auto;
    font-family: Montserrat, Arial, sans-serif;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 88px;
    padding: 12px clamp(18px, 5vw, 76px);
    background: rgba(255, 248, 234, .94);
    border-bottom: 2px solid rgba(255, 201, 0, .32);
    backdrop-filter: blur(8px);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 142px;
    color: var(--yellow);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 27px;
    font-weight: 900;
    line-height: .78;
    text-shadow: 2px 2px 0 var(--red), -1px 1px 0 var(--red), 2px 4px 0 #641;
    transform: rotate(-4deg);
}

.logo b {
    display: block;
    color: var(--red);
    font-size: 44px;
    letter-spacing: 0;
    text-shadow: 2px 2px 0 #fff, 3px 5px 0 #530;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 4px solid var(--green);
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 4px 0 var(--red);
    text-shadow: none;
    transform: rotate(8deg);
}

.logo-mark i {
    color: var(--green);
    font-size: 30px;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: clamp(14px, 2.5vw, 34px);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.main-nav a:hover {
    color: var(--red);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-link {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: var(--red);
    font-size: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 24px;
    border: 0;
    border-radius: 5px;
    color: #fff;
    box-shadow: 0 5px 0 rgba(82, 28, 0, .3);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.btn i {
    margin-right: 8px;
    font-size: .9em;
    line-height: 1;
}

.btn-red {
    background: linear-gradient(#ff2323, var(--red));
}

.btn-green {
    background: linear-gradient(#199f37, var(--green));
}

.menu-toggle {
    display: none;
}

.menu-toggle i {
    line-height: 1;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, .86fr) minmax(360px, 1.14fr);
    align-items: center;
    gap: 10px;
    min-height: 590px;
    padding: 36px clamp(18px, 5vw, 76px) 22px;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(255, 248, 234, .98) 0 57%, rgba(255, 211, 31, .28) 57%),
        var(--cream);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 150px;
    background: var(--orange);
    opacity: .75;
    clip-path: polygon(0 40%, 100% 0, 82% 42%, 100% 100%, 21% 76%);
}

.hero::before {
    right: -18px;
    top: 84px;
}

.hero::after {
    left: -48px;
    bottom: 48px;
    background: var(--yellow);
    transform: rotate(20deg);
}

.paint {
    position: absolute;
    z-index: 0;
    border-radius: 43% 57% 34% 66%;
    filter: saturate(1.2);
}

.paint-yellow {
    right: 7%;
    top: 105px;
    width: 430px;
    height: 360px;
    background: rgba(255, 201, 0, .75);
    transform: rotate(-13deg);
}

.paint-green {
    left: 40%;
    top: 94px;
    width: 92px;
    height: 48px;
    background: var(--green);
    transform: rotate(30deg);
}

.hero-copy,
.hero-visual {
    position: relative;
    z-index: 1;
}

.brush-label {
    display: inline-block;
    padding: 7px 32px 9px;
    color: #fff;
    background: var(--green);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(34px, 4vw, 55px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    transform: rotate(-3deg);
    clip-path: polygon(4% 0, 100% 7%, 94% 100%, 0 88%);
}

.hero h1 {
    max-width: 700px;
    margin: 18px 0 10px;
    color: var(--red);
    font-family: Anton, Impact, sans-serif;
    font-size: clamp(76px, 10vw, 160px);
    font-weight: 900;
    line-height: .85;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 rgba(255, 255, 255, .92), 5px 7px 0 rgba(128, 30, 0, .16);
}

.hero h1 span {
    display: block;
    color: var(--green);
}

.hero p {
    margin: 0 0 22px;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 900;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-visual {
    min-height: 540px;
}

.hero-visual img {
    position: absolute;
    right: 8%;
    bottom: -8px;
    width: min(72vw, 650px);
    height: 510px;
    object-fit: cover;
    object-position: center;
    border: 10px solid rgba(255, 255, 255, .65);
    border-radius: 8px;
    box-shadow: var(--shadow);
    clip-path: polygon(4% 1%, 98% 0, 100% 91%, 72% 100%, 0 96%, 0 9%);
}

.promo-note {
    position: absolute;
    right: 0;
    top: 160px;
    z-index: 2;
    color: var(--red);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(27px, 3.3vw, 50px);
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-3deg);
}

.promo-note span {
    color: var(--green);
}

.side-cup {
    position: absolute;
    bottom: 18px;
    width: 150px;
    height: 180px;
    border-radius: 8px;
    background: linear-gradient(#fef4ca, #f57c1b 42%, #d40912);
    box-shadow: var(--shadow);
}

.cup-left {
    left: 4%;
    transform: rotate(-5deg);
}

.cup-right {
    right: 0;
    transform: rotate(7deg);
}

.featured-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 2.5vw, 30px);
    padding: 0 clamp(18px, 5vw, 76px) 28px;
    margin-top: -28px;
}

.feature-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border: 4px solid #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.card-green {
    background: radial-gradient(circle at 80% 80%, var(--lime), transparent 38%), var(--green);
}

.card-yellow {
    background: radial-gradient(circle at 80% 80%, #fff172, transparent 36%), var(--yellow);
}

.feature-card div {
    position: relative;
    z-index: 2;
    max-width: 58%;
    padding: 26px;
    color: #fff;
    font-family: "Barlow Condensed", Impact, sans-serif;
    text-transform: uppercase;
}

.card-yellow div {
    color: var(--red);
}

.feature-card span {
    color: var(--yellow);
    font-size: 24px;
    font-weight: 900;
}

.feature-card h2 {
    margin: 0;
    font-size: clamp(39px, 4.4vw, 62px);
    line-height: .9;
}

.feature-card img {
    position: absolute;
    right: -12%;
    bottom: -18%;
    width: 66%;
    height: 86%;
    object-fit: cover;
    border-radius: 50% 0 0 0;
}

.love-section,
.signature,
.food-gallery,
.locations-social {
    padding: 20px clamp(18px, 5vw, 76px);
}

.love-section h2,
.signature h2,
.food-gallery h2,
.locations-panel h2,
.social-panel h2 {
    margin: 0 0 18px;
    color: var(--red);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.signature h2,
.food-gallery h2,
.locations-panel h2,
.social-panel h2 {
    color: var(--green);
}

.love-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.love-grid article {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 13px;
    align-items: center;
}

.love-grid h3 {
    margin: 0;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 24px;
    line-height: .95;
    text-transform: uppercase;
}

.love-grid p {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 700;
}

.icon {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    color: #fff;
    font-size: 35px;
    font-weight: 900;
}

.icon i {
    line-height: 1;
}

.green { background: var(--green); }
.red { background: var(--red); }
.yellow { background: var(--yellow); color: var(--green); }

.signature {
    position: relative;
    background: rgba(255, 236, 192, .62);
}

.product-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 1fr);
    gap: 18px;
    overflow-x: auto;
    padding: 4px 0 12px;
    scroll-snap-type: x mandatory;
}

.product-card {
    min-width: 190px;
    overflow: hidden;
    border: 1px solid rgba(120, 74, 0, .18);
    border-radius: 8px;
    background: #fff7e5;
    box-shadow: 0 6px 16px rgba(80, 44, 0, .12);
    scroll-snap-align: start;
}

.product-card img {
    height: 150px;
    object-fit: cover;
}

.product-card div {
    padding: 13px 15px 18px;
}

.product-card h3 {
    margin: 0;
    color: var(--green);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 21px;
    line-height: .95;
    text-transform: uppercase;
}

.product-card strong {
    display: block;
    margin: 6px 0;
    color: var(--orange);
    font-size: 18px;
    font-weight: 900;
}

.product-card p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.slider-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--red);
    box-shadow: var(--shadow);
    font-size: 25px;
    line-height: 1;
}

.prev { left: 12px; }
.next { right: 12px; }

.food-gallery {
    text-align: center;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: -8px;
}

.gallery-row figure {
    aspect-ratio: 1.35;
    margin: 0;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(80, 44, 0, .14);
}

.gallery-row img {
    height: 100%;
    object-fit: cover;
}

.locations-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    background: rgba(255, 236, 192, .48);
}

.locations-panel,
.social-panel {
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 5px 16px rgba(80, 44, 0, .1);
}

.location-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 16px;
}

.map-card {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(90deg, transparent 23%, rgba(16, 80, 130, .2) 24% 25%, transparent 26%),
        linear-gradient(15deg, transparent 45%, rgba(230, 175, 75, .55) 46% 48%, transparent 49%),
        linear-gradient(110deg, transparent 38%, rgba(230, 175, 75, .55) 39% 41%, transparent 42%),
        repeating-linear-gradient(0deg, #e8f0e5 0 2px, #f9f2db 2px 48px),
        repeating-linear-gradient(90deg, transparent 0 42px, rgba(180, 200, 180, .65) 42px 44px);
}

.map-card strong {
    position: absolute;
    left: 50%;
    top: 52%;
    color: rgba(40, 80, 90, .46);
    transform: translate(-50%, -50%);
}

.pin {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50% 50% 50% 0;
    background: var(--red);
    transform: rotate(-45deg);
}

.pin::after {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: #fff;
}

.pin-one { left: 15%; top: 16%; }
.pin-two { left: 70%; top: 30%; }
.pin-three { left: 42%; top: 58%; }
.pin-four { left: 78%; top: 72%; }

.location-list {
    display: grid;
    gap: 8px;
}

.location-list article {
    padding: 10px;
    border-radius: 6px;
    background: #ffe8a8;
}

.location-list h3 {
    margin: 0;
    color: var(--red);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 23px;
    text-transform: uppercase;
}

.location-list p,
.location-list strong {
    margin: 3px 0;
    font-size: 12px;
    font-weight: 800;
}

.mini-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 5px 5px 0 0;
    padding: 6px 9px;
    border-radius: 4px;
    background: #fff;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.red-mini {
    color: var(--red);
}

.wide {
    width: 100%;
}

.social-panel h2 span {
    color: var(--ink);
    font-family: Montserrat, Arial, sans-serif;
    font-size: 14px;
    vertical-align: middle;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.insta-grid a {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 8px;
}

.insta-grid img {
    height: 100%;
    object-fit: cover;
}

.insta-grid span {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    background: rgba(226, 13, 19, .9);
    transform: translate(-50%, -50%);
}

.insta-grid span i {
    margin-left: 3px;
    font-size: 28px;
    line-height: 1;
}

.events-strip {
    display: grid;
    grid-template-columns: 1.15fr repeat(4, 1fr);
    gap: 22px;
    align-items: center;
    padding: 28px clamp(18px, 5vw, 76px);
    background: var(--yellow);
}

.events-strip h2,
.events-strip h3 {
    margin: 0;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    text-transform: uppercase;
}

.events-strip article {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
}

.events-strip span {
    grid-row: span 2;
    color: var(--red);
    font-size: 48px;
    font-weight: 900;
}

.events-strip span i {
    line-height: 1;
}

.events-strip h3 {
    font-size: 29px;
    line-height: .94;
}

.events-strip p {
    margin: 2px 0 0;
    font-size: 12px;
    font-weight: 800;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.25fr repeat(4, 1fr);
    gap: 34px;
    padding: 42px clamp(18px, 5vw, 76px) 0;
    color: #fff;
    background: linear-gradient(120deg, #027327, var(--green));
}

.site-footer h2 {
    margin: 0 0 12px;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 27px;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    margin: 4px 0;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.site-footer p {
    margin: 0 0 11px;
    font-weight: 800;
    line-height: 1.35;
}

.footer-social {
    display: flex;
    gap: 18px;
    align-items: center;
    font-size: 42px;
}

.site-footer .footer-social a {
    display: inline-flex;
    margin: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1;
}

.site-footer small {
    grid-column: span 2;
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, .22);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-footer small:last-child {
    grid-column: span 3;
    text-align: right;
}

@media (min-width: 1180px) {
    .product-row {
        grid-auto-columns: calc((100% - 90px) / 6);
        overflow: hidden;
    }
}

@media (max-width: 1080px) {
    .site-header {
        grid-template-columns: auto auto;
    }

    .menu-toggle {
        display: grid;
        justify-self: end;
        place-items: center;
        width: 44px;
        height: 44px;
        border: 0;
        border-radius: 5px;
        color: #fff;
        background: var(--red);
        font-size: 28px;
    }

    .main-nav,
    .header-actions {
        grid-column: 1 / -1;
        display: none;
    }

    .site-header.nav-open .main-nav,
    .site-header.nav-open .header-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero,
    .locations-social {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 450px;
    }

    .hero-visual img {
        right: 50%;
        width: min(92vw, 620px);
        height: 430px;
        transform: translateX(50%);
    }

    .promo-note {
        right: 5%;
    }

    .featured-grid,
    .love-grid,
    .gallery-row,
    .events-strip,
    .site-footer {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card:last-child,
    .events-strip h2,
    .footer-logo {
        grid-column: 1 / -1;
    }

    .site-footer small,
    .site-footer small:last-child {
        grid-column: 1 / -1;
        text-align: left;
    }
}

@media (max-width: 720px) {
    .site-header {
        min-height: 74px;
        padding: 10px 14px;
    }

    .logo {
        min-width: 120px;
        font-size: 22px;
    }

    .logo b {
        font-size: 36px;
    }

    .logo-mark {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .main-nav {
        gap: 10px 18px;
        font-size: 20px;
    }

    .hero {
        min-height: auto;
        padding-top: 28px;
    }

    .hero h1 {
        font-size: clamp(62px, 18vw, 92px);
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-visual img {
        height: 340px;
    }

    .promo-note {
        top: 18px;
        right: 0;
        max-width: 170px;
    }

    .side-cup {
        display: none;
    }

    .featured-grid,
    .love-grid,
    .gallery-row,
    .locations-social,
    .location-layout,
    .events-strip,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        margin-top: 0;
    }

    .feature-card {
        min-height: 230px;
    }

    .love-grid article {
        grid-template-columns: 66px 1fr;
    }

    .icon {
        width: 62px;
        height: 62px;
    }

    .slider-btn {
        display: none;
    }

    .gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-strip article {
        grid-template-columns: 54px 1fr;
    }
}
