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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --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;
    --white: #ffffff;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease: 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(--slate-800);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--teal-700);
    color: var(--white);
    padding: 0.5rem 1rem;
    z-index: 200;
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: 0 0 4px 4px;
}
.skip-link:focus {
    top: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Label */
.label {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 0.75rem;
}

/* Section header */
.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 4rem;
}
.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--slate-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-desc {
    color: var(--slate-500);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 2px;
    border: 1px solid transparent;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}
.btn-primary {
    background: var(--teal-600);
    color: var(--white);
    border-color: var(--teal-600);
}
.btn-primary:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 1.5rem;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.3s var(--ease);
}
.nav.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 0 var(--slate-200);
}
.nav.scrolled .nav-logo,
.nav.scrolled .nav-menu a {
    color: var(--slate-800);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.3s var(--ease);
}
.nav-logo-icon {
    color: var(--teal-200);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color 0.3s var(--ease);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s var(--ease);
}
.nav-menu a:hover::after {
    width: 100%;
}
.nav-cta {
    border: 1px solid rgba(255,255,255,0.4);
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease) !important;
}
.nav-cta::after {
    display: none;
}
.nav-cta:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}
.nav.scrolled .nav-cta {
    border-color: var(--teal-600);
    color: var(--teal-600) !important;
}
.nav.scrolled .nav-cta:hover {
    background: var(--teal-50);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
}
.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav.scrolled .nav-toggle-line {
    background: var(--slate-700);
}
.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        background: var(--white);
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-menu a {
        color: var(--slate-800) !important;
        font-size: 1rem;
    }
    .nav-cta {
        border-color: var(--teal-600) !important;
        color: var(--teal-600) !important;
        text-align: center;
        width: 100%;
    }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.3);
        z-index: 99;
    }
    .nav-overlay.visible {
        display: block;
    }
}

/* ─── Hero ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.55) 0%,
        rgba(15, 23, 42, 0.65) 50%,
        rgba(15, 23, 42, 0.80) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    padding: 0 1.5rem;
}
.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-200);
    margin-bottom: 1.25rem;
    font-weight: 400;
}
.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    animation: scrollBounce 2s ease-in-out infinite;
    transition: color 0.3s var(--ease);
}
.hero-scroll:hover {
    color: rgba(255,255,255,0.9);
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Section base ─── */
.section {
    padding: 7rem 0;
}

/* ─── About ─── */
.about {
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-text .label {
    margin-bottom: 1rem;
}
.about-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--slate-900);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}
.about-text p {
    color: var(--slate-600);
    font-size: 1.025rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}
.about-image::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--teal-200);
    border-radius: 2px;
    z-index: -1;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image {
        max-width: 480px;
    }
    .about-image::before {
        display: none;
    }
}

/* ─── Divider (menu) ─── */
.divider {
    background: var(--slate-50);
}

/* ─── Menu ─── */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.menu-card {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.menu-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.menu-card-img {
    overflow: hidden;
    aspect-ratio: 4/3;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}
.menu-card:hover .menu-card-img img {
    transform: scale(1.03);
}
.menu-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--slate-900);
    padding: 1.25rem 1.5rem 0.5rem;
}
.menu-card p {
    color: var(--slate-500);
    font-size: 0.925rem;
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem;
}
.menu-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--slate-400);
    font-size: 0.875rem;
    font-style: italic;
}

@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Visit ─── */
.visit {
    background: var(--white);
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.visit-info .label {
    margin-bottom: 1rem;
}
.visit-info h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--slate-900);
    line-height: 1.25;
    margin-bottom: 2.5rem;
}
.contact-details {
    font-style: normal;
    margin-bottom: 2.5rem;
}
.contact-details p {
    margin-bottom: 1.25rem;
}
.contact-details strong {
    display: block;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 0.3rem;
}
.contact-details a {
    color: var(--slate-700);
    text-decoration: none;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--slate-200);
    padding-bottom: 2px;
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.contact-details a:hover {
    color: var(--teal-600);
    border-color: var(--teal-600);
}
.visit-hours h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--slate-800);
    margin-bottom: 1rem;
}
.visit-hours p {
    color: var(--slate-600);
    font-size: 0.975rem;
    line-height: 1.8;
}
.visit-map {
    border-radius: 2px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.visit-map iframe {
    display: block;
}

@media (max-width: 900px) {
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ─── Footer ─── */
.footer {
    background: var(--slate-900);
    padding: 3rem 0;
}
.footer-inner {
    text-align: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
}
.footer-logo-icon {
    color: var(--teal-500);
}
.footer p {
    color: var(--slate-500);
    font-size: 0.85rem;
    line-height: 1.8;
}

/* ─── Scroll reveal (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }
    .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; }
    .reveal-delay-4 { transition-delay: 0.4s; }
}

/* Reduced motion: show everything */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
    html {
        scroll-behavior: auto;
    }
}
