/* =============================================================
   Stillmank Brewing Company — main.css
   Mobile-first, custom properties, no framework
   ============================================================= */

/* ---- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Colors */
    --color-dark:   #2c1a0e;
    --color-saddle: #8b4513;
    --color-cream:  #faf6f0;
    --color-gold:   #f5e6c8;
    --color-white:  #ffffff;

    /* Typography */
    --font-heading: 'DM Serif Display', Georgia, serif;
    --font-body:    'Lora', Georgia, serif;
    --font-ui:      'Inter', system-ui, sans-serif;

    /* Layout */
    --container-width: 1280px;
    --nav-height: 70px;

    /* Nav */
    --nav-bg: #060e09;
    --nav-text: #ffffff;
    --nav-height: 72px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-dark);
    background: var(--color-cream);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Age Gate -------------------------------------------- */
.age-gate-box {
    background: #890a21;
    color: #fff;
    text-align: center;
    padding: 3rem 2.5rem 2rem;
    border-radius: 8px;
    max-width: 420px;
    width: calc(100% - 2rem);
    box-shadow: 0 8px 40px rgba(0,0,0,.6);
    font-family: var(--font-ui);
}
.age-gate-logo {
    width: 180px;
    margin: 0 auto 1.5rem;
}
.age-gate-box h2 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    margin-bottom: .6rem;
    color: #fff;
    letter-spacing: .02em;
}
.age-gate-box p {
    font-size: .95rem;
    line-height: 1.6;
    opacity: .9;
    margin-bottom: 1.75rem;
}
.age-gate-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.age-gate-btn {
    font-family: var(--font-ui);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .75rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid #fff;
    transition: background .2s, color .2s;
}
.age-gate-btn--yes {
    background: #fff;
    color: #890a21;
}
.age-gate-btn--yes:hover {
    background: #f0e0e0;
}
.age-gate-btn--no {
    background: transparent;
    color: #fff;
}
.age-gate-btn--no:hover {
    background: rgba(255,255,255,.15);
}
.age-gate-legal {
    font-size: .75rem;
    opacity: .55;
    margin-bottom: 0;
}

/* ---- Skip Link -------------------------------------------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--color-dark);
    color: var(--color-gold);
    padding: .5rem 1rem;
    font-family: var(--font-ui);
    z-index: 9999;
    border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

/* ---- Container -------------------------------------------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* ---- Messages --------------------------------------------- */
.messages { padding: 1rem 2rem; }
.message { padding: .75rem 1rem; margin-bottom: .5rem; border-radius: 4px; font-family: var(--font-ui); }

/* =============================================================
   NAVIGATION
   ============================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: var(--nav-bg);
    color: var(--nav-text);
    transition: background .3s ease, box-shadow .3s ease;
}

/* When transparent mode is on, JS adds .nav-transparent to body */
body.nav-transparent .site-header {
    background: transparent;
}
/* JS adds .nav-scrolled once user scrolls past threshold */
body.nav-transparent .site-header.nav-scrolled {
    background: var(--nav-bg);
    box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.nav-inner {
    display: flex;
    align-items: center;
    height: var(--nav-height);
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
}

/* Logo (left) */
.nav-logo {
    display: flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
    padding: 10px 0;
}
.nav-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Nav link lists */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    font-family: var(--font-ui);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    flex: 1;
}

.nav-links a {
    color: var(--nav-text);
    opacity: .85;
    transition: opacity .2s;
    padding: .25rem 0;
    position: relative;
}
.nav-links a:hover { opacity: 1; }
/* Underline animation — same for all top-level links including dropdown triggers */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: #fff;
    transition: width .2s;
}
.nav-links > li > a:hover::after { width: 100%; }
.dropdown li a::after { display: none; } /* no underline inside dropdown */

/* Dropdown — pure CSS hover, zero gap */
.has-dropdown { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: #060e09;
    border-top: 2px solid rgba(255,255,255,.15);
    padding: .5rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
/* invisible bridge fills the gap so mouse doesn't break hover */
.dropdown::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}
.dropdown li a {
    display: block;
    padding: .6rem 1.25rem;
    font-size: .8125rem;
    opacity: .85;
    text-transform: none;
    letter-spacing: .02em;
    white-space: nowrap;
}
.dropdown li a::after { display: none; } /* no underline inside dropdown */
.dropdown li a:hover { opacity: 1; background: rgba(255,255,255,.08); }
/* CSS hover opens dropdown — JS only needed for keyboard/touch */
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown { display: block; }

