/* ===================================================
   BROWAR POGORZA â€” Hyper-saturated nature
   Soczysta zieleÅ„ Å‚Ä…k, intensywny bÅ‚Ä™kit, zÅ‚ote sÅ‚oÅ„ce
   =================================================== */

:root {
    /* === GREEN â€” soczyste jak Å‚Ä…ki PogÃ³rza === */
    --green-fresh: #4FB52E;
    --green-grass: #5FA53D;
    --green-meadow: #6BC23A;
    --green-leaf: #2D7A3D;
    --green-deep: #1A4D2E;
    --green-forest: #0F3A22;
    --green-pale: #C8E89C;
    --green-mist: #E0F0BE;

    /* === SKY === */
    --sky-vivid: #1E7AC8;
    --sky: #3A9ADD;
    --sky-bright: #6BBEF0;
    --sky-pale: #C0DFF2;

    /* === SUN / GOLD === */
    --sun-deep: #E89020;
    --sun: #FFC02E;
    --sun-bright: #FFD050;
    --sun-warm: #FFAA20;
    --sun-pale: #FFF0C0;

    /* === SUNSET / WARMTH === */
    --sunset: #FF8E3C;
    --rose-mist: #E8B4C0;

    /* === EARTH / CREAM === */
    --cream: #FFF9EC;
    --cream-warm: #FCEFC8;
    --paper: #FFFBF0;

    --ink: #0A1408;
    --ink-soft: #1F2A18;
    --text: #1F2A18;
    --text-muted: #4E5A45;
    --text-light: #FFF9EC;
    --text-light-muted: #D8E5C5;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 8px rgba(15, 58, 34, 0.10);
    --shadow-md: 0 12px 32px rgba(15, 58, 34, 0.16);
    --shadow-lg: 0 30px 70px rgba(15, 58, 34, 0.28);

    --radius: 8px;
    --radius-lg: 18px;
    --max-w: 1240px;
    --nav-h: 96px;
    --logo-size: 130px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
ul, dl, dd, dt { padding: 0; margin: 0; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ============== TYPOGRAPHY ============== */
.h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin: 0 0 1.4rem;
    color: var(--ink);
    letter-spacing: -0.015em;
    font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.h2--light { color: var(--cream); }

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-sans);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .26em;
    font-weight: 700;
    color: var(--green-leaf);
    margin-bottom: 1.4rem;
}
.kicker::before {
    content: '';
    width: 40px; height: 2px;
    background: var(--sun);
}
.kicker--light { color: var(--sun-bright); }
.kicker--light::before { background: var(--sun); }
.kicker--sky { color: var(--sun-bright); }
.kicker--sky::before { background: var(--sun); }

.lead {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--text);
    max-width: 760px;
    margin: 0 0 1.6rem;
    line-height: 1.5;
}
.lead--light { color: var(--text-light-muted); }
.lead--sky { color: rgba(255, 249, 236, 0.92); }

.emph {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-style: italic;
    font-weight: 500;
    color: var(--green-leaf);
    border-left: 3px solid var(--sun);
    padding-left: 1.4rem;
    margin: 2rem 0 0;
    line-height: 1.35;
}

.microcopy { font-size: .92rem; color: var(--text-muted); margin-top: 1.6rem; }
.microcopy--center { text-align: center; }

