:root {
    --cream: #f2eadb;
    --cream-light: #faf6ee;
    --ink: #181a16;
    --olive: #59664f;
    --olive-dark: #30392c;
    --tomato: #b94731;
    --gold: #d4a24c;
    --line: rgba(24, 26, 22, .16);
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max: 1280px;
    --header: 86px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header);
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

::selection { background: var(--tomato); color: white; }

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1000;
    padding: 10px 16px;
    background: var(--ink);
    color: white;
    transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header);
    border-bottom: 1px solid rgba(255,255,255,.2);
    color: white;
    transition: background .35s ease, color .35s ease, height .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
    height: 74px;
    color: var(--ink);
    background: rgba(242, 234, 219, .94);
    border-color: var(--line);
    box-shadow: 0 8px 28px rgba(24, 26, 22, .08);
    backdrop-filter: blur(14px);
}

.nav-shell {
    height: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.brand { width: 176px; text-decoration: none; }
.brand img { width: 100%; height: auto; }

.desktop-nav { display: flex; align-items: center; gap: 36px; }
.desktop-nav a {
    position: relative;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-decoration: none;
    text-transform: uppercase;
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.button {
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.button-small { min-height: 45px; padding: 0 20px; gap: 12px; }
.button-primary { background: var(--tomato); color: white; }
.button-primary:hover { background: #963823; }
.button-cream { background: var(--cream); color: var(--ink); }
.button-cream:hover { background: white; }
.header-order { justify-self: end; background: transparent; border-color: rgba(255,255,255,.55); color: white; }
.header-order:hover { background: white; color: var(--ink); }
.site-header.is-scrolled .header-order, .site-header.menu-active .header-order { border-color: var(--ink); color: var(--ink); }
.site-header.is-scrolled .header-order:hover { background: var(--ink); color: white; }

.menu-toggle, .mobile-nav { display: none; }

.hero {
    position: relative;
    min-height: 760px;
    height: 100svh;
    max-height: 1040px;
    color: white;
    overflow: hidden;
    background: var(--ink);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    animation: heroReveal 1.5s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes heroReveal {
    from { opacity: .25; transform: scale(1.09); }
    to { opacity: 1; transform: scale(1.02); }
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14,16,13,.82) 0%, rgba(14,16,13,.52) 38%, rgba(14,16,13,.08) 72%), linear-gradient(0deg, rgba(14,16,13,.52) 0%, transparent 42%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: .18;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(var(--max), calc(100% - 60px));
    height: 100%;
    margin: 0 auto;
    padding-top: clamp(145px, 19vh, 210px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.eyebrow {
    margin: 0 0 26px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--olive);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .17em;
    line-height: 1.2;
    text-transform: uppercase;
}
.eyebrow span { width: 38px; height: 1px; background: currentColor; }
.hero-eyebrow, .eyebrow-light { color: rgba(255,255,255,.82); }

.hero h1, .section h2, .menu-section h2, .visit h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .87;
}
.hero h1 { max-width: 760px; font-size: clamp(4.2rem, 8.6vw, 8.7rem); }
.hero h1 em, .section h2 em, .menu-section h2 em, .visit h2 em { color: var(--gold); font-weight: 400; }
.hero-copy { max-width: 565px; margin: 36px 0 34px; color: rgba(255,255,255,.8); font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 34px; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid currentColor;
    color: var(--ink);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 2.4;
    text-decoration: none;
    text-transform: uppercase;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link-light { color: white; }

.hero-status {
    position: absolute;
    right: max(30px, calc((100% - var(--max)) / 2 + 30px));
    bottom: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #d46b5a; box-shadow: 0 0 0 5px rgba(212,107,90,.18); }
.status-dot.is-open { background: #9dc379; box-shadow: 0 0 0 5px rgba(157,195,121,.18); }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; color: white; font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-decoration: none; text-transform: uppercase; transform: translateX(-50%); }
.hero-scroll i { width: 1px; height: 28px; background: rgba(255,255,255,.7); animation: scrollPulse 1.8s ease-in-out infinite; transform-origin: top; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(.25); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

.ticker { background: var(--tomato); color: white; overflow: hidden; }
.ticker-track { width: max-content; padding: 18px 0; display: flex; align-items: center; gap: 28px; animation: ticker 28s linear infinite; }
.ticker span { font-size: .72rem; font-weight: 900; letter-spacing: .18em; }
.ticker b { color: #eecf92; font-size: .85rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { max-width: var(--max); margin: 0 auto; padding: 140px 30px; }
.story { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(480px, 1.1fr); align-items: center; gap: clamp(70px, 10vw, 150px); }
.story-visual { position: relative; }
.story-image-wrap { aspect-ratio: 4/5; overflow: hidden; }
.story-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.story-image-wrap:hover img { transform: scale(1.025); }
.story-stamp {
    position: absolute;
    right: -55px;
    bottom: 60px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    background: var(--olive);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 50px rgba(24,26,22,.22);
    transform: rotate(-8deg);
}
.story-stamp span, .story-stamp small { font-size: .48rem; font-weight: 800; letter-spacing: .18em; }
.story-stamp strong { margin: 3px 0 -1px; font-family: var(--serif); font-size: 2.2rem; font-weight: 400; }
.section h2 { font-size: clamp(3.2rem, 5.5vw, 6rem); }
.story-copy .lead { max-width: 630px; margin: 40px 0; color: #4a4d45; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.5; }
.story-points { margin: 0 0 42px; border-top: 1px solid var(--line); }
.story-points > div { padding: 19px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 42px 1fr; gap: 20px; align-items: start; }
.story-points strong { padding-top: 3px; color: var(--tomato); font-size: .66rem; letter-spacing: .1em; }
.story-points p { margin: 0; color: #63655e; line-height: 1.45; }
.story-points b { color: var(--ink); font-size: .92rem; }

.menu-section { background: var(--olive-dark); color: white; display: grid; grid-template-columns: minmax(420px, .83fr) minmax(580px, 1.17fr); }
.menu-photo { position: sticky; top: 0; height: 100vh; min-height: 720px; overflow: hidden; }
.menu-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,15,11,.55), transparent 50%); }
.menu-photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-photo > p { position: absolute; z-index: 2; right: 40px; bottom: 32px; margin: 0; color: rgba(255,255,255,.8); font-family: var(--serif); font-size: 1.1rem; font-style: italic; }
.menu-content { padding: 130px clamp(40px, 7vw, 110px); }
.menu-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 50px; }
.menu-section h2 { font-size: clamp(3.8rem, 6vw, 7.2rem); }
.menu-heading > p { margin: 0 0 10px; color: rgba(255,255,255,.62); font-size: .95rem; }
.featured-list { margin-top: 80px; border-top: 1px solid rgba(255,255,255,.2); }
.dish { padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.2); display: grid; grid-template-columns: 45px 1fr auto; gap: 25px; align-items: center; }
.dish-number { align-self: start; padding-top: 8px; color: var(--gold); font-size: .62rem; font-weight: 800; letter-spacing: .1em; }
.dish-copy small { color: rgba(255,255,255,.5); font-size: .64rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.dish-copy h3 { margin: 3px 0 5px; font-family: var(--serif); font-size: clamp(1.65rem, 2.2vw, 2.35rem); font-weight: 400; line-height: 1.15; }
.dish-copy p { max-width: 500px; margin: 0; color: rgba(255,255,255,.57); font-size: .88rem; }
.dish-price { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; white-space: nowrap; }
.menu-cta { margin-top: 45px; display: flex; align-items: center; gap: 24px; }
.menu-cta small { color: rgba(255,255,255,.45); }

.experience { padding-top: 150px; padding-bottom: 150px; }
.experience-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 30px; align-items: start; margin-bottom: 70px; }
.experience-heading h2 { max-width: 870px; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.experience-card { min-height: 430px; padding: 30px; background: var(--cream); display: flex; flex-direction: column; justify-content: space-between; transition: background .25s ease, color .25s ease, transform .25s ease; }
.experience-card > span { color: var(--tomato); font-size: .65rem; font-weight: 800; letter-spacing: .1em; }
.experience-card small { font-size: .62rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; opacity: .65; }
.experience-card h3 { max-width: 300px; margin: 9px 0 18px; font-family: var(--serif); font-size: clamp(2.1rem, 3vw, 3.2rem); font-weight: 400; line-height: 1; }
.experience-card p { max-width: 340px; margin: 0; color: #66685f; }
.experience-card:hover { color: white; background: var(--olive); transform: translateY(-8px); box-shadow: 0 28px 55px rgba(24,26,22,.15); }
.experience-card:hover p { color: rgba(255,255,255,.7); }
.experience-card:hover > span { color: var(--gold); }
.card-coffee { background: #e7dcc7; }
.card-home { background: #ded8c8; }

.visit { min-height: 760px; background: var(--ink); color: white; display: grid; grid-template-columns: 1fr 1fr; }
.visit-map { position: relative; min-height: 680px; overflow: hidden; background: #d9d0be; color: var(--olive-dark); }
.map-grid { position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(48,57,44,.17) 1px, transparent 1px), linear-gradient(90deg, rgba(48,57,44,.17) 1px, transparent 1px); background-size: 42px 42px; transform: rotate(-8deg) scale(1.2); }
.map-road { position: absolute; border: 6px solid rgba(250,246,238,.78); border-radius: 50%; }
.road-one { width: 120%; height: 190px; left: -10%; top: 32%; transform: rotate(13deg); }
.road-two { width: 210px; height: 120%; left: 42%; top: -10%; transform: rotate(18deg); }
.road-three { width: 120%; height: 250px; left: -26%; top: 0; transform: rotate(-35deg); }
.map-lake { position: absolute; right: -25%; bottom: -18%; width: 80%; height: 48%; border-radius: 48% 52% 0 0; background: #879a94; transform: rotate(-9deg); }
.visit-map > p { position: absolute; right: 6%; bottom: 10%; z-index: 2; margin: 0; color: rgba(255,255,255,.75); font-size: .65rem; font-weight: 800; letter-spacing: .18em; }
.map-pin { position: absolute; top: 45%; left: 47%; z-index: 3; width: 74px; height: 74px; border: 8px solid rgba(255,255,255,.72); border-radius: 50% 50% 50% 0; background: var(--tomato); color: white; display: grid; place-items: center; box-shadow: 0 16px 35px rgba(24,26,22,.25); transform: rotate(-45deg); }
.map-pin span { font-family: var(--serif); font-size: 1.3rem; transform: rotate(45deg); }
.visit-content { padding: 110px clamp(45px, 8vw, 130px); align-self: center; }
.visit h2 { font-size: clamp(4rem, 6vw, 7rem); }
.visit-address { margin: 52px 0 40px; padding-bottom: 35px; border-bottom: 1px solid rgba(255,255,255,.2); }
.visit-address > span, .visit-details span { color: var(--gold); font-size: .64rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.visit-address p { margin: 8px 0 19px; font-family: var(--serif); font-size: clamp(1.5rem, 2.3vw, 2.15rem); line-height: 1.3; }
.visit-details { margin-bottom: 42px; display: grid; grid-template-columns: 1fr 1fr; gap: 45px; }
.visit-details p { margin: 8px 0 0; color: rgba(255,255,255,.7); font-size: .88rem; line-height: 1.9; }
.visit-details a { text-decoration: none; }
.visit-details a:hover { color: white; }

.site-footer { padding: 70px max(30px, calc((100% - var(--max)) / 2 + 30px)) 25px; background: var(--cream); }
.footer-top { min-height: 210px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.footer-top img { width: min(360px, 72vw); height: auto; }
.footer-top p { margin: 15px 0 0; color: var(--olive); font-family: var(--serif); font-size: 1.1rem; font-style: italic; }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 30px; color: #6b6e65; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 28px; }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--tomato); }

.floating-order { display: none; }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
    :root { --header: 76px; }
    .desktop-nav, .header-order { display: none; }
    .nav-shell { grid-template-columns: 1fr auto; }
    .menu-toggle { width: 48px; height: 48px; padding: 0; border: 1px solid currentColor; border-radius: 50%; background: transparent; color: inherit; display: grid; place-content: center; gap: 6px; cursor: pointer; }
    .menu-toggle span:not(.sr-only) { width: 19px; height: 1px; background: currentColor; transition: transform .25s ease; }
    .menu-toggle[aria-expanded='true'] span:nth-last-child(2) { transform: translateY(3.5px) rotate(45deg); }
    .menu-toggle[aria-expanded='true'] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
    .mobile-nav { position: fixed; top: 73px; inset-inline: 0; height: calc(100svh - 73px); padding: 45px 30px; background: var(--cream); color: var(--ink); display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
    .mobile-nav[hidden] { display: none; }
    .mobile-nav a { width: 100%; padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(2rem, 8vw, 4rem); line-height: 1.15; text-decoration: none; }
    .story { grid-template-columns: .85fr 1.15fr; gap: 75px; }
    .story-stamp { right: -35px; }
    .menu-section { grid-template-columns: .75fr 1.25fr; }
    .menu-heading { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
    .nav-shell { padding: 0 20px; }
    .brand { width: 145px; }
    .hero { min-height: 720px; max-height: none; }
    .hero-image { object-position: 62% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(14,16,13,.88) 0%, rgba(14,16,13,.46) 75%), linear-gradient(0deg, rgba(14,16,13,.6), transparent 55%); }
    .hero-content { width: calc(100% - 40px); padding-top: 150px; }
    .hero h1 { font-size: clamp(3.8rem, 15vw, 6rem); }
    .hero-copy { max-width: 470px; }
    .hero-status { right: 20px; bottom: 28px; }
    .hero-scroll { display: none; }
    .section { padding: 95px 20px; }
    .story { grid-template-columns: 1fr; gap: 75px; }
    .story-visual { max-width: 560px; }
    .story-stamp { right: -10px; bottom: -35px; }
    .menu-section { display: block; }
    .menu-photo { position: relative; height: 70vw; min-height: 460px; }
    .menu-content { padding: 95px 25px; }
    .experience-heading { grid-template-columns: 1fr; }
    .experience-grid { grid-template-columns: 1fr; }
    .experience-card { min-height: 300px; }
    .visit { grid-template-columns: 1fr; }
    .visit-map { min-height: 500px; order: 2; }
    .visit-content { padding: 95px 25px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
    .hero { min-height: 760px; }
    .hero-image { object-position: 69% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(14,16,13,.9) 0%, rgba(14,16,13,.55) 92%), linear-gradient(0deg, rgba(14,16,13,.62), transparent); }
    .hero-content { justify-content: center; padding-top: 70px; }
    .hero-eyebrow { margin-bottom: 20px; }
    .hero h1 { font-size: clamp(3.65rem, 18vw, 5.2rem); }
    .hero-copy { margin: 26px 0 28px; font-size: .96rem; }
    .hero-actions { width: 100%; align-items: flex-start; flex-direction: column; gap: 17px; }
    .hero-actions .button { width: 100%; }
    .hero-status { left: 20px; right: auto; bottom: 22px; font-size: .62rem; }
    .section h2, .visit h2 { font-size: clamp(3rem, 15vw, 4.3rem); }
    .story-stamp { width: 124px; height: 124px; }
    .story-copy .lead { margin: 30px 0; }
    .menu-photo { height: 86vw; min-height: 400px; }
    .menu-content { padding: 80px 20px; }
    .menu-section h2 { font-size: clamp(3.45rem, 17vw, 5rem); }
    .menu-heading > p { margin-top: 16px; }
    .featured-list { margin-top: 55px; }
    .dish { grid-template-columns: 30px 1fr; gap: 14px; }
    .dish-price { grid-column: 2; }
    .menu-cta { align-items: flex-start; flex-direction: column; }
    .menu-cta .button { width: 100%; }
    .experience { padding-top: 90px; padding-bottom: 90px; }
    .experience-heading { margin-bottom: 45px; }
    .experience-card { min-height: 280px; }
    .visit-map { min-height: 410px; }
    .visit-content { padding: 80px 20px; }
    .visit-address { margin-top: 38px; }
    .visit-details { grid-template-columns: 1fr; gap: 25px; }
    .visit-content > .button { width: 100%; }
    .site-footer { padding-inline: 20px; padding-bottom: 95px; }
    .footer-bottom div { flex-wrap: wrap; gap: 14px 22px; }
    .floating-order { position: fixed; right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); left: 14px; z-index: 90; height: 58px; padding: 0 22px; border-radius: 999px; background: var(--tomato); color: white; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 15px 40px rgba(24,26,22,.3); font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; transform: translateY(100px); transition: transform .35s ease; }
    .floating-order.is-visible { transform: translateY(0); }
}

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