/* Hamburger (mobile only) */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    grid-column: 3;
    justify-self: end;
}
.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--nav-text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    background: #0a1c17;
    padding: 1rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { padding: 0 2rem; }
.mobile-nav li a {
    display: block;
    padding: .75rem 0;
    font-family: var(--font-ui);
    font-size: .9375rem;
    color: #ffffff;
    opacity: .85;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-nav li:last-child a { border-bottom: none; }
.mobile-nav li a:hover { opacity: 1; }

/* Push content below fixed nav */
main { padding-top: var(--nav-height); }
/* Exception: if first child has .section-full-bleed, remove the main padding
   (showcase sits behind nav) */
main.nav-overlap { padding-top: 0; }

/* =============================================================
   SECTION — SHOWCASE  (Section 2)
   ============================================================= */
.showcase {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--color-dark);
}
.showcase--fullscreen { height: 100vh; }
.showcase--halfscreen { height: 50vh; }

/* Slides */
.showcase-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    background-size: cover;
    background-position: center;
}
.showcase-slide.is-active { opacity: 1; }

/* Vimeo embed (full-cover) */
.showcase-vimeo {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.showcase-vimeo iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 */
    min-height: 100%;
    min-width: 177.78vh; /* 16:9 */
    transform: translate(-50%, -50%);
    border: none;
}

/* PNG overlay (centered, 900×300 canvas) */
.showcase-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}
.showcase-overlay img {
    width: 900px;
    max-width: 85%;
    height: auto;
}

/* Slide CTA */
.showcase-cta {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}
.showcase-cta .btn {
    display: inline-block;
    padding: .75rem 2rem;
    background: var(--color-saddle);
    color: var(--color-gold);
    font-family: var(--font-ui);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background .2s;
}
.showcase-cta .btn:hover { background: var(--color-dark); }

/* Dots navigation */
.showcase-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 4;
}
.showcase-dots button {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    padding: 0;
    transition: background .2s;
}
.showcase-dots button.is-active { background: rgba(255,255,255,.95); }

/* =============================================================
   SECTION — BODY BANDS  (Sections 3, 5, 7, 9)
   Full-width, color-controlled, optional texture overlay
   ============================================================= */
.body-band {
    position: relative;
    width: 100%;
    padding: 4rem 2rem;
    overflow: hidden;
}
.body-band__texture {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: repeat;
    pointer-events: none;
}
.body-band__inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
.body-band__text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 4vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.body-band__text p { margin-bottom: 1rem; }

/* Placeholder state (no content yet) */
.body-band--placeholder {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.body-band--placeholder .placeholder-label {
    font-family: var(--font-ui);
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    opacity: .35;
}

/* =============================================================
   TOP BODY — Krush Lager feature band
   ============================================================= */
.top-body-krush {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
}
#section-top-body.body-band { padding: 5rem 2rem 0 !important; }
.top-body-krush__image {
    display: flex;
    align-items: flex-end;
    height: 420px;
}
.top-body-krush__image img {
    width: 100%;
    max-width: 620px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.25));
    transform: translateY(330px);
}
.top-body-krush__text {
    color: #fff;
    text-align: left;
}
.top-body-krush__new {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: .5rem;
    opacity: .85;
}
.top-body-krush__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}
.top-body-krush__btn {
    display: inline-block;
    background: #fff;
    color: #4a7fa0;
    font-family: var(--font-ui);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: .75rem 2rem;
    border-radius: 2px;
    transition: background .2s, color .2s;
}
.top-body-krush__btn:hover {
    background: #4a7fa0;
    color: #fff;
}
@media (max-width: 767px) {
    #section-top-body.body-band { padding: calc(3rem + 20px) 1.5rem 3rem !important; }
    .top-body-krush {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .top-body-krush__image {
        order: -1;
        height: 220px;
        justify-content: center;
    }
    .top-body-krush__image img {
        max-width: 200px;
        transform: none;
    }
    .top-body-krush__text { text-align: center; }
    .top-body-krush__btn { display: inline-block; }
}

/* =============================================================
   SECTION — FEATURE ROWS  (Sections 4, 6, 8)
   Four equal tiles, full-width, no horizontal gap
   ============================================================= */
.feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}
.feature-tile {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--color-dark);
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.feature-tile__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}
.feature-tile:hover .feature-tile__bg { transform: scale(1.07); }
.feature-tile__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
    transition: background .3s;
}
.feature-tile:hover .feature-tile__overlay { background: rgba(0,0,0,.75); }
.feature-tile__label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    z-index: 2;
    text-align: center;
    padding: 1.5rem;
}
.feature-tile::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid var(--color-gold);
    z-index: 3;
    pointer-events: none;
}
.feature-tile__label h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    transform: translateY(6px);
    transition: transform .3s;
}
.feature-tile:hover .feature-tile__label h3 { transform: translateY(0); }
.feature-tile__label .tile-cta {
    margin-top: .75rem;
    font-family: var(--font-ui);
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s .05s, transform .3s .05s;
}
.feature-tile:hover .feature-tile__label .tile-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Placeholder feature tiles */
.feature-tile--placeholder {
    aspect-ratio: 1 / 1;
}