/* ============== BUTTONS ============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .04em;
    border-radius: var(--radius);
    transition: all .25s ease;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}
.btn--primary { background: var(--green-leaf); color: var(--cream); }
.btn--primary:hover { background: var(--green-deep); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--sun { background: var(--sun); color: var(--ink); }
.btn--sun:hover { background: var(--sun-bright); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--cream); border-color: var(--cream); box-shadow: none; }
.btn--ghost:hover { background: var(--cream); color: var(--ink); }
.btn--block { width: 100%; }

/* ============== NAVIGATION ============== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 100;
    transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav.is-scrolled {
    background: rgba(255, 249, 236, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav__brand {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 2;
}
.nav__logo {
    width: var(--logo-size);
    height: var(--logo-size);
    object-fit: contain;
    background: var(--cream);
    border-radius: 50%;
    padding: 6px;
    box-shadow:
        0 0 0 4px rgba(255, 192, 46, 0.0),
        0 12px 30px rgba(15, 58, 34, 0.35),
        0 4px 10px rgba(15, 58, 34, 0.25);
    transition: all .35s ease;
    position: relative;
    top: 28px;
}
.nav.is-scrolled .nav__logo {
    top: 8px;
    width: 88px;
    height: 88px;
    box-shadow:
        0 0 0 3px rgba(255, 192, 46, 0.4),
        0 8px 20px rgba(15, 58, 34, 0.25);
}
.nav__brand:hover .nav__logo {
    transform: scale(1.06) rotate(-3deg);
    box-shadow:
        0 0 0 6px rgba(255, 192, 46, 0.6),
        0 16px 40px rgba(15, 58, 34, 0.45);
}

.nav__menu {
    display: flex;
    gap: 36px;
    align-items: center;
}
.nav__menu a {
    font-family: var(--font-sans);
    font-size: .9rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: .03em;
    position: relative;
    padding: 8px 0;
    transition: color .3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.nav.is-scrolled .nav__menu a { color: var(--ink); text-shadow: none; }
.nav__menu a:not(.nav__cta)::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--sun);
    transition: width .25s ease;
}
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
    background: var(--sun);
    color: var(--ink) !important;
    padding: 12px 26px !important;
    border-radius: var(--radius);
    font-weight: 700;
    text-shadow: none !important;
    box-shadow: 0 4px 16px rgba(255, 192, 46, 0.4);
}
.nav__cta:hover { background: var(--sun-bright); transform: translateY(-2px); }
.nav__toggle {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav__toggle span { display: block; width: 28px; height: 3px; background: var(--cream); transition: all .2s ease; border-radius: 2px; }
.nav.is-scrolled .nav__toggle span { background: var(--ink); }

/* ============== HERO ============== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    overflow: hidden;
    color: var(--cream);
    background-color: var(--green-forest);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: saturate(1.3) contrast(1.05);
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(10, 20, 8, 0.45) 0%, rgba(10, 20, 8, 0.15) 35%, rgba(15, 58, 34, 0.75) 100%);
}
.hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 28px 130px;
    max-width: 980px;
}
.hero__mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 26px;
    background: rgba(255, 192, 46, 0.18);
    border: 1px solid rgba(255, 208, 80, 0.5);
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: .8rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--cream);
    backdrop-filter: blur(8px);
    margin-bottom: 2rem;
}
.hero__mark::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--sun-bright);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 208, 80, 0.25), 0 0 16px var(--sun);
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.6rem, 10vw, 8.6rem);
    font-weight: 500;
    line-height: .95;
    margin: 0 0 1rem;
    letter-spacing: -0.025em;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.hero__tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    color: var(--sun-bright);
    margin: 0 0 2rem;
    font-weight: 500;
    letter-spacing: .01em;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.hero__lead {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--cream);
    max-width: 680px;
    margin: 0 0 2.8rem;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hero__actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--sun-bright);
    animation: bounce 2.4s infinite;
    width: 36px; height: 36px;
}
.hero__scroll svg { width: 100%; height: 100%; }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============== SECTIONS ============== */
.section { padding: 130px 0; position: relative; }

.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }

.section--meadow {
    background:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(107, 194, 58, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 80% 50% at 100% 100%, rgba(255, 192, 46, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, var(--cream) 0%, #F5F8E0 100%);
    position: relative;
}

.section--sky {
    background:
        linear-gradient(180deg, #14241B 0%, #0E1A12 55%, #0A140C 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.section--sky::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 55% 40% at 82% 12%, rgba(255, 192, 46, 0.22) 0%, transparent 65%),
        radial-gradient(ellipse 70% 50% at 8% 92%, rgba(232, 144, 32, 0.12) 0%, transparent 65%);
    pointer-events: none;
}
.section--sky::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 140px;
    background:
        radial-gradient(ellipse 60% 100% at 30% 100%, rgba(255, 192, 46, 0.10) 0%, transparent 65%),
        radial-gradient(ellipse 60% 100% at 75% 100%, rgba(255, 138, 60, 0.08) 0%, transparent 65%);
    pointer-events: none;
}
.section--sky > .container { position: relative; z-index: 1; }

/* ============== BIZNES PHOTO ============== */
.biznes-photo {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 192, 46, 0.18);
}
.biznes-photo img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    filter: saturate(1.1) contrast(1.05);
}
.biznes-photo figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 70px 28px 26px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 10, 0.85) 60%, rgba(10, 14, 10, 0.95) 100%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.biznes-photo__tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 14px;
    background: var(--sun);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    border-radius: 100px;
}
.biznes-photo__caption {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--cream);
    line-height: 1.4;
    letter-spacing: .005em;
}

