:root {
    --gold: #c8a951;
    --gold-dark: #a8893a;
    --dark: #1a1a1a;
    --darker: #111;
    --light: #f5f0e8;
    --cream: #faf7f0;
    --text: #333;
    --text-light: #777;
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--cream);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

a {
    color: var(--gold-dark);
    text-decoration: none;
}

a:hover {
    color: var(--gold);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* NAV */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #ccc;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1008 0%, #2a1a0a 40%, #1a1a1a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(200, 169, 81, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 70% 30%, rgba(200, 169, 81, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--gold);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--gold-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 169, 81, 0.3);
}

/* SECTIONS */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--dark);
    color: #ddd;
}

.section-dark .section-title {
    color: #fff;
}

.section-dark .section-title::after {
    background: var(--gold);
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 16px auto 0;
}

.section-desc {
    text-align: center;
    max-width: 650px;
    margin: 24px auto 60px;
    color: var(--text-light);
    font-size: 16px;
}

.section-dark .section-desc {
    color: #aaa;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #555;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat {
    text-align: center;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-dark);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BEER */
.beer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.beer-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200, 169, 81, 0.2);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.beer-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.beer-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.beer-card h3 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 12px;
}

.beer-card p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.8;
}

.beer-tag {
    display: inline-block;
    padding: 4px 16px;
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* TRADITION */
.tradition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.tradition-item {
    text-align: center;
    padding: 32px 24px;
}

.tradition-year {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.tradition-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.tradition-item p {
    color: #666;
    font-size: 14px;
}

/* CTA */
.section-cta {
    background: linear-gradient(135deg, #1a1008, #2a1a0a);
    color: #fff;
    text-align: center;
}

.section-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-cta > .container > p {
    color: #bbb;
    max-width: 500px;
    margin: 0 auto 48px;
}

.hours-grid {
    display: flex;
    justify-content: center;
}

.hours-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200, 169, 81, 0.3);
    border-radius: var(--radius);
    padding: 32px 48px;
    min-width: 320px;
}

.hours-card h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 20px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.hours-list li:last-child {
    border-bottom: none;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--dark);
}

.contact-card p {
    color: #555;
    font-size: 14px;
    margin-bottom: 6px;
}

/* FOOTER */
.footer {
    background: var(--darker);
    color: #888;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-desc {
    margin-top: 12px;
    font-size: 14px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: #888;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-col a {
    color: #888;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: right 0.3s;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .about-grid,
    .beer-grid,
    .tradition-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section {
        padding: 60px 0;
    }

    .hours-card {
        min-width: auto;
        width: 100%;
    }
}