:root {
    --bg: #0f1115;
    --bg-soft: #171b22;
    --card: #202631;
    --text: #f4f4f4;
    --muted: #b7bdc8;
    --green: #8dff78;
    --yellow: #ffd34e;
    --pink: #ff4fa3;
    --border: rgba(255, 255, 255, 0.13);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --header-height: 76px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    padding: 12px 26px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    background: rgba(15, 17, 21, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 10px;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: var(--muted);
    font-size: 0.95rem;
}

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

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.15s ease, background 0.15s ease;
}
.instagram-link {
    background: linear-gradient(
        45deg,
        #F58529,
        #DD2A7B,
        #8134AF,
        #515BD4
    ) !important;
    border: none !important;
}

.untappd-link {
    background: #FFC000 !important;
    border: none !important;
}

.social-links img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.instagram-link:hover,
.untappd-link:hover {
    transform: scale(1.1);
}
.social-links a:hover {
    transform: translateY(-2px);
    background: rgba(141, 255, 120, 0.12);
}

.social-links img {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 1.2rem;
}

.hero-main {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 54px;
    padding: 80px 7vw;
    background:
        radial-gradient(circle at top left, rgba(141, 255, 120, 0.15), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 79, 163, 0.13), transparent 32%),
        linear-gradient(135deg, #0f1115, #171b22);
}

.eyebrow {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6.8rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    margin-bottom: 26px;
}

.hero-content p {
    max-width: 640px;
    color: var(--muted);
    font-size: 1.18rem;
    margin-bottom: 30px;
}

.hero-logo {
    background: linear-gradient(145deg, rgba(141,255,120,0.18), rgba(255,79,163,0.12));
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.hero-logo img {
    width: 100%;
    display: block;
    border-radius: 22px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 13px 19px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-weight: 900;
    transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--green);
    color: #071007;
    border-color: var(--green);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
}

.section {
    padding: 86px 7vw;
}

.section-dark {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-head {
    max-width: 860px;
    margin-bottom: 38px;
}

.section-head h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}

.section-head p {
    color: var(--muted);
    font-size: 1.08rem;
}

.beer-slider {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
}

.beer-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    overflow: hidden;
    border-radius: 28px;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.beer-image {
    min-height: 420px;
    background:
        linear-gradient(135deg, rgba(141,255,120,0.22), rgba(255,211,78,0.14)),
        #1c222c;
    background-size: cover;
    background-position: center;
}

.beer-info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.beer-info h3 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}

.beer-info p {
    color: var(--muted);
    margin-bottom: 26px;
}

.beer-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.beer-facts div {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    background: rgba(255,255,255,0.035);
}

.beer-facts span {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.beer-facts strong {
    color: var(--text);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(15, 17, 21, 0.78);
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
}

.slider-btn:hover {
    background: var(--green);
    color: #071007;
}

.slider-btn.prev {
    left: 16px;
}

.slider-btn.next {
    right: 16px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
}

.slider-dots button.active {
    background: var(--green);
}

.cards {
    display: grid;
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}

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

.cards.three {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
}

.card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--muted);
    margin-bottom: 12px;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    max-width: 1180px;
    margin: 0 auto;
}

.about-text {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px;
}

.about-text h3 {
    margin-bottom: 10px;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 26px;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.image-card,
.award-image {
    min-height: 320px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(141,255,120,0.18), rgba(255,79,163,0.14)),
        #1c222c;
    background-size: cover;
    background-position: center;
}

.award-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 22px;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 5px solid var(--yellow);
    border-radius: 22px;
    padding: 24px;
}

.award-image {
    min-height: 160px;
}

.award-card p {
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}

.legal {
    background: #0b0d11;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    color: var(--muted);
    max-width: 1180px;
    margin: 0 auto;
}

.legal-grid h3 {
    color: var(--text);
    margin-bottom: 12px;
}

.site-footer {
    padding: 32px 7vw;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    color: var(--muted);
    background: #090a0d;
}

.site-footer div {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer a:hover {
    color: var(--green);
}

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

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .main-nav {
        display: none;
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 14px;
    }

    .main-nav.open {
        display: flex;
    }

    .hero-main,
    .beer-slide,
    .about-grid,
    .contact-grid,
    .legal-grid,
    .cards.two,
    .cards.three {
        grid-template-columns: 1fr;
    }

    .hero-main {
        padding-top: 48px;
    }

    .beer-info {
        padding: 34px;
    }

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

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

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

@media (max-width: 560px) {
    .site-header {
        padding: 10px 16px;
        gap: 12px;
    }

    .brand span {
        display: none;
    }

    .section,
    .hero-main {
        padding-left: 22px;
        padding-right: 22px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn.prev {
        left: 8px;
    }

    .slider-btn.next {
        right: 8px;
    }
}
