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

:root {
    --emerald: #064e3b;
    --emerald-deep: #022c22;
    --emerald-light: #065f46;
    --cream: #fef9f0;
    --cream-dark: #f5efe3;
    --cream-mid: #faf6ed;
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #7a7a7a;
    --line: rgba(6, 78, 59, 0.12);
    --line-strong: rgba(6, 78, 59, 0.25);
    --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text);
    background-color: var(--cream);
    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;
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 249, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: background 0.3s ease;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-brand-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--emerald);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--emerald);
    border-radius: 50%;
}

.nav-brand-text {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color 0.2s ease;
    position: relative;
}

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

.nav-link:hover {
    color: var(--emerald);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--cta {
    color: var(--emerald);
    border: 1px solid var(--emerald);
    padding: 0.45rem 1rem;
    border-radius: 2px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--emerald);
    color: var(--cream);
}

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

.nav-toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ─── MOBILE MENU ─── */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 0.5rem;
}

.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text);
    transition: color 0.2s ease;
}

.mobile-menu-link:hover {
    color: var(--emerald);
}

.mobile-menu-link--cta {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald);
    border: 1px solid var(--emerald);
    padding: 0.6rem 1.5rem;
    margin-top: 1rem;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    padding: 72px 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    flex: 1;
    padding-bottom: 3rem;
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 2rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--emerald-deep);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn--primary {
    background: var(--emerald);
    color: var(--cream);
    border-color: var(--emerald);
}

.btn--primary:hover {
    background: var(--emerald-deep);
    border-color: var(--emerald-deep);
}

.btn--ghost {
    background: transparent;
    color: var(--text-light);
    border-color: var(--line-strong);
    padding: 0.85rem 1.5rem;
}

.btn--ghost:hover {
    color: var(--emerald);
    border-color: var(--emerald);
}

.btn--outline {
    background: transparent;
    color: var(--emerald);
    border-color: var(--emerald);
}

.btn--outline:hover {
    background: var(--emerald);
    color: var(--cream);
}

.hero-details {
    display: flex;
    gap: 4rem;
}

.hero-detail {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hero-detail-label {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-detail-value {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}

.hero-detail-link {
    color: var(--emerald);
    border-bottom: 1px solid var(--line-strong);
    transition: border-color 0.2s ease;
}

.hero-detail-link:hover {
    border-color: var(--emerald);
}

/* Hero Image Stack */
.hero-image-stack {
    position: relative;
    height: 700px;
}

.hero-img {
    overflow: hidden;
    position: absolute;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-img:hover img {
    transform: scale(1.03);
}

.hero-img--main {
    width: 380px;
    height: 520px;
    top: 0;
    right: 0;
    z-index: 1;
}

.hero-img--float {
    width: 280px;
    height: 200px;
    bottom: 140px;
    right: 60px;
    z-index: 2;
    border: 4px solid var(--cream);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-img--accent {
    width: 200px;
    height: 140px;
    bottom: 40px;
    right: 200px;
    z-index: 1;
    opacity: 0.85;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 40px;
    height: 1px;
    background: var(--emerald);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(0.4); opacity: 0.4; }
}

/* ─── SECTION COMMON ─── */
.section-label {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--emerald);
    display: block;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--emerald-deep);
    letter-spacing: -0.01em;
}

/* ─── ABOUT ─── */
.about {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.about-line {
    width: 60px;
    height: 1px;
    background: var(--emerald);
    margin-top: 2rem;
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line);
}

.about-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-stat-value {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--emerald);
    line-height: 1;
}

.about-stat-label {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-stat-divider {
    width: 1px;
    background: var(--line-strong);
    align-self: stretch;
}

/* ─── MENU ─── */
.menu {
    padding: 6rem 3rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-header {
    margin-bottom: 4rem;
}

.menu-header .section-title {
    max-width: 600px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.menu-card {
    background: var(--cream-mid);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.08);
}

.menu-card-img {
    overflow: hidden;
    height: 220px;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.05);
}

.menu-card-body {
    padding: 2rem;
}

.menu-card-category {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald);
    display: block;
    margin-bottom: 0.5rem;
}

