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

:root {
    --teal-50:  #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;

    --slate-50:  #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --font-body: 'Inter', system-ui, sans-serif;
    --font-heading: 'Manrope', system-ui, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--slate-800);
    background: var(--slate-50);
    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; }

ul { list-style: none; }

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

/* ─── Loader ─── */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--slate-900);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-line {
    width: 48px;
    height: 2px;
    background: var(--teal-500);
    animation: loaderPulse 1s var(--ease-in-out) infinite;
}
@keyframes loaderPulse {
    0%, 100% { transform: scaleX(0.3); opacity: 0.4; }
    50% { transform: scaleX(1); opacity: 1; }
}

/* ─── Skip Link ─── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--teal-600);
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 6px 6px;
    z-index: 10000;
    font-size: 0.875rem;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}
.header.scrolled {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.125rem;
    color: #fff;
    letter-spacing: -0.02em;
}
.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--teal-400);
}
.logo-text { opacity: 0.9; }

/* ─── Nav ─── */
.nav ul { display: flex; gap: 32px; }
.nav a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: color 0.25s;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--teal-400);
    transition: width 0.3s var(--ease-out);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

/* ─── Nav Toggle ─── */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1001;
}
.hamburger {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.hamburger::before,
.hamburger::after {
    content: '';
    width: 20px;
    height: 1px;
    background: rgba(255,255,255,0.8);
    transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.hamburger::before { transform: translateY(-5px); }
.hamburger::after  { transform: translateY(5px); }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { transform: rotate(-45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::before,
.nav-toggle[aria-expanded="true"] .hamburger::after { background: #fff; }

/* ─── Hero ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--slate-900);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 8s ease-out;
}
.hero.loaded .hero-bg img { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.55) 0%,
        rgba(15, 23, 42, 0.45) 40%,
        rgba(15, 23, 42, 0.70) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding-top: 72px;
}
.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-400);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(12px);
}
.hero-headline {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.75rem, 7vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 24px;
}
.headline-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
}
.hero-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    max-width: 460px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(16px);
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s var(--ease-out);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--teal-600);
    color: #fff;
    border-color: var(--teal-600);
}
.btn-primary:hover { background: var(--teal-700); border-color: var(--teal-700); }
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ─── Scroll Indicator ─── */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.scroll-indicator:hover { opacity: 1; }
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s var(--ease-in-out) infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(0.5); opacity: 0.2; }
}

/* ─── Section Shared ─── */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--slate-900);
    margin-bottom: 24px;
}
.section-title--center { text-align: center; }

/* ─── About ─── */
.about {
    padding: 120px 0;
    background: var(--slate-50);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 16px;
}
.about-image {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 600/750;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Menu ─── */
.menu {
    padding: 120px 0;
    background: var(--slate-900);
}
.menu .section-eyebrow { color: var(--teal-400); }
.menu .section-title { color: #fff; }
.menu-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 56px;
}
.menu-col-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.menu-list { display: flex; flex-direction: column; gap: 14px; }
.menu-item-name {
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
}
.menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.15);
    margin: 0 8px;
    min-width: 20px;
    align-self: flex-end;
    margin-bottom: 4px;
}
.menu-item-price {
    font-size: 0.875rem;
    color: var(--teal-400);
    font-weight: 400;
    white-space: nowrap;
}
.menu-note {
    margin-top: 40px;
    font-size: 0.8125rem;
    color: var(--slate-500);
    font-style: italic;
}

/* ─── Gallery ─── */
.gallery {
    padding: 120px 0;
    background: var(--slate-50);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    margin-top: 56px;
}
.gallery-item {
    border-radius: 6px;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 1 / 5; grid-row: 2; }

/* ─── Visit ─── */
.visit {
    padding: 120px 0;
    background: #fff;
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.visit-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 6px;
}
.visit-details {
    margin-top: 32px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.visit-block p {
    font-size: 1rem;
    color: var(--slate-700);
    line-height: 1.6;
}
.visit-block a {
    color: var(--teal-600);
    transition: color 0.2s;
}
.visit-block a:hover { color: var(--teal-700); }

.visit-hours { margin-top: 40px; }
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
    color: var(--slate-600);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--slate-100);
}
.hours-list li span:last-child { font-weight: 500; color: var(--slate-800); }

.visit-map {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--slate-100);
    min-height: 360px;
}
.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 40px;
    height: 100%;
    background: linear-gradient(135deg, var(--slate-100) 0%, var(--slate-200) 100%);
}
.map-pin {
    color: var(--teal-600);
    opacity: 0.7;
}
.map-placeholder p {
    font-size: 0.9375rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* ─── Footer ─── */
.footer {
    background: var(--slate-900);
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
}
.footer-brand .logo-mark {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    border-color: rgba(255,255,255,0.3);
}
.footer-copy,
.footer-address {
    font-size: 0.8125rem;
    color: var(--slate-500);
}

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

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .about-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image { aspect-ratio: 4/3; }
    .menu-categories { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1; }
    .gallery-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1; }
    .gallery-item:nth-child(3) { grid-column: 1 / 2; grid-row: 2; }
    .gallery-item:nth-child(4) { grid-column: 2 / 3; grid-row: 2; }
}

@media (max-width: 640px) {
    .nav-toggle { display: block; }
    .nav {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s var(--ease-out), visibility 0.35s;
    }
    .nav.open { opacity: 1; visibility: visible; }
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    .nav a {
        font-size: 1.125rem;
        color: rgba(255,255,255,0.8);
    }
    .hero-content { padding-top: 72px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(n) { grid-column: 1 / -1; grid-row: auto; }
    .visit-map { aspect-ratio: 16/9; min-height: 260px; }
    .scroll-indicator { display: none; }
}
