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

:root {
    --charcoal: #3D405B;
    --charcoal-deep: #2C2E40;
    --charcoal-light: #565A78;
    --coral: #E07A5F;
    --coral-light: #F2A48B;
    --coral-pale: #FDF0EC;
    --cream: #F8F5F1;
    --cream-dark: #EDE8E2;
    --white: #FFFFFF;
    --text-primary: #3D405B;
    --text-secondary: #6B6F8E;
    --text-light: #9498B0;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-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;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-primary);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--charcoal);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    z-index: 1000;
    font-size: 0.875rem;
    border-radius: 0 0 4px 4px;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ─── HEADER ─── */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    transition: padding 0.4s var(--ease-out), background 0.4s, box-shadow 0.4s;
}

#site-header.scrolled {
    padding: 1rem 0;
    background: rgba(248, 245, 241, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(61, 64, 91, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

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

.logo-icon {
    flex-shrink: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--charcoal);
    color: var(--white) !important;
    padding: 0.625rem 1.375rem;
    border-radius: 100px;
    transition: background 0.3s, transform 0.3s var(--ease-out) !important;
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 101;
}

.hamburger {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--charcoal);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.4s var(--ease-out), top 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 1px;
    background: var(--charcoal);
    left: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        var(--charcoal-deep) 0%,
        var(--charcoal) 30%,
        #7B4A3A 55%,
        var(--coral) 75%,
        var(--coral-light) 100%
    );
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(61, 64, 91, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(224, 122, 95, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(253, 240, 236, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral-light);
    margin-bottom: 1.75rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.1875rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin: 0 auto 2.75rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

.btn-primary:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 0.875rem;
}

/* ─── SECTIONS ─── */
.section {
    padding: 8rem 0;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.section-title--center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.0625rem;
    font-weight: 300;
    color: var(--text-secondary);
    text-align: center;
    max-width: 480px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

/* ─── ABOUT ─── */
.about {
    background: var(--cream);
}

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

.about-image-wrap {
    position: relative;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 100%;
    height: 100%;
    border: 1px solid var(--coral);
    border-radius: 4px;
    z-index: 0;
}

.about-image-wrap img {
    position: relative;
    z-index: 1;
    border-radius: 4px;
    width: 100%;
    object-fit: cover;
}

.about-text p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--cream-dark);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--cream-dark);
}

/* ─── MENU ─── */
.menu-section {
    background: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.menu-card {
    padding: 2.5rem 2rem;
    background: var(--cream);
    border-radius: 4px;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(61, 64, 91, 0.1);
}

.menu-card-icon {
    width: 48px;
    height: 48px;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.menu-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.menu-card-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.menu-photo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.menu-photo {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.menu-note {
    text-align: center;
    padding: 3rem;
    background: var(--cream);
    border-radius: 4px;
}

.menu-note p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.menu-note-link {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--coral);
    letter-spacing: 0.04em;
    transition: color 0.3s;
}

.menu-note-link:hover {
    color: var(--charcoal);
}

/* ─── STORY ─── */
.story {
    background: var(--charcoal);
    color: var(--white);
}

.story .section-eyebrow {
    color: var(--coral-light);
}

.story .section-title {
    color: var(--white);
}

.story-divider {
    width: 60px;
    height: 1px;
    background: var(--coral);
    margin-bottom: 2rem;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.story-content p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.story-image-stack {
    position: relative;
    height: 520px;
}

.story-img {
    position: absolute;
    border-radius: 4px;
    overflow: hidden;
}

.story-img--1 {
    top: 0;
    left: 0;
    width: 65%;
    height: 75%;
}

.story-img--2 {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border: 4px solid var(--charcoal);
}

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

/* ─── VISIT ─── */
.visit {
    background: var(--cream);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
}

.visit-info {
    display: flex;
    flex-direction: column;
}

.visit-details {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

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

.visit-detail-value {
    font-size: 1.0625rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.visit-link {
    color: var(--coral);
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.visit-link:hover {
    color: var(--charcoal);
    border-bottom-color: var(--charcoal);
}

.visit-map-wrap {
    border-radius: 4px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 20px 60px rgba(61, 64, 91, 0.12);
}

/* ─── FOOTER ─── */
.footer {
    background: var(--charcoal-deep);
    color: rgba(255, 255, 255, 0.6);
    padding: 5rem 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    margin-top: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--coral-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

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

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

@media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(30px); }
    .reveal.revealed { opacity: 1; transform: translateY(0); }
}

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

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }

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

    .nav-link {
        font-size: 1rem;
        color: var(--charcoal);
    }

    .nav-cta {
        margin-top: 1rem;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(44, 46, 64, 0.4);
        z-index: 99;
    }

    .nav-overlay.active {
        display: block;
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .about-grid,
    .story-layout,
    .visit-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrap {
        order: -1;
    }

    .about-image-wrap::before {
        top: -1rem;
        left: -1rem;
    }

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

    .menu-photo-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .story-image-stack {
        height: 400px;
        order: -1;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 5rem 1.25rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .hero {
        padding: 7rem 1.25rem 3rem;
    }

    .hero-title {
        font-size: clamp(2.75rem, 14vw, 4rem);
    }

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

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-scroll {
        display: none;
    }

    .visit-map-wrap {
        min-height: 280px;
    }
}