.section--hills {
    background:
        radial-gradient(ellipse 80% 60% at 0% 100%, rgba(79, 181, 46, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 100% 100%, rgba(107, 194, 58, 0.3) 0%, transparent 60%),
        linear-gradient(180deg, var(--sky-pale) 0%, var(--green-mist) 100%);
    position: relative;
    overflow: hidden;
}
.section--hills > .container { position: relative; z-index: 1; }

.section--forest {
    background:
        radial-gradient(ellipse at 20% 0%, rgba(79, 181, 46, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 80%, rgba(30, 122, 200, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--green-deep) 0%, var(--green-forest) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}
.section--forest > .container { position: relative; }

.section--sun {
    background:
        radial-gradient(ellipse 50% 40% at 90% 0%, rgba(255, 192, 46, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(255, 138, 60, 0.2) 0%, transparent 60%),
        linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
    position: relative;
    overflow: hidden;
}

/* ============== PARALLAX BANNER ============== */
.banner {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--cream);
}
.banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.25) contrast(1.05);
}
.banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(15, 58, 34, 0.65) 0%, rgba(15, 58, 34, 0.15) 50%, rgba(10, 20, 8, 0.45) 100%),
        linear-gradient(180deg, transparent 50%, rgba(10, 20, 8, 0.4) 100%);
}
.banner__content {
    position: relative;
    z-index: 2;
    padding: 80px 28px;
    max-width: 760px;
}
.banner__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    margin: 0 0 1.2rem;
    letter-spacing: -0.02em;
    color: var(--cream);
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    font-variation-settings: 'opsz' 144, 'SOFT' 80;
}
.banner__lead {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.2rem, 2.4vw, 1.8rem);
    color: var(--sun-bright);
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    max-width: 600px;
}
@media (min-width: 1024px) {
    .banner__bg { background-attachment: fixed; }
    .banner__bg img { position: fixed; top: 0; left: 0; height: 100vh; }
    .banner { background-image: url('../images/dolina-sanu.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
    .banner__bg { display: none; }
}

/* ============== SPLIT LAYOUT ============== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.split--reverse .split__visual { order: -1; }
.split__text p {
    margin: 0 0 1.15rem;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.75;
}
.section--sky .split__text p { color: rgba(255, 249, 236, 0.92); }
.section--sky .split__text { color: var(--cream); }

.split__visual--photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    aspect-ratio: 4 / 5;
}
.split__visual--photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.15); }

/* ============== FACTS ============== */
.facts {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 60px;
    margin-top: 3rem;
    padding: 32px 0 0;
    border-top: 2px solid var(--green-meadow);
    justify-content: start;
}
.facts__item { display: flex; flex-direction: column; }
.facts__item dt {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 3.2rem;
    line-height: 1;
    color: var(--green-leaf);
    margin-bottom: 10px;
    letter-spacing: -0.03em;
    font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.facts__item dd {
    font-family: var(--font-sans);
    font-size: .82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 600;
    margin: 0;
    max-width: 130px;
}

/* ============== CHECK LIST ============== */
.check-list { margin: 1.6rem 0 2.4rem; }
.check-list li {
    padding: 12px 0 12px 36px;
    position: relative;
    font-size: 1.08rem;
    line-height: 1.5;
}
.check-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 20px;
    width: 18px; height: 10px;
    border-left: 3px solid var(--sun);
    border-bottom: 3px solid var(--sun);
    transform: rotate(-45deg);
}
.section--sky .check-list li::before { border-color: var(--sun-bright); }

/* ============== CHAPTERS ============== */
.chapters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
    margin-top: 4rem;
}
.chapter {
    position: relative;
    padding-top: 24px;
}
.chapter::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60px; height: 2px;
    background: var(--sun);
}
.chapter__num {
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 500;
    font-size: 2.4rem;
    color: var(--sun-bright);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.chapter h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.95rem;
    color: var(--cream);
    margin: 0 0 .9rem;
    letter-spacing: -0.015em;
    line-height: 1.15;
}
.chapter p {
    color: var(--text-light-muted);
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.7;
}

