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

:root {
    --clr-terra:    #A0522D;
    --clr-terra-dk: #7A3B1E;
    --clr-terra-lt: #C47A52;
    --clr-sand:     #F5E6D3;
    --clr-sand-lt:  #FAF3EB;
    --clr-cream:    #FDF8F2;
    --clr-char:     #1C1410;
    --clr-text:     #2C1E16;
    --clr-text-mid: #5C4A3A;
    --clr-text-light: #8A7565;
    --clr-line:     #E8D5C4;
    --clr-line-lt:  #F0E4D8;
    --clr-white:    #FFFCF8;

    --ff-display: 'Instrument Serif', Georgia, serif;
    --ff-body:    'Manrope', -apple-system, sans-serif;

    --fs-xs:  0.75rem;
    --fs-sm:  0.875rem;
    --fs-md:  1rem;
    --fs-lg:  1.125rem;
    --fs-xl:  1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.75rem;
    --fs-4xl: 3.75rem;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius: 4px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--ff-body);
    font-weight: 300;
    color: var(--clr-text);
    background: var(--clr-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--clr-char);
    color: var(--clr-sand);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius);
    z-index: 200;
    font-size: var(--fs-sm);
}
.skip-link:focus { top: var(--space-sm); }

/* ── Typography ───────────────────────────────────── */
.section-eyebrow {
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-terra);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--ff-display);
    font-size: var(--fs-3xl);
    font-weight: 400;
    line-height: 1.15;
    color: var(--clr-char);
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: var(--fs-lg);
    color: var(--clr-text-mid);
    max-width: 560px;
    line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--clr-terra);
    color: var(--clr-white);
    border-color: var(--clr-terra);
}
.btn-primary:hover {
    background: var(--clr-terra-dk);
    border-color: var(--clr-terra-dk);
}

.btn-outline-light {
    background: transparent;
    color: var(--clr-white);
    border-color: rgba(255,252,248,0.5);
}
.btn-outline-light:hover {
    background: rgba(255,252,248,0.1);
    border-color: var(--clr-white);
}

/* ── Header ───────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-line-lt);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(28, 20, 16, 0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.logo-mark {
    font-family: var(--ff-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-terra);
    border: 1px solid var(--clr-terra);
    padding: 0.25rem 0.4rem;
    border-radius: 2px;
}
.logo-text {
    font-family: var(--ff-display);
    font-size: var(--fs-xl);
    color: var(--clr-char);
}

/* ── Nav ──────────────────────────────────────────── */
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}
.nav-link {
    font-size: var(--fs-sm);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--clr-text-mid);
    position: relative;
    transition: color var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clr-terra);
    transition: width var(--transition);
}
.nav-link:hover { color: var(--clr-terra); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    color: var(--clr-terra);
    font-weight: 500;
}
.nav-cta::after { display: none; }
.nav-cta:hover { color: var(--clr-terra-dk); }

/* ── Mobile nav 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(--clr-char);
    transition: var(--transition);
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) 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(-6.5px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 20, 16, 0.4);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    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;
}
.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(28, 20, 16, 0.55) 0%,
        rgba(28, 20, 16, 0.70) 50%,
        rgba(28, 20, 16, 0.82) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
    max-width: 800px;
}
.hero-eyebrow {
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-sand-lt);
    margin-bottom: var(--space-md);
}
.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(2.5rem, 6vw, var(--fs-4xl));
    font-weight: 400;
    line-height: 1.1;
    color: var(--clr-white);
    margin-bottom: var(--space-md);
}
.hero-title em {
    font-style: italic;
    color: var(--clr-terra-lt);
}
.hero-sub {
    font-size: var(--fs-lg);
    color: rgba(255, 252, 248, 0.75);
    margin-bottom: var(--space-xl);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,252,248,0.5);
    font-size: var(--fs-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.hero-scroll svg { animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ── Divider bar ──────────────────────────────────── */
.divider-bar {
    background: var(--clr-sand);
    border-top: 1px solid var(--clr-line);
    border-bottom: 1px solid var(--clr-line);
    padding: var(--space-sm) 0;
}
.divider-inner {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    justify-content: center;
}
.divider-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: var(--clr-line);
}
.divider-text {
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-text-light);
}
.divider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--clr-terra);
    flex-shrink: 0;
}