/* Solid-color tiles (no background image) */
.feature-tile--color .feature-tile__label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    z-index: 1;
    text-align: center;
    padding: 1.5rem;
}
.feature-tile--color .feature-tile__label h3 {
    transform: none;
    transition: opacity .3s;
}
.feature-tile--color:hover .feature-tile__label h3 { opacity: .8; }
.feature-tile--color .tile-cta {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s .05s, transform .3s .05s;
}
.feature-tile--color:hover .tile-cta {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================================
   HOME — BEVERAGE NAV  (4 contained image cards)
   ============================================================= */
.bev-nav {
    background: #890a21;
    padding: 4rem 2rem;
}
.bev-nav__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.bev-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    display: block;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.08);
    transition: border-color .25s, transform .25s;
}
.bev-card:hover {
    border-color: #e0c070;
    transform: translateY(-4px);
}
.bev-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}
.bev-card:hover .bev-card__bg { transform: scale(1.07); }
.bev-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.40);
    transition: background .3s;
}
.bev-card:hover .bev-card__overlay { background: rgba(0,0,0,.55); }
.bev-card__label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #e0c070;
    z-index: 2;
    text-align: center;
    padding: 1.5rem;
}
.bev-card__label h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.2;
    transform: translateY(6px);
    transition: transform .3s;
}
.bev-card:hover .bev-card__label h3 { transform: translateY(0); }
.bev-card__cta {
    margin-top: .75rem;
    font-family: var(--font-ui);
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s .05s, transform .3s .05s;
}
.bev-card:hover .bev-card__cta {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 768px) {
    .bev-nav__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
@media (max-width: 480px) {
    .bev-nav__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
    background: var(--color-dark);
    color: var(--color-gold);
    padding: 3rem 2rem 1.5rem;
}
.site-footer__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer__logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}
.site-footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
    font-family: var(--font-ui);
    font-size: .875rem;
}
.site-footer__nav a { opacity: .75; transition: opacity .2s; }
.site-footer__nav a:hover { opacity: 1; }
.site-footer__social {
    display: flex;
    gap: 1.25rem;
    font-size: 1.25rem;
}
.site-footer__social a { opacity: .75; transition: opacity .2s; }
.site-footer__social a:hover { opacity: 1; }
.site-footer__copy {
    max-width: var(--container-width);
    margin: 1.25rem auto 0;
    font-family: var(--font-ui);
    font-size: .8125rem;
    opacity: .5;
    text-align: center;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
    display: inline-block;
    padding: .7rem 1.75rem;
    font-family: var(--font-ui);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background .2s, color .2s;
    cursor: pointer;
    border: none;
}
.btn-primary { background: var(--color-saddle); color: var(--color-gold); }
.btn-primary:hover { background: var(--color-dark); }
.btn-outline { background: transparent; color: var(--color-gold); border: 2px solid var(--color-gold); }
.btn-outline:hover { background: var(--color-gold); color: var(--color-dark); }

/* =============================================================
   RESPONSIVE
   ============================================================= */

