:root {
    --ink: #071a38;
    --muted: #4b5662;
    --paper: #f6f1dc;
    --panel: #fffbea;
    --line: #071a38;
    --accent: #02a7c7;
    --accent-strong: #005e73;
    --copper: #e50921;
    --foam: #7ab51d;
    --sun: #d9e88a;
    --blue: #02a7c7;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(7, 26, 56, 0.045) 1px, transparent 1px) 0 0 / 30px 30px,
        linear-gradient(rgba(7, 26, 56, 0.045) 1px, transparent 1px) 0 0 / 30px 30px,
        var(--paper);
    line-height: 1.55;
}

a {
    color: var(--accent-strong);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 56px);
    border-bottom: 3px solid var(--line);
    background: rgba(246, 241, 220, 0.96);
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 950;
    letter-spacing: 0;
    color: var(--ink);
}

.brand-logo {
    width: 58px;
    height: 58px;
    border: 3px solid var(--line);
    border-radius: 50%;
    background: var(--panel);
    object-fit: cover;
    box-shadow: 4px 4px 0 var(--foam);
}

.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    font-size: 0.96rem;
}

.nav a {
    padding: 8px 10px;
    border: 2px solid transparent;
    font-weight: 850;
}

.nav a:hover {
    border-color: var(--line);
    background: #fff;
    text-decoration: none;
}

.hero {
    display: grid;
    grid-template-columns: minmax(330px, 0.9fr) minmax(460px, 1.1fr);
    gap: clamp(20px, 3vw, 34px);
    align-items: center;
    min-height: 72vh;
    padding: clamp(44px, 8vw, 88px) clamp(18px, 4vw, 56px) 36px;
    border-bottom: 3px solid var(--line);
    background:
        radial-gradient(circle at 12% 24%, rgba(229, 9, 33, 0.16), transparent 24%),
        radial-gradient(circle at 36% 78%, rgba(2, 167, 199, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(122, 181, 29, 0.09), transparent 42%);
}

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

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 760px;
    font-size: clamp(2.7rem, 5.7vw, 5.25rem);
    text-transform: uppercase;
}

h2 {
    font-size: clamp(1.7rem, 4vw, 3rem);
}

h3 {
    font-size: 1.2rem;
}

.lead {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 3px solid var(--line);
    background: var(--copper);
    color: #fff;
    font-weight: 950;
    box-shadow: 5px 5px 0 var(--line);
    text-transform: uppercase;
}

.button.secondary {
    background: var(--sun);
    color: var(--ink);
}

.visual {
    min-height: 380px;
    border: 3px solid var(--line);
    background:
        linear-gradient(90deg, rgba(30, 111, 92, 0.12) 1px, transparent 1px) 0 0 / 28px 28px,
        linear-gradient(rgba(177, 93, 39, 0.12) 1px, transparent 1px) 0 0 / 28px 28px,
        #fffaf0;
    position: relative;
    overflow: hidden;
}

.image-hero {
    margin: 0;
    min-height: auto;
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: 10px 10px 0 var(--line);
}

.image-hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section {
    padding: clamp(34px, 6vw, 72px) clamp(18px, 4vw, 56px);
}

.section.alt {
    background: var(--panel);
    border-block: 3px solid var(--line);
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.tile,
.notice {
    border: 3px solid var(--line);
    background: var(--panel);
    padding: 22px;
    box-shadow: 5px 5px 0 var(--line);
}

.tile p,
.notice p {
    margin: 10px 0 0;
    color: var(--muted);
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 28px;
    align-items: start;
}

.two-col > * {
    min-width: 0;
}

.facts {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.fact {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    min-width: 0;
}

.fact strong {
    min-width: 130px;
}

.lead a,
.fact span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.small {
    color: var(--muted);
    font-size: 0.92rem;
}

.site-footer {
    padding: 28px clamp(18px, 4vw, 56px);
    background: var(--ink);
    color: #f7f1e7;
}

.ticker {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 3px solid var(--line);
    background: var(--accent);
    color: var(--ink);
    font-weight: 950;
    text-transform: uppercase;
}

.ticker span {
    padding: 12px 20px;
    border-right: 3px solid var(--line);
}

.beer-section {
    background: #fff;
}

.beer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.beer-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    padding: 22px;
    border: 3px solid var(--line);
    box-shadow: 7px 7px 0 var(--line);
    color: var(--ink);
    overflow-wrap: anywhere;
}

.beer-card h3 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    text-transform: uppercase;
}

.beer-card p {
    margin: 0;
}

.beer-card span,
.can-tag {
    width: fit-content;
    padding: 6px 9px;
    border: 2px solid var(--line);
    background: #fff;
    font-weight: 900;
}

.seagull {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 48%),
        var(--accent);
}

.pebble {
    background:
        radial-gradient(circle at 30% 34%, #fff 0 13%, transparent 14%),
        radial-gradient(circle at 72% 44%, var(--copper) 0 10%, transparent 11%),
        var(--paper);
}

.pier {
    background:
        repeating-linear-gradient(45deg, rgba(18, 16, 14, 0.16) 0 10px, transparent 10px 20px),
        var(--sun);
}

.krush {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 42%),
        var(--foam);
}

.shout {
    background: var(--foam);
}

.brand-stamp,
.page-crest,
.footer-logo {
    display: block;
    border: 3px solid var(--line);
    border-radius: 50%;
    background: var(--panel);
    object-fit: cover;
    box-shadow: 6px 6px 0 var(--foam);
}

.brand-stamp {
    width: clamp(128px, 13vw, 190px);
    height: clamp(128px, 13vw, 190px);
    margin-bottom: 22px;
}

.page-crest {
    width: clamp(116px, 16vw, 160px);
    height: clamp(116px, 16vw, 160px);
    margin-bottom: 22px;
}

.footer-logo {
    width: 96px;
    height: 96px;
    margin-bottom: 12px;
    box-shadow: 4px 4px 0 var(--foam);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 22px;
}

.site-footer a {
    color: #d6f1e5;
}

.legal-line {
    margin-top: 16px;
    color: #d8cbb5;
    font-size: 0.9rem;
}

.cookie {
    position: fixed;
    right: 18px;
    bottom: 18px;
    max-width: 360px;
    padding: 16px;
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.cookie[hidden] {
    display: none;
}

.cookie button {
    margin-top: 10px;
    min-height: 38px;
    border: 0;
    background: var(--accent-strong);
    color: #fff;
    font-weight: 800;
    padding: 0 14px;
}

@media (max-width: 760px) {
    .site-header,
    .hero,
    .two-col,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav {
        justify-content: flex-start;
    }

    .hero {
        min-height: auto;
    }

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

    .beer-grid {
        grid-template-columns: 1fr;
    }

    .visual {
        min-height: 260px;
    }

    .image-hero {
        width: 100%;
        min-height: 0;
        box-shadow: 5px 5px 0 var(--line);
    }

    .button {
        max-width: 100%;
        padding: 0 14px;
    }

    .brand-stamp {
        width: 120px;
        height: 120px;
    }

    .page-crest {
        width: 112px;
        height: 112px;
    }

    .cookie {
        right: 14px;
        left: 14px;
        max-width: none;
    }
}

@media (min-width: 761px) and (max-width: 1120px) {
    .beer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
