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

:root {
    --green-900: #0F2419;
    --green-800: #1A3C34;
    --green-700: #245247;
    --green-600: #2D6356;
    --green-500: #3A7D6C;
    --gold: #C8A961;
    --gold-light: #D4BA7A;
    --cream: #F5F2EB;
    --cream-light: #FAF8F4;
    --cream-dark: #EBE6DB;
    --text-dark: #1A1A18;
    --text-mid: #4A4A46;
    --text-light: #7A7A74;
    --white: #FFFFFF;

    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-sans: 'Manrope', -apple-system, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--green-800); color: var(--cream);
    padding: 0.5rem 1rem; border-radius: 0 0 4px 4px; z-index: 100;
    font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ─── Header ─── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 60, 52, 0.08);
    transition: background 0.4s var(--ease-smooth);
}

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex; align-items: center; gap: 0.625rem;
    font-family: var(--font-serif); font-size: 1.25rem;
    color: var(--green-800); letter-spacing: -0.01em;
}

.logo-mark {
    font-size: 0.75rem; color: var(--gold);
    display: flex; align-items: center;
}

.nav-list {
    display: flex; align-items: center; gap: 2rem;
}

.nav-list a {
    font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--text-mid);
    transition: color 0.25s var(--ease-smooth);
    position: relative;
}

.nav-list a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--green-700);
    transition: width 0.3s var(--ease-out);
}

.nav-list a:hover { color: var(--green-800); }
.nav-list a:hover::after { width: 100%; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-sans); font-weight: 500;
    font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.875rem 1.75rem; border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.btn--primary {
    background: var(--green-800); color: var(--cream);
    border: 1px solid var(--green-800);
}
.btn--primary:hover {
    background: var(--green-700); border-color: var(--green-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 60, 52, 0.25);
}

.btn--outline {
    background: transparent; color: var(--green-800);
    border: 1px solid var(--green-800);
}
.btn--outline:hover {
    background: var(--green-800); color: var(--cream);
}

.btn--ghost {
    background: transparent; color: var(--cream);
    border: 1px solid rgba(245, 242, 235, 0.4);
}
.btn--ghost:hover {
    background: var(--cream); color: var(--green-800);
    border-color: var(--cream);
}

.btn--large { padding: 1rem 2rem; font-size: 0.875rem; }

/* ─── Nav Toggle ─── */
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    width: 28px; padding: 4px 0;
}
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 100%; height: 1.5px;
    background: var(--green-800); border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}
.hamburger::before, .hamburger::after { content: ''; position: absolute; }
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); top: 0; }

/* ─── Hero ─── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.02);
    transition: transform 8s ease-out;
}
.hero:hover .hero-img { transform: scale(1.05); }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 36, 25, 0.55) 0%,
        rgba(26, 60, 52, 0.70) 50%,
        rgba(15, 36, 25, 0.82) 100%
    );
}

.hero-content {
    position: relative; z-index: 1;
    text-align: center; max-width: 780px; padding-top: 72px;
}

.hero-tagline {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400; line-height: 1.1;
    color: var(--cream); letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.0625rem; line-height: 1.75;
    color: rgba(245, 242, 235, 0.75);
    max-width: 540px; margin: 0 auto 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%); z-index: 1;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-line {
    width: 1px; height: 48px; background: rgba(245, 242, 235, 0.3);
    position: relative; overflow: hidden;
}
.scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0;
    width: 100%; height: 100%; background: var(--gold);
    animation: scrollDown 2s var(--ease-smooth) infinite;
}
@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ─── Section Shared ─── */
.section-label {
    font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400; line-height: 1.15;
    color: var(--green-800); letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.section-title--center { text-align: center; }

.section-subtitle {
    font-size: 1.0625rem; line-height: 1.75;
    color: var(--text-mid); max-width: 520px;
}

/* ─── About ─── */
.about { padding: 8rem 0; }

.about-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}

.about-text p {
    font-size: 1rem; line-height: 1.8;
    color: var(--text-mid); margin-bottom: 1.25rem;
}

.about-stats {
    display: flex; align-items: center; gap: 1.5rem;
    margin-top: 3rem; padding-top: 2.5rem;
    border-top: 1px solid var(--cream-dark);
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem; color: var(--green-800);
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-light);
}

.stat-divider {
    width: 1px; height: 40px; background: var(--cream-dark);
}

.about-image { border-radius: 2px; overflow: hidden; }
.about-image img {
    width: 100%; height: 100%; object-fit: cover;
    aspect-ratio: 600/750;
}

/* ─── Drinks ─── */
.drinks {
    padding: 8rem 0;
    background: var(--green-800);
}