.menu-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--emerald-deep);
    margin-bottom: 1.2rem;
}

.menu-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.menu-card-list li {
    font-size: 0.88rem;
    color: var(--text-light);
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.menu-card-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--emerald);
    border-radius: 50%;
    flex-shrink: 0;
}

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

.menu-note {
    margin-top: 3rem;
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* ─── DRINKS ─── */
.drinks {
    padding: 6rem 3rem 8rem;
    background: var(--emerald);
    margin: 0;
}

.drinks-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.drinks-visual {
    overflow: hidden;
    border-radius: 4px;
    height: 600px;
}

.drinks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.drinks-visual:hover img {
    transform: scale(1.03);
}

.drinks-content .section-label {
    color: rgba(254, 249, 240, 0.6);
}

.drinks-content .section-title {
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.drinks-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(254, 249, 240, 0.7);
    margin-bottom: 3rem;
}

.drinks-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.drink-cat {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1.2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(254, 249, 240, 0.1);
}

.drink-cat:first-child {
    padding-top: 0;
}

.drink-cat-number {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 0.75rem;
    color: rgba(254, 249, 240, 0.4);
    padding-top: 0.3rem;
}

.drink-cat-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 0.4rem;
}

.drink-cat-desc {
    font-size: 0.88rem;
    color: rgba(254, 249, 240, 0.55);
    line-height: 1.6;
}

.drinks-content .btn--outline {
    border-color: rgba(254, 249, 240, 0.4);
    color: var(--cream);
}

.drinks-content .btn--outline:hover {
    background: var(--cream);
    color: var(--emerald);
    border-color: var(--cream);
}

/* ─── VISIT ─── */
.visit {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.visit-header {
    margin-bottom: 4rem;
}

.visit-header .section-title {
    max-width: 400px;
}

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

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.visit-block {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.visit-block-label {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.visit-block-value {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
}

.visit-block-value address {
    font-style: normal;
}

.visit-link {
    color: var(--emerald);
    border-bottom: 1px solid var(--line-strong);
    transition: border-color 0.2s ease;
    display: inline-block;
    max-width: fit-content;
}

.visit-link:hover {
    border-color: var(--emerald);
}

.visit-hours {
    color: var(--text-light);
}

.visit-map {
    border-radius: 4px;
    overflow: hidden;
    height: 420px;
    border: 1px solid var(--line);
}

.visit-map iframe {
    width: 100%;
    height: 100%;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--emerald-deep);
    padding: 4rem 3rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-brand-mark {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--cream);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(254, 249, 240, 0.3);
    border-radius: 50%;
}

.footer-brand-name {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(254, 249, 240, 0.7);
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    font-size: 0.82rem;
    color: rgba(254, 249, 240, 0.5);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--cream);
}

.footer-copy {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: rgba(254, 249, 240, 0.3);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 3rem;
    }

    .hero-image-stack {
        height: 500px;
    }

    .hero-img--main {
        width: 280px;
        height: 400px;
    }

    .hero-img--float {
        width: 200px;
        height: 150px;
        right: 40px;
    }

    .hero-img--accent {
        width: 150px;
        height: 100px;
        right: 140px;
    }

    .about-grid {
        gap: 3rem;
    }

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

    .drinks-layout {
        gap: 3rem;
    }

    .drinks-visual {
        height: 450px;
    }
}

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

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 72px 1.5rem 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-right {
        display: none;
    }

    .hero-headline {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .hero-details {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about {
        padding: 5rem 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-stat-divider {
        display: none;
    }

    .menu {
        padding: 4rem 1.5rem 5rem;
    }

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

    .drinks {
        padding: 5rem 1.5rem;
    }

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

    .drinks-visual {
        height: 300px;
        order: -1;
    }

    .visit {
        padding: 5rem 1.5rem;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .visit-map {
        height: 280px;
    }

    .footer {
        padding: 3rem 1.5rem;
    }

    .footer-contact {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 72px 1.25rem 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