/* md — 768px */
@media (min-width: 768px) {
    .body-band__inner {
        grid-template-columns: 1fr 1fr;
    }
    .body-band__inner.image-right { direction: rtl; }
    .body-band__inner.image-right > * { direction: ltr; }

    .site-footer__inner {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

/* lg — 1024px */
@media (min-width: 1024px) {
    .nav-links { display: flex; }
    .nav-hamburger { display: none; }

    .body-band { padding: 5rem 2rem; }
}

/* Mobile nav — below 1024px */
@media (max-width: 1023px) {
    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; position: relative; z-index: 1; }
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
    }
    .nav-logo-img { height: calc(var(--nav-height) - 16px); }

    .showcase--fullscreen { height: 60vh; }
    .showcase--halfscreen { height: 45vh; }

    .feature-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-tile--placeholder { aspect-ratio: 1 / 1; }
}

/* sm — below 480px */
@media (max-width: 479px) {
    .feature-row { grid-template-columns: 1fr 1fr; }
    .container { padding: 0 1rem; }
    .body-band { padding: 3rem 1rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #060e09;
    color: #ccc;
    margin-top: auto;
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 3.5rem 1.5rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.footer-heading {
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 0 1.1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #e0c070;
    display: inline-block;
}

.footer-col p {
    font-size: .875rem;
    line-height: 1.7;
    margin: 0 0 .6rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.footer-col p strong {
    color: #ddd;
}

.footer-link {
    color: #e0c070;
    text-decoration: none;
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-btn {
    display: inline-block;
    margin-top: .75rem;
    padding: .5rem 1.4rem;
    background: transparent;
    border: 1px solid #e0c070;
    color: #e0c070;
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background .2s, color .2s;
}

.footer-btn:hover {
    background: #e0c070;
    color: #060e09;
}

.footer-newsletter-desc {
    font-size: .875rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: .25rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.footer-social {
    display: flex;
    gap: .9rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: .95rem;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}

.footer-social a:hover {
    border-color: #e0c070;
    color: #e0c070;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    padding: 1rem 1.5rem;
}

.footer-bottom p {
    font-size: .8rem;
    color: #666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.footer-kayak-link {
    display: block;
    margin-bottom: 1rem;
    opacity: .85;
    transition: opacity .2s;
}

.footer-kayak-link:hover {
    opacity: 1;
}

/* Both footer logos: same height, width auto — consistent on all viewports */
.footer-featured-logo {
    display: block;
    height: 60px;
    width: auto;
}

/* Untappd PNG is fully edge-cropped; Kayak badge has ~10px internal left whitespace.
   Offset Untappd right so both logo contents appear left-aligned. */
.footer-featured-logo--untappd {
    padding-left: 20px;
}

.footer-mc-input {
    width: 100%;
    box-sizing: border-box;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 3px;
    color: #fff;
    padding: .5rem .75rem;
    font-size: .875rem;
    font-family: inherit;
    margin-bottom: .6rem;
    outline: none;
}

.footer-mc-input::placeholder {
    color: #888;
}

.footer-mc-input:focus {
    border-color: #c8a84b;
}

.footer-mc-submit {
    margin-top: 0;
    cursor: pointer;
    font-family: inherit;
}

#mc_embed_signup {
    background: transparent !important;
    width: 100% !important;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.25rem 2rem;
        text-align: center;
    }
    .footer-heading {
        display: block;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-btn {
        display: inline-block;
    }
    .footer-kayak-link {
        display: inline-block;
    }
    .footer-featured-logo--untappd {
        padding-left: 0;
    }
}

/* =============================================================
   HOME — RETAIL LOCATOR BAND
   ============================================================= */
.retail-band {
    background: #890a21;
    padding: 5rem 2rem;
}

.retail-band__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.retail-band__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    filter: drop-shadow(0 16px 40px rgba(0,0,0,.5));
}

.retail-band__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #f5e6c8;
    letter-spacing: .04em;
    margin: 0 0 .75rem;
    line-height: 1.1;
}

.retail-band__sub {
    font-family: var(--font-ui);
    font-size: .8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #e0c070;
    margin: 0 0 1.5rem;
}

.retail-band__desc {
    font-family: var(--font-ui);
    font-size: 1rem;
    line-height: 1.8;
    color: #c5bfb5;
    margin: 0 0 2rem;
}

.retail-band__btn {
    display: inline-block;
    padding: .75rem 2rem;
    background: #e0c070;
    color: #060e09;
    font-family: var(--font-ui);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background .2s, color .2s;
}

.retail-band__btn:hover {
    background: #f5e6c8;
    color: #060e09;
}

@media (max-width: 768px) {
    .retail-band__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .retail-band__image {
        order: -1;
    }
    .retail-band__image img {
        margin: 0 auto;
    }
    .retail-band__btn {
        display: inline-block;
    }
}

/* =============================================================
   HOME — CTA ICON GRID  (brewery event / keg / donation / gift)
   ============================================================= */
.cta-icon-grid {
    background: #0a1c17;
    padding: 4rem 2rem;
}

.cta-icon-grid__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.cta-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #f5e6c8;
    text-decoration: none;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 4px;
    background: rgba(255,255,255,.03);
    transition: background .25s, border-color .25s, transform .25s;
}

.cta-icon-card:hover {
    background: rgba(255,255,255,.07);
    border-color: #e0c070;
    transform: translateY(-4px);
    color: #fff;
}

.cta-icon-card__icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.cta-icon-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #e0c070;
    margin: 0 0 .75rem;
    line-height: 1.2;
}

