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

:root {
    --teal-darkest: #072e2e;
    --teal-dark: #0D4F4F;
    --teal-mid: #1A7A7A;
    --teal-light: #5FB8B8;
    --teal-pale: #D1EDED;
    --slate-900: #111827;
    --slate-800: #1F2937;
    --slate-700: #374151;
    --slate-600: #4B5563;
    --slate-500: #6B7280;
    --slate-400: #9CA3AF;
    --slate-300: #D1D5DB;
    --slate-200: #E5E7EB;
    --slate-100: #F3F4F6;
    --slate-50: #F9FAFB;
    --white: #FFFFFF;
    --cream: #FAFAF8;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--slate-800);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

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

/* ── Typography ── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-mid);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 24px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 4px;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--teal-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 79, 79, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--teal-dark);
    border-color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--teal-dark);
    border: 1.5px solid var(--teal-dark);
}

.btn-outline-dark:hover {
    background: var(--teal-dark);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--slate-800);
    border: 1.5px solid var(--slate-300);
}

.btn-outline-light:hover {
    background: var(--slate-800);
    color: var(--white);
    border-color: var(--slate-800);
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.site-header.scrolled {
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.site-header.scrolled .logo,
.site-header.scrolled .main-nav a {
    color: var(--slate-800);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
}

.logo-icon {
    color: var(--teal-light);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--teal-light);
    transition: width 0.3s var(--ease-out);
}

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

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

.nav-cta {
    padding: 8px 20px;
    background: var(--teal-light);
    color: var(--teal-darkest) !important;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s var(--ease-out);
}

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

.nav-cta:hover {
    background: var(--white);
    transform: translateY(-1px);
}

/* ── Mobile Menu Toggle ── */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.menu-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--teal-darkest);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--teal-light);
}

.mobile-menu-contact {
    text-align: center;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 2;
}

.mobile-menu-contact a {
    color: var(--teal-light);
    font-weight: 500;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(7, 46, 46, 0.55) 0%,
        rgba(13, 79, 79, 0.65) 50%,
        rgba(7, 46, 46, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    max-width: 720px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title .line {
    display: block;
}

.hero-title em {
    font-style: italic;
    color: var(--teal-light);
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
}

.hero-scroll svg {
    animation: bobble 2s ease-in-out infinite;
}

@keyframes bobble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ── About ── */
.about {
    padding: 120px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    aspect-ratio: 4/5;
}

.about-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 16px;
}

.about-text p:first-of-type {
    font-size: 1.125rem;
    color: var(--slate-700);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--slate-200);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--teal-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--slate-500);
    letter-spacing: 0.02em;
}

/* ── Drinks ── */
.drinks {
    padding: 120px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 72px;
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.drink-card {
    border-radius: 6px;
    overflow: hidden;
    background: var(--cream);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.drink-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.drink-card-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.drink-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.drink-card-body {
    padding: 28px;
}

.drink-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.drink-card-body p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--slate-500);
}

.drinks-note {
    text-align: center;
    padding: 40px;
    background: var(--slate-50);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.drinks-note p {
    font-size: 1rem;
    color: var(--slate-500);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--teal-dark);
    transition: gap 0.3s var(--ease-out);
}

.link-arrow:hover {
    gap: 14px;
}

/* ── Food ── */
.food {
    padding: 120px 0;
    background: var(--cream);
}

.food-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.food-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 32px;
}

.food-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.food-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--slate-700);
    font-weight: 500;
}

.food-list-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-pale);
    border-radius: 50%;
    color: var(--teal-dark);
    flex-shrink: 0;
}

.food-images {
    position: relative;
    height: 600px;
}

.food-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 75%;
    border-radius: 6px;
    overflow: hidden;
}

.food-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-img-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 45%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--cream);
}

.food-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Divider / Quote ── */
.divider {
    padding: 100px 0;
    background: var(--teal-darkest);
    text-align: center;
}

.divider blockquote {
    max-width: 700px;
    margin: 0 auto;
}

.divider blockquote p {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 20px;
}

.divider blockquote cite {
    font-style: normal;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-light);
}

/* ── Visit ── */
.visit {
    padding: 120px 0;
    background: var(--white);
}

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

.visit-info {
    padding-right: 24px;
}

.visit-address {
    font-style: normal;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.visit-address p {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.4;
}

.visit-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--teal-dark);
    margin-bottom: 48px;
    transition: gap 0.3s var(--ease-out);
}

.visit-phone:hover {
    gap: 16px;
}

.visit-hours h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.hours-note {
    font-size: 0.8125rem;
    color: var(--slate-500);
    margin-bottom: 20px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--slate-200);
    font-size: 0.9375rem;
}

.hour-row span:first-child {
    color: var(--slate-700);
    font-weight: 500;
}

.hour-row span:last-child {
    color: var(--slate-500);
}

.visit-map {
    border-radius: 8px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ── CTA ── */
.cta {
    padding: 120px 0;
    background: var(--teal-dark);
    text-align: center;
}

.cta-eyebrow {
    color: var(--teal-light);
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
    background: var(--slate-900);
    padding: 64px 0 32px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--slate-800);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand .logo {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--slate-500);
    line-height: 1.7;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    font-size: 0.875rem;
    color: var(--slate-400);
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--teal-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 0.8125rem;
    color: var(--slate-600);
}

/* ── Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    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; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-grid,
    .food-layout,
    .visit-grid {
        gap: 48px;
    }
    
    .drinks-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero {
        min-height: 560px;
    }
    
    .hero-content {
        padding-top: 60px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        aspect-ratio: 3/2;
    }
    
    .about-stats {
        gap: 24px;
    }
    
    .drinks {
        padding: 80px 0;
    }
    
    .drinks-grid {
        grid-template-columns: 1fr;
    }
    
    .food {
        padding: 80px 0;
    }
    
    .food-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .food-images {
        height: 400px;
        order: -1;
    }
    
    .divider {
        padding: 80px 0;
    }
    
    .visit {
        padding: 80px 0;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .visit-info {
        padding-right: 0;
    }
    
    .visit-map {
        height: 320px;
    }
    
    .cta {
        padding: 80px 0;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: clamp(2.25rem, 10vw, 3rem);
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