/* ============== PUSZKA FRAME ============== */
.puszka-frame {
    position: relative;
    text-align: center;
    padding: 50px 40px 40px;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.4) 0%, transparent 60%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 192, 46, 0.18) 100%);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
}
.puszka-frame img {
    max-width: 380px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.4));
    transition: transform .5s ease;
}
.puszka-frame:hover img { transform: translateY(-10px) rotate(-2deg); }
.puszka-frame figcaption {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--cream);
    margin-top: 24px;
    letter-spacing: .01em;
}

/* ============== PARTNERS ============== */
.partners {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 2.4rem 0 1.4rem;
}
.partner {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--green-meadow);
    border-radius: 100px;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--green-deep);
    transition: all .2s ease;
    font-size: .95rem;
    box-shadow: var(--shadow-sm);
}
.partner:hover {
    background: var(--green-meadow);
    border-color: var(--green-leaf);
    color: var(--cream);
    transform: translateY(-3px);
}
.partner--accent {
    background: var(--green-leaf);
    color: var(--cream);
    border-color: var(--green-leaf);
}
.partner--accent:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
}

/* ============== BEER GRID ============== */
.beer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 4rem;
}
.beer-card {
    background: white;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease;
    overflow: hidden;
    padding: 0 0 32px;
    border: 1px solid rgba(15, 58, 34, 0.06);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.beer-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}
.beer-card__photo {
    padding: 32px 24px 16px;
    aspect-ratio: 1 / 1.05;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(107, 194, 58, 0.12) 0%, transparent 70%);
}
.beer-card__photo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.16));
    transition: transform .4s ease;
}
.beer-card:hover .beer-card__photo img { transform: translateY(-8px) scale(1.03); }
.beer-card h3 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 500;
    color: var(--ink);
    margin: 20px 0 .25rem;
    letter-spacing: -0.015em;
}
.beer-card__style {
    font-family: var(--font-sans);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--green-leaf);
    font-weight: 700;
    margin: 0 0 16px;
}
.beer-card__meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    margin-top: auto;
}
.beer-card__meta div {
    font-family: var(--font-sans);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-muted);
    font-weight: 600;
}
.beer-card__meta strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--ink);
    font-weight: 600;
    margin-top: 4px;
}

/* ============== GALLERY ============== */
.gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
    margin-top: 3rem;
}
.gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform .35s ease, box-shadow .35s ease;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; filter: saturate(1.1); }
.gallery__item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item--a { grid-column: span 3; grid-row: span 2; }
.gallery__item--b { grid-column: span 3; grid-row: span 1; }
.gallery__item--c { grid-column: span 1; grid-row: span 1; }
.gallery__item--d { grid-column: span 2; grid-row: span 1; }
.gallery__item--e { grid-column: span 2; grid-row: span 1; }
.gallery__item--f { grid-column: span 4; grid-row: span 1; }

/* ============== CONTACT ============== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 3rem;
    align-items: start;
}
.contact__row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 249, 236, 0.15);
}
.contact__row:last-of-type { border-bottom: 0; }
.contact__icon {
    width: 52px; height: 52px;
    background: var(--sun);
    color: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 192, 46, 0.35);
}
.contact__icon svg { width: 22px; height: 22px; }
.contact__label {
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--sun-bright);
    margin-bottom: 6px;
    font-weight: 700;
}
.contact__value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    line-height: 1.5;
    font-weight: 500;
}
.contact__value a:hover { color: var(--sun-bright); }

.contact__form {
    background: rgba(255, 249, 236, 0.06);
    border: 1px solid rgba(255, 249, 236, 0.16);
    border-radius: var(--radius-lg);
    padding: 44px;
    backdrop-filter: blur(8px);
}
.field { margin-bottom: 22px; }
.field label {
    display: block;
    font-size: .76rem;
    font-weight: 700;
    color: var(--sun-bright);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
}
.field input, .field textarea {
    width: 100%;
    padding: 16px 18px;
    background: rgba(255, 249, 236, 0.1);
    border: 1px solid rgba(255, 249, 236, 0.22);
    border-radius: var(--radius);
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all .2s ease;
}
.field input:focus, .field textarea:focus {
    outline: none;
    border-color: var(--sun);
    background: rgba(255, 249, 236, 0.14);
    box-shadow: 0 0 0 3px rgba(255, 192, 46, 0.2);
}
.field textarea { resize: vertical; min-height: 120px; }

.map-wrap {
    margin-top: 3.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--sun);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ============== FOOTER ============== */