.cta-icon-card__desc {
    font-family: var(--font-ui);
    font-size: .85rem;
    line-height: 1.7;
    color: #c5bfb5;
    margin: 0 0 1.25rem;
    flex: 1;
}

.cta-icon-card__cta {
    font-family: var(--font-ui);
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #e0c070;
    border-bottom: 1px solid rgba(224,192,112,.4);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
}

.cta-icon-card:hover .cta-icon-card__cta {
    color: #fff;
    border-color: #fff;
}

@media (max-width: 768px) {
    .cta-icon-grid__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cta-icon-grid__inner {
        grid-template-columns: 1fr;
    }
}

/* =============================================================
   INTERIOR PAGES — Shared components
   ============================================================= */

/* Page header band — sits directly under the fixed nav */
.page-header {
    background: var(--color-dark);
    color: var(--color-gold);
    padding: 3rem 2rem 2.5rem;
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 3rem);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .04em;
    margin: 0 0 .5rem;
}
.page-header p {
    font-family: var(--font-ui);
    font-size: .875rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .6;
    margin: 0;
}

/* Interior content wrapper */
.page-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}
.page-content--narrow {
    max-width: 860px;
}

/* Section divider — saddle-brown rule under heading */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--color-dark);
    padding-bottom: .6rem;
    border-bottom: 3px solid var(--color-saddle);
    margin: 0 0 2rem;
}

/* Back-nav link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-ui);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-saddle);
    margin-bottom: 2rem;
    transition: opacity .2s;
}
.back-link:hover { opacity: .7; }

/* Category / badge pill */
.tag-pill {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-dark);
    padding: .2rem .65rem;
    border-radius: 3px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* =============================================================
   BEER MENU PAGE
   ============================================================= */
.menu-page .section-title { margin-top: 2.5rem; }
.menu-page .section-title:first-of-type { margin-top: 0; }

.beer-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(44, 26, 14, .12);
    align-items: flex-start;
}
.beer-card:last-child { border-bottom: none; }

.beer-card__img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
}
.beer-card__img-placeholder {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: var(--color-gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-saddle);
    font-size: 1.5rem;
}
.beer-card__body { flex: 1; }

.beer-card__name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 .3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .4rem;
}
.beer-card__badge {
    font-family: var(--font-ui);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    background: var(--color-dark);
    color: var(--color-gold);
    padding: .15rem .5rem;
    border-radius: 3px;
}
.beer-card__badge--cask  { background: var(--color-saddle); }
.beer-card__badge--nitro { background: #1e3a6e; }

.beer-card__meta {
    font-family: var(--font-ui);
    font-size: .82rem;
    color: #777;
    margin: 0 0 .5rem;
}
.beer-card__meta strong { color: var(--color-dark); }

.beer-card__desc {
    font-family: var(--font-body);
    font-size: .9rem;
    line-height: 1.65;
    color: #444;
    margin: 0 0 .4rem;
}
.beer-card__rating {
    font-family: var(--font-ui);
    font-size: .8rem;
    color: var(--color-saddle);
}

/* =============================================================
   EVENTS PAGE
   ============================================================= */
.events-section { margin-bottom: 3.5rem; }

.event-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .event-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .event-grid { grid-template-columns: repeat(3, 1fr); }
}

