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

:root {
    --terracotta: #C0603C;
    --terracotta-deep: #A04E2E;
    --terracotta-light: #D4856A;
    --sand: #F5E6D3;
    --sand-light: #FAF3EB;
    --sand-dark: #E8D5C0;
    --cream: #FDF9F5;
    --charcoal: #2A2420;
    --charcoal-light: #4A403A;
    --warm-gray: #8A7E76;
    --line: rgba(192, 96, 60, 0.12);
    --line-strong: rgba(192, 96, 60, 0.25);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

.nav.scrolled {
    background: rgba(253, 249, 245, 0.95);
    box-shadow: 0 1px 0 var(--line);
}

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

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    width: 28px;
    height: 28px;
    background: var(--terracotta);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.nav-logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sand);
}

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

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--charcoal-light);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s var(--ease-smooth);
}

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

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

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

.nav-link--cta {
    background: var(--terracotta);
    color: var(--cream) !important;
    padding: 8px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    font-weight: 500;
    transition: background 0.3s var(--ease-smooth), transform 0.2s var(--ease-smooth);
}

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

.nav-link--cta:hover {
    background: var(--terracotta-deep);
    color: var(--cream) !important;
    transform: translateY(-1px);
}

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

.nav-toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
}

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

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

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

/* ── HERO ── */
.hero {
    min-height: 100vh;
    padding-top: 72px;
    padding-bottom: 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(192, 96, 60, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 80px;
    min-height: calc(100vh - 72px);
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 28px;
}

.hero-headline em {
    font-style: italic;
    color: var(--terracotta);
}

.hero-headline .accent {
    display: block;
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--warm-gray);
    max-width: 460px;
    margin-bottom: 40px;
    font-weight: 300;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
    border: none;
}

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

.btn--primary:hover {
    background: var(--terracotta-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192, 96, 60, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--line-strong);
}

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

.btn--large {
    padding: 18px 40px;
    font-size: 0.9375rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 600/750;
    box-shadow: 0 32px 64px rgba(42, 36, 32, 0.12);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--terracotta-light);
    border-radius: 16px;
    opacity: 0.4;
    z-index: -1;
}

/* Stat Cards */
.stat-cards {
    position: absolute;
    bottom: 40px;
    left: -40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.stat-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 180px;
    box-shadow: 0 8px 32px rgba(42, 36, 32, 0.08);
    backdrop-filter: blur(10px);
}

.stat-card--1 { transform: translateX(12px); }
.stat-card--2 { transform: translateX(24px); }
.stat-card--3 { transform: translateX(36px); }

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--warm-gray);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 400;
}

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

.hero-divider::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--line);
}

/* ── SECTION COMMON ── */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-sub {
    font-size: 1.0625rem;
    color: var(--warm-gray);
    line-height: 1.8;
    font-weight: 300;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.menu-card {
    background: var(--sand-light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all 0.4s var(--ease-out);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(42, 36, 32, 0.1);
    border-color: var(--terracotta-light);
}

.menu-card-img {
    aspect-ratio: 400/300;
    overflow: hidden;
}

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

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

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

.menu-card-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 8px;
}

.menu-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.menu-card-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--warm-gray);
    font-weight: 300;
}

.menu-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--warm-gray);
}

.menu-note a {
    color: var(--terracotta);
    text-decoration: none;
    border-bottom: 1px solid var(--line-strong);
    transition: border-color 0.2s;
}

.menu-note a:hover {
    border-color: var(--terracotta);
}

/* ── ABOUT ── */
.about {
    padding: 120px 0;
    background: var(--sand-light);
}

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

.about-image-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-image-side > img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 16px 48px rgba(42, 36, 32, 0.1);
}

.about-image-secondary {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(42, 36, 32, 0.1);
}

.about-image-secondary img {
    width: 100%;
    display: block;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    margin-bottom: 24px;
    font-weight: 300;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9375rem;
    color: var(--charcoal);
    font-weight: 400;
}

.value-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--cream);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

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

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

.story-card {
    padding: 36px;
    background: var(--sand-light);
    border-radius: 16px;
    border: 1px solid var(--line);
    transition: all 0.3s var(--ease-smooth);
}

.story-card:hover {
    border-color: var(--terracotta-light);
    box-shadow: 0 8px 32px rgba(192, 96, 60, 0.08);
}

.story-card-line {
    width: 40px;
    height: 2px;
    background: var(--terracotta);
    margin-bottom: 24px;
}

.story-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 24px;
    font-weight: 400;
}

.story-author {
    font-size: 0.8125rem;
    color: var(--warm-gray);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 400;
}

/* ── VISIT ── */
.visit {
    padding: 120px 0;
    background: var(--charcoal);
    color: var(--sand);
}

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

.visit .section-eyebrow {
    color: var(--terracotta-light);
}

.visit .section-title {
    color: var(--sand);
    margin-bottom: 48px;
}

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

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.visit-detail-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta-light);
}

.visit-detail-value {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--sand-dark);
    font-weight: 300;
}

.visit-detail-link {
    color: var(--sand-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--line-strong);
    transition: all 0.2s;
}

.visit-detail-link:hover {
    color: var(--terracotta-light);
    border-color: var(--terracotta-light);
}

.map-placeholder {
    background: var(--charcoal-light);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(245, 230, 211, 0.08);
}

.map-pin {
    color: var(--terracotta-light);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--sand);
    line-height: 1.6;
    margin-bottom: 24px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--terracotta-light);
    text-decoration: none;
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.map-link:hover {
    color: var(--sand);
    border-color: var(--sand);
}

/* ── FOOTER ── */
.footer {
    padding: 48px 0;
    background: var(--charcoal);
    border-top: 1px solid rgba(245, 230, 211, 0.06);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--sand);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-mark {
    width: 24px;
    height: 24px;
    background: var(--terracotta);
    border-radius: 50%;
    display: inline-block;
}

.footer-copy {
    font-size: 0.8125rem;
    color: var(--warm-gray);
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.8125rem;
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--terracotta-light);
}

/* ── 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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
        position: relative;
    }

    .stat-cards {
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        bottom: -30px;
    }

    .stat-card {
        transform: none !important;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(253, 249, 245, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s var(--ease-smooth);
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        font-size: 1.125rem;
    }

    .nav-toggle {
        display: flex;
    }

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

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .stat-cards {
        flex-direction: column;
        align-items: flex-start;
        left: 0;
        bottom: -80px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

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

    .hero {
        padding-top: 72px;
    }

    .hero-container {
        padding-top: 40px;
        padding-bottom: 120px;
    }

    .menu, .about, .stories, .visit {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }
}