/* ── Menu section ─────────────────────────────────── */
.menu-section {
    padding: var(--space-3xl) 0 var(--space-2xl);
}
.menu-section .container:first-child {
    text-align: center;
    margin-bottom: var(--space-2xl);
}
.menu-section .container:first-child .section-desc {
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.menu-card {
    background: var(--clr-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--clr-line-lt);
    transition: box-shadow var(--transition), transform var(--transition);
}
.menu-card:hover {
    box-shadow: 0 12px 40px rgba(28, 20, 16, 0.08);
    transform: translateY(-4px);
}
.menu-card-img {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-img img {
    transform: scale(1.04);
}
.menu-card-body {
    padding: var(--space-md);
}
.menu-card-body h3 {
    font-family: var(--ff-display);
    font-size: var(--fs-xl);
    font-weight: 400;
    color: var(--clr-char);
    margin-bottom: var(--space-xs);
}
.menu-card-body p {
    font-size: var(--fs-sm);
    color: var(--clr-text-mid);
    line-height: 1.7;
}

.menu-note {
    text-align: center;
    padding: var(--space-xl) 0 var(--space-lg);
    border-top: 1px solid var(--clr-line-lt);
    margin-top: var(--space-xl);
}
.menu-note p {
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    font-style: italic;
}

/* ── Story section ────────────────────────────────── */
.story-section {
    padding: var(--space-3xl) 0;
    background: var(--clr-sand);
    border-top: 1px solid var(--clr-line);
    border-bottom: 1px solid var(--clr-line);
}
.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}
.story-images {
    position: relative;
    min-height: 500px;
}
.story-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(28, 20, 16, 0.12);
}
.story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}
.story-img-float {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(28, 20, 16, 0.15);
    border: 4px solid var(--clr-sand);
}
.story-img-float img {
    width: 70%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.story-content {
    padding: var(--space-lg) 0;
}
.story-content .section-title {
    margin-bottom: var(--space-lg);
}
.story-content p {
    font-size: var(--fs-md);
    color: var(--clr-text-mid);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}
.story-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--clr-line);
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.stat-number {
    font-family: var(--ff-display);
    font-size: var(--fs-2xl);
    color: var(--clr-terra);
    line-height: 1;
}
.stat-label {
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-text-light);
}

/* ── CTA section ──────────────────────────────────── */
.cta-section {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 20, 16, 0.80) 0%, rgba(122, 59, 30, 0.70) 100%);
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.cta-eyebrow { color: var(--clr-sand-lt); }
.cta-title {
    font-size: clamp(2rem, 5vw, var(--fs-4xl));
    color: var(--clr-white);
    margin-bottom: var(--space-md);
}
.cta-text {
    font-size: var(--fs-lg);
    color: rgba(255, 252, 248, 0.75);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Visit section ────────────────────────────────── */
.visit-section {
    padding: var(--space-3xl) 0 var(--space-2xl);
}
.visit-section > .container:first-child {
    text-align: center;
    margin-bottom: var(--space-2xl);
}
.visit-section > .container:first-child .section-desc { display: none; }

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: start;
}
.visit-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}
.info-block h3 {
    font-family: var(--ff-display);
    font-size: var(--fs-lg);
    font-weight: 400;
    color: var(--clr-char);
    margin-bottom: var(--space-xs);
}
.info-block address,
.info-block p {
    font-size: var(--fs-md);
    color: var(--clr-text-mid);
    line-height: 1.8;
}
.info-block a {
    color: var(--clr-terra);
    border-bottom: 1px solid var(--clr-line);
    transition: color var(--transition), border-color var(--transition);
}
.info-block a:hover {
    color: var(--clr-terra-dk);
    border-color: var(--clr-terra-dk);
}
.hours-row {
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
    font-size: var(--fs-md);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--clr-line-lt);
}
.hours-row span:last-child {
    color: var(--clr-text);
    font-weight: 400;
}

.visit-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(28, 20, 16, 0.08);
    min-height: 420px;
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
    background: var(--clr-char);
    color: rgba(255, 252, 248, 0.5);
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(255, 252, 248, 0.08);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.footer-brand .logo-mark {
    color: var(--clr-sand);
    border-color: var(--clr-sand);
}
.footer-brand .logo-text {
    color: var(--clr-white);
}
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: var(--fs-sm);
}
.footer-info a {
    color: rgba(255, 252, 248, 0.5);
    border-bottom: 1px solid rgba(255, 252, 248, 0.2);
    transition: color var(--transition), border-color var(--transition);
}
.footer-info a:hover {
    color: var(--clr-sand);
    border-color: var(--clr-sand);
}
.footer-copy {
    font-size: var(--fs-xs);
    letter-spacing: 0.04em;
}

/* ── Scroll reveal ────────────────────────────────── */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .story-layout { gap: var(--space-xl); }
}

@media (max-width: 768px) {
    :root {
        --fs-3xl: 2.25rem;
        --fs-4xl: 3rem;
    }

    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--clr-cream);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: var(--space-xl);
        gap: var(--space-md);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(28, 20, 16, 0.1);
        z-index: 100;
    }
    .nav-list.open { transform: translateX(0); }
    .nav-link { font-size: var(--fs-lg); }
    .nav-cta {
        margin-top: var(--space-sm);
        padding: 0.75rem 1.5rem;
        border: 1.5px solid var(--clr-terra);
        border-radius: var(--radius);
        color: var(--clr-terra);
    }
    .nav-cta::after { display: none; }

    .hero-content { padding: var(--space-2xl) var(--space-md); }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-scroll { display: none; }

    .menu-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    .story-layout {
        grid-template-columns: 1fr;
    }
    .story-images { min-height: 360px; margin-bottom: var(--space-lg); }
    .story-img-float { right: -10px; bottom: -20px; }
    .story-stats { gap: var(--space-md); }

    .visit-layout { grid-template-columns: 1fr; }
    .visit-map { min-height: 300px; }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .container { padding: 0 var(--space-sm); }
    .story-img-float { width: 60%; }
    .story-stats { flex-direction: column; gap: var(--space-sm); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}