.event-card {
    background: #f4f4f4;
    border: 1px solid rgba(44, 26, 14, .1);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 6px rgba(0,0,0,.07);
    transition: box-shadow .2s, transform .2s;
}
.event-card:hover {
    box-shadow: 0 6px 24px rgba(44, 26, 14, .14);
    transform: translateY(-2px);
}

.event-card__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}
.event-card__img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-saddle);
    font-size: 2.5rem;
}

.event-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.event-card__date {
    font-family: var(--font-ui);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-saddle);
    margin: 0 0 .5rem;
}
.event-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-dark);
    margin: 0 0 .5rem;
}
.event-card__title a { color: inherit; }
.event-card__title a:hover { color: var(--color-saddle); }

.event-card__location {
    font-family: var(--font-ui);
    font-size: .82rem;
    color: #777;
    margin: 0 0 1rem;
}
.event-card__desc {
    font-size: .9rem;
    line-height: 1.6;
    color: #555;
    margin: 0 0 1.25rem;
    flex: 1;
}
.event-card__footer {
    display: flex;
    gap: .75rem;
    align-items: center;
    margin-top: auto;
}
.event-card__link {
    font-family: var(--font-ui);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-dark);
    padding-bottom: 1px;
    transition: color .15s, border-color .15s;
}
.event-card__link:hover { color: var(--color-saddle); border-color: var(--color-saddle); }

.event-card__ticket-btn {
    display: inline-block;
    padding: .45rem 1.1rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    background: #0a1c17;
    color: #fff;
    border-radius: 3px;
    transition: background .2s;
}
.event-card__ticket-btn:hover {
    background: #172e24;
    color: #fff;
}

/* Past events — compact list */
.past-event-list { list-style: none; }
.past-event-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(44,26,14,.08);
    font-size: .9rem;
}
.past-event-item:last-child { border-bottom: none; }
.past-event-item__date {
    font-family: var(--font-ui);
    font-size: .78rem;
    color: #999;
    white-space: nowrap;
    min-width: 90px;
}
.past-event-item__name { color: var(--color-dark); }
.past-event-item__name a { color: inherit; }
.past-event-item__name a:hover { color: var(--color-saddle); }

/* Event detail page */
.event-detail {
    max-width: var(--container-width);
    margin: 0 auto;
}
.event-detail__img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 2rem;
    display: block;
}
.event-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
    font-family: var(--font-ui);
    font-size: .875rem;
    color: #666;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(44,26,14,.12);
}
.event-detail__meta strong { color: var(--color-dark); }
.event-detail__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

@media (max-width: 767px) {
    .page-header { padding: 2rem 1.25rem 1.75rem; }
    .page-content { padding: 2rem 1.25rem 3rem; }
}

/* ── Product Category Backgrounds ───────────────────────────────────────────
   Apply .bkg-beer / .bkg-seltzer / .bkg-cider / .bkg-mead to the
   full-page wrapper of each product showcase.
   Colors sampled from actual product can/bottle imagery.
   ─────────────────────────────────────────────────────────────────────────── */

/* Beer — deep forest green */
.bkg-beer {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' seed='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.10'/%3E%3C/svg%3E") repeat,
        linear-gradient(to bottom, #0a1c17 0%, #0f2219 30%, #172e24 100%);
}

/* Seltzer — deep hot pink */
.bkg-seltzer {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' seed='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.10'/%3E%3C/svg%3E") repeat,
        linear-gradient(to bottom, #7a0440 0%, #b82265 30%, #d45588 100%);
}

/* Cider — deep sky blue */
.bkg-cider {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' seed='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.10'/%3E%3C/svg%3E") repeat,
        linear-gradient(to bottom, #066f99 0%, #1a9cc9 30%, #3dbde8 100%);
}

/* Mead — deep indigo/purple */
.bkg-mead {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' seed='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.10'/%3E%3C/svg%3E") repeat,
        linear-gradient(to bottom, #272264 0%, #272264 50%, #4a4890 100%);
}

/* Shared: ensure full viewport coverage */
.bkg-beer,
.bkg-seltzer,
.bkg-cider,
.bkg-mead {
    min-height: 100vh;
}