.drinks .section-label { color: var(--gold); }
.drinks .section-title { color: var(--cream); }
.drinks .section-subtitle { color: rgba(245, 242, 235, 0.6); margin: 0 auto 4rem; text-align: center; }

.drinks-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.drink-card {
    padding: 2rem;
    background: rgba(245, 242, 235, 0.04);
    border: 1px solid rgba(245, 242, 235, 0.08);
    border-radius: 2px;
    transition: all 0.35s var(--ease-out);
}

.drink-card:hover {
    background: rgba(245, 242, 235, 0.08);
    border-color: rgba(200, 169, 97, 0.3);
    transform: translateY(-4px);
}

.drink-card-icon {
    width: 36px; height: 36px; margin-bottom: 1.5rem;
    color: var(--gold); opacity: 0.85;
}

.drink-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem; font-weight: 400;
    color: var(--cream); margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.drink-card-desc {
    font-size: 0.875rem; line-height: 1.7;
    color: rgba(245, 242, 235, 0.55);
}

/* ─── Atmosphere ─── */
.atmosphere { padding: 8rem 0; }

.atmosphere-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start;
}

.atmosphere-content .section-subtitle { margin-bottom: 2.5rem; }

.atmosphere-features { display: flex; flex-direction: column; gap: 1.25rem; }

.atmosphere-features li {
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.9375rem; color: var(--text-mid);
    font-weight: 400;
}

.feature-icon {
    flex-shrink: 0; width: 20px; height: 20px;
    color: var(--green-700);
}

.atmosphere-images {
    display: grid; grid-template-columns: 1fr;
    gap: 1rem;
}

.atm-img { border-radius: 2px; overflow: hidden; }
.atm-img--1 { aspect-ratio: 500/620; }
.atm-img--2 { aspect-ratio: 500/380; }
.atm-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.atm-img:hover img { transform: scale(1.03); }

/* ─── Visit ─── */
.visit {
    padding: 8rem 0;
    background: var(--cream);
}

.visit-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start;
}

.visit-info .section-subtitle { margin-bottom: 2.5rem; }

.visit-details { display: flex; flex-direction: column; gap: 1.75rem; margin-bottom: 2.5rem; }

.visit-detail {
    display: flex; align-items: flex-start; gap: 1rem;
}

.detail-icon {
    flex-shrink: 0; width: 20px; height: 20px;
    color: var(--green-700); margin-top: 2px;
}

.visit-detail strong {
    display: block; font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-light); margin-bottom: 0.25rem;
}

.visit-detail span,
.visit-detail a {
    font-size: 1rem; color: var(--text-dark); line-height: 1.6;
}
.visit-detail a:hover { color: var(--green-700); text-decoration: underline; }

.visit-map {
    border-radius: 2px; overflow: hidden;
    aspect-ratio: 4/3; min-height: 360px;
    background: var(--cream-dark);
}

/* ─── Footer ─── */
.site-footer {
    padding: 3rem 0;
    background: var(--green-900);
}

.footer-inner { text-align: center; }

.footer-brand {
    display: flex; align-items: center; justify-content: center;
    gap: 0.5rem; margin-bottom: 1rem;
    font-family: var(--font-serif); font-size: 1.125rem;
    color: var(--cream);
}

.footer-copy {
    font-size: 0.8125rem; color: rgba(245, 242, 235, 0.4);
    line-height: 1.8;
}

/* ─── Scroll Reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .drinks-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }

    .nav-toggle { display: flex; }

    .nav-list {
        position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
        background: rgba(250, 248, 244, 0.97);
        backdrop-filter: blur(16px);
        flex-direction: column; justify-content: center;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
    }
    .nav-list.open { transform: translateX(0); }
    .nav-list a { font-size: 1rem; }

    .hero-content { padding-top: 0; }
    .hero-headline { font-size: clamp(2rem, 10vw, 3rem); }
    .hero-sub { font-size: 0.9375rem; padding: 0 1rem; }

    .about-inner,
    .atmosphere-grid,
    .visit-inner {
        grid-template-columns: 1fr; gap: 2.5rem;
    }

    .about-image { order: -1; }
    .about-image img { aspect-ratio: 4/3; }

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

    .atmosphere-images { order: -1; }
    .atm-img--1 { aspect-ratio: 4/3; }
    .atm-img--2 { aspect-ratio: 4/3; }

    .visit-map { aspect-ratio: 16/9; min-height: 240px; }

    .about-stats { gap: 1rem; }
    .stat-number { font-size: 1.375rem; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
    .scroll-line::after { animation: none; }
}