.footer {
    background: var(--ink);
    color: var(--text-light-muted);
    padding-top: 80px;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}
.footer__brand { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.footer__logo { width: 80px; height: 80px; background: var(--cream); border-radius: 50%; padding: 5px; box-shadow: 0 0 0 3px rgba(255, 192, 46, 0.3); }
.footer__logo img { width: 100%; height: 100%; object-fit: contain; }
.footer__brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: -0.01em;
}
.footer__tag {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--sun-bright);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}
.footer__col h4 {
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    margin: 0 0 22px;
    font-weight: 700;
}
.footer__col ul li { margin-bottom: 12px; font-size: .95rem; }
.footer__col a:hover { color: var(--sun-bright); }
.footer__small { font-size: .92rem; margin: 0; line-height: 1.7; color: var(--text-light-muted); }
.footer__bottom { padding: 28px 0; border-top: 1px solid rgba(255, 249, 236, 0.08); font-size: .85rem; }

/* ============== REVEAL ============== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
    :root { --logo-size: 110px; }
    .beer-grid { grid-template-columns: repeat(2, 1fr); }
    .chapters { grid-template-columns: 1fr; gap: 48px; }
    .gallery { grid-template-columns: repeat(4, 1fr); }
    .gallery__item--a { grid-column: span 4; grid-row: span 2; }
    .gallery__item--b { grid-column: span 4; }
    .gallery__item--c { grid-column: span 1; }
    .gallery__item--d { grid-column: span 2; }
    .gallery__item--e { grid-column: span 2; }
    .gallery__item--f { grid-column: span 4; }
}
@media (max-width: 960px) {
    :root { --nav-h: 80px; --logo-size: 84px; }
    .nav__logo { top: 18px !important; }
    .nav.is-scrolled .nav__logo { width: 72px !important; height: 72px !important; }
    .nav__menu {
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--cream);
        padding: 0;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform .3s ease, opacity .3s ease;
        box-shadow: var(--shadow-md);
        max-height: calc(100vh - var(--nav-h));
        overflow-y: auto;
    }
    .nav__menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav__menu a {
        padding: 18px 28px;
        border-bottom: 1px solid rgba(15, 58, 34, 0.08);
        width: 100%;
        text-align: left;
        color: var(--ink) !important;
        text-shadow: none !important;
    }
    .nav__menu a:not(.nav__cta)::after { display: none; }
    .nav__cta { margin: 16px 28px; text-align: center; }
    .nav__toggle { display: flex; }
    .nav__toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
    .nav__toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

    .split { grid-template-columns: 1fr; gap: 50px; }
    .split--reverse .split__visual { order: 0; }
    .contact { grid-template-columns: 1fr; gap: 40px; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .section { padding: 90px 0; }
    .facts { gap: 36px; }
}
@media (max-width: 600px) {
    .container { padding: 0 20px; }
    .hero__content { padding: 110px 20px 90px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .facts { grid-template-columns: 1fr 1fr; gap: 28px; }
    .facts__item dt { font-size: 2.4rem; }
    .beer-grid { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .gallery__item--a, .gallery__item--b, .gallery__item--d, .gallery__item--e, .gallery__item--f { grid-column: span 2; }
    .gallery__item--c { grid-column: span 2; }
    .footer__inner { grid-template-columns: 1fr; gap: 36px; }
    .contact__form { padding: 28px 22px; }
    .map-wrap iframe { height: 320px; }
    .puszka-frame { padding: 30px 20px; }
}

/* ============== LIGHTBOX ============== */
.lightbox-trigger { display: block; width: 100%; height: 100%; cursor: zoom-in; }
.lightbox-trigger img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.lightbox-trigger:hover img { transform: scale(1.04); }

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    cursor: default;
}
.lightbox__close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.3); }

/* Honeypot field — hidden from real users */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

