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

:root {
    --teal-900: #0d4f4f;
    --teal-800: #1a6b6b;
    --teal-700: #238585;
    --teal-600: #2ba0a0;
    --teal-500: #34bbbb;
    --teal-100: #d0f0f0;
    --teal-50: #eaf8f8;
    --slate-950: #0a0f14;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --cream: #faf9f7;
    --warm-white: #fefcf8;
    --font-serif: 'Lora', 'Georgia', serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-800);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--teal-800);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 1000;
    font-size: 14px;
    font-weight: 500;
}

.skip-link:focus {
    top: 16px;
}

/* ── Header ─────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(254, 252, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(30, 41, 59, 0.06);
    transition: box-shadow 0.4s var(--ease-out-expo);
}

.site-header.scrolled {
    box-shadow: 0 1px 24px rgba(10, 15, 20, 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-serif);
    font-weight: 700;
    font-size: 18px;
    color: var(--slate-900);
    letter-spacing: -0.01em;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--teal-800);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 8px;
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
    color: var(--teal-800);
    background: var(--teal-50);
}

.nav-cta {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--teal-800);
    border-radius: 8px;
    margin-left: 8px;
    transition: background 0.2s, transform 0.2s var(--ease-out-expo);
}

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

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

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out-expo), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

/* ── Hero ───────────────────────────────── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--warm-white);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 72px);
}

.hero-content {
    padding: 64px 64px 64px 0;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-700);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--slate-900);
    margin-bottom: 28px;
}

.hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--slate-600);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--slate-500);
}

.meta-icon {
    color: var(--teal-700);
    flex-shrink: 0;
}

.hero-image {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.hero-img-wrapper {
    position: absolute;
    inset: 48px 0 48px 48px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(10, 15, 20, 0.12);
}

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

.hero-accent {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 200px;
    height: 200px;
    background: var(--teal-100);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: -1;
}

/* ── Buttons ────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease-out-expo);
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal-800);
    color: #fff;
}

.btn-primary:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 107, 107, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--slate-700);
    border: 1.5px solid var(--slate-200);
}

.btn-ghost:hover {
    border-color: var(--teal-700);
    color: var(--teal-800);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ── Section shared ─────────────────────── */
.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-700);
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--slate-900);
    margin-bottom: 24px;
}

.text-teal {
    color: var(--teal-800);
}

/* ── Intro ──────────────────────────────── */
.intro {
    padding: 120px 0;
    background: var(--warm-white);
}

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

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 20px;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-images {
    position: relative;
}

.intro-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.intro-img {
    border-radius: 16px;
    overflow: hidden;
}

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

.intro-img:hover img {
    transform: scale(1.04);
}

.intro-img-offset {
    margin-top: 48px;
}

/* ── Features ───────────────────────────── */
.features {
    padding: 120px 0;
    background: var(--slate-900);
    color: #fff;
}

.features-header {
    text-align: center;
    margin-bottom: 72px;
}

.features-header .section-heading {
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    transition: background 0.3s, transform 0.3s var(--ease-out-expo);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-800);
    border-radius: 14px;
    margin-bottom: 24px;
    color: #fff;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--slate-400);
}

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

.menu-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

.menu-content .section-heading {
    margin-bottom: 20px;
}

.menu-intro {
    font-size: 17px;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 48px;
}

.menu-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.menu-category-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--teal-800);
    display: inline-block;
}

.menu-list {
    list-style: none;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid var(--slate-200);
    gap: 16px;
}

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

.menu-item-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--slate-800);
}

.menu-item-desc {
    font-size: 13px;
    color: var(--slate-500);
    text-align: right;
}

.menu-note {
    font-size: 14px;
    color: var(--slate-500);
    font-style: italic;
    margin-bottom: 32px;
}

.menu-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(10, 15, 20, 0.1);
    position: sticky;
    top: 120px;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Gallery ────────────────────────────── */
.gallery {
    padding: 120px 0;
    background: var(--warm-white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 72px;
}

.gallery-header .section-heading {
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 5/4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

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

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

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.visit-detail {
    display: flex;
    gap: 20px;
}

.visit-detail-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border-radius: 12px;
    color: var(--teal-800);
}

.visit-detail-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 4px;
}

.visit-detail-value {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-800);
    font-weight: 500;
}

.visit-detail-value a {
    color: var(--teal-800);
    transition: color 0.2s;
}

.visit-detail-value a:hover {
    color: var(--teal-600);
    text-decoration: underline;
}

.phone-prefix {
    color: var(--slate-500);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(10, 15, 20, 0.1);
    aspect-ratio: 4/3.5;
}

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

/* ── CTA / Contact ──────────────────────── */
.cta {
    padding: 120px 0;
    background: var(--slate-900);
    color: #fff;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cta-text .section-heading {
    color: #fff;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--slate-400);
}

.cta-form-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-400);
    letter-spacing: 0.04em;
}

.form-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: #fff;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    width: 100%;
}

.form-input::placeholder {
    color: var(--slate-500);
}

.form-input:focus {
    border-color: var(--teal-600);
    background: rgba(255, 255, 255, 0.08);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: var(--slate-800);
    color: #fff;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(43, 160, 160, 0.15);
    border: 1px solid rgba(43, 160, 160, 0.3);
    border-radius: 10px;
    color: var(--teal-500);
    font-size: 14px;
    font-weight: 500;
}

.form-success svg {
    flex-shrink: 0;
}

/* ── Footer ─────────────────────────────── */
.site-footer {
    background: var(--slate-950);
    color: var(--slate-400);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: var(--slate-500);
    max-width: 240px;
}

.footer-heading {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    font-size: 14px;
    color: var(--slate-500);
    transition: color 0.2s;
}

.footer-list a:hover {
    color: var(--teal-500);
}

.footer-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
}

.footer-list li span:first-child {
    color: var(--slate-400);
}

.footer-list li span:last-child {
    color: var(--slate-500);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 13px;
    color: var(--slate-600);
}

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

.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; }

/* ── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
    .hero-content {
        padding: 48px 40px 48px 0;
    }

    .hero-grid {
        gap: 0;
    }

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

    .menu-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .menu-image {
        position: static;
        max-height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(254, 252, 248, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 32px 24px;
        gap: 8px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out-expo);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 18px;
        padding: 14px 16px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        padding: 16px;
    }

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

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 40px 0 48px;
    }

    .hero-headline {
        font-size: clamp(36px, 10vw, 56px);
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-image {
        display: none;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .intro {
        padding: 80px 0;
    }

    .features {
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 28px 24px;
    }

    .menu {
        padding: 80px 0;
    }

    .menu-categories {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gallery {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .visit {
        padding: 80px 0;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cta {
        padding: 80px 0;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cta-form-wrapper {
        padding: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-meta {
        flex-direction: column;
        gap: 12px;
    }

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

    .gallery-item {
        aspect-ratio: 4/3;
    }
}
