:root {
  --bg: #fbf5ea;
  --bg-2: #f3e8d3;
  --surface: #fffbf3;
  --primary: #b23a26;
  --primary-hover: #922e1d;
  --accent: #e0a63a;
  --ink: #2a1b14;
  --muted: #5e4a3f;
  --border: #e2d3b8;
  --focus: #1f5c4a;
  --dark: #2a1b14;
  --success: #2f7d4f;
  --max: 1280px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
  --shadow: 0 22px 70px rgba(80, 44, 26, .10);
}
* { box-sizing: border-box; }
html { color-scheme: light; background: var(--bg); }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--bg); line-height: 1.6; text-rendering: optimizeLegibility; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
::selection { background: rgba(178,58,38,.18); }
.skip-link { position: fixed; left: 1rem; top: 1rem; z-index: 9999; background: var(--dark); color: var(--bg); padding: .8rem 1rem; border-radius: 999px; transform: translateY(-180%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.eyebrow { margin: 0 0 .7rem; font-size: .77rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 750; color: var(--primary); }
.display { font-family: var(--serif); font-weight: 560; letter-spacing: -.035em; line-height: .98; text-wrap: balance; }
.h2 { margin: 0; font-size: clamp(2.1rem, 5vw, 4.6rem); }
.lede { color: var(--muted); font-size: clamp(1.02rem, .96rem + .32vw, 1.2rem); max-width: 60ch; }
.small { font-size: .88rem; color: var(--muted); }
.section { padding-block: clamp(4.5rem, 8vw, 8rem); }
.section--alt { background: var(--bg-2); }
.section-head { display: grid; gap: 1rem; margin-bottom: clamp(2rem, 5vw, 4rem); }
@media (min-width: 900px) { .section-head { grid-template-columns: 1.2fr .8fr; align-items: end; } }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; transition: transform .36s var(--ease), background .25s ease, border-color .25s ease, backdrop-filter .25s ease; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: rgba(251,245,234,.9); border-color: rgba(226,211,184,.85); backdrop-filter: blur(16px); }
.site-header.is-hidden { transform: translateY(-110%); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.wordmark { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; text-decoration: none; letter-spacing: -.03em; }
.wordmark span { display: block; font-family: var(--sans); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-top: -.2rem; }
.nav { display: none; align-items: center; gap: 1.5rem; }
.nav a { text-decoration: none; font-weight: 650; font-size: .92rem; }
.nav a:not(.btn):hover { color: var(--primary); }
.menu-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border); background: rgba(255,251,243,.72); display: grid; place-items: center; cursor: pointer; }
.menu-btn::before, .menu-btn::after { content: ""; width: 18px; height: 1.5px; background: currentColor; display: block; transition: transform .25s var(--ease); }
.menu-btn::after { margin-top: -9px; transform: translateY(6px); }
.menu-btn::before { transform: translateY(-3px); }
.menu-btn[aria-expanded="true"]::before { transform: translateY(4px) rotate(45deg); }
.menu-btn[aria-expanded="true"]::after { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--dark); color: var(--bg); display: grid; align-content: center; padding: 6rem 1.5rem 2rem; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: grid; gap: .6rem; }
.mobile-menu a { font-family: var(--serif); font-size: clamp(2.2rem, 10vw, 4rem); line-height: 1.05; text-decoration: none; transform: translateY(18px); opacity: 0; transition: transform .45s var(--ease), opacity .45s var(--ease); }
.mobile-menu.is-open a { transform: translateY(0); opacity: 1; }
.mobile-menu.is-open a:nth-child(2){ transition-delay:.04s } .mobile-menu.is-open a:nth-child(3){ transition-delay:.08s } .mobile-menu.is-open a:nth-child(4){ transition-delay:.12s }
@media (min-width: 860px) { .nav { display: flex; } .menu-btn { display: none; } }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 48px; padding: .83rem 1.15rem; border-radius: 999px; text-decoration: none; font-weight: 750; border: 1px solid transparent; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--primary); color: white; }
.btn--primary:hover { background: var(--primary-hover); }
.btn--ghost { border-color: var(--border); background: rgba(255,251,243,.68); }
.btn--light { background: var(--bg); color: var(--dark); }
.text-link { position: relative; text-decoration: none; font-weight: 760; }
.text-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -.15rem; height: 1px; background: currentColor; transform-origin: left; transition: transform .25s var(--ease); }
.text-link:hover::after { transform: scaleX(.45); }

.hero { min-height: 100dvh; display: grid; align-items: end; padding: 7rem 0 4rem; overflow: clip; position: relative; }
.hero-grid { display: grid; gap: 2.1rem; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(3.45rem, 12vw, 8.4rem); margin: 0 0 1.25rem; max-width: 9ch; }
.hero p { max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.7rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: .8rem 1.2rem; margin-top: 1.5rem; font-size: .84rem; color: var(--muted); }
.hero-media { position: relative; min-height: 46vh; border-radius: 38% 62% 58% 42% / 44% 37% 63% 56%; overflow: hidden; box-shadow: var(--shadow); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.hero-orbit { display: none; position: absolute; width: 150px; aspect-ratio: 1; right: -1rem; top: 3rem; border-radius: 50%; border: 1px solid rgba(178,58,38,.25); }
@media (min-width: 760px) { .hero-grid { grid-template-columns: 1.04fr .96fr; align-items: center; } .hero { align-items: center; } .hero-media { min-height: 68vh; } .hero-orbit { display: block; } }

.intro { position: fixed; inset: 0; z-index: 999; background: var(--bg); display: grid; place-items: center; pointer-events: none; clip-path: circle(150% at 50% 50%); transition: clip-path .65s var(--ease), opacity .2s ease .58s; }
.intro.is-leaving { clip-path: circle(0% at 50% 50%); opacity: .92; }
.intro-word { font-family: var(--serif); font-size: clamp(2.6rem, 9vw, 7rem); line-height: 1; overflow: hidden; }
.intro-word span { display: block; transform: translateY(105%); animation: introWord .62s var(--ease) .08s forwards; }
@keyframes introWord { to { transform: translateY(0); } }

.manifesto { display: grid; gap: 2rem; }
.manifesto-quote { font-family: var(--serif); font-size: clamp(2.3rem, 5.8vw, 5.2rem); line-height: 1.02; letter-spacing: -.035em; max-width: 14ch; }
.manifesto-copy { max-width: 52ch; align-self: end; }
@media (min-width: 860px) { .manifesto { grid-template-columns: 1.15fr .85fr; } }

.editorial-grid { display: grid; gap: 1rem; }
.photo-card { position: relative; overflow: hidden; min-height: 340px; background: #ead9bd; border-radius: 1.5rem; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.photo-card:hover img { transform: scale(1.035); }
.photo-label { position: absolute; left: .8rem; bottom: .8rem; background: rgba(255,251,243,.9); padding: .44rem .65rem; border-radius: 999px; font-size: .68rem; font-weight: 700; }
@media (min-width: 760px) { .editorial-grid { grid-template-columns: 1.25fr .75fr; grid-template-rows: 330px 330px; } .photo-card:first-child { grid-row: 1 / span 2; } }

.order-panel { display: grid; gap: 1rem; }
.order-option { padding: 1.35rem 0; border-top: 1px solid var(--border); display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; text-decoration: none; }
.order-num { font-family: var(--serif); font-size: 1.7rem; color: var(--primary); }
.order-option strong { display: block; font-size: 1.08rem; }
.order-option small { color: var(--muted); }
.order-arrow { transition: transform .2s ease; }
.order-option:hover .order-arrow { transform: translateX(5px); }

.info-grid { display: grid; gap: 1.2rem; }
.info-card { padding: 1.4rem; border: 1px solid var(--border); background: rgba(255,251,243,.6); border-radius: 1.35rem; }
.info-card h3 { font-family: var(--serif); font-size: 1.75rem; margin: 0 0 .8rem; }
.hours { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed var(--border); padding-bottom: .45rem; }
.status-badge { display: inline-flex; align-items: center; gap: .45rem; font-size: .76rem; font-weight: 800; padding: .45rem .72rem; border-radius: 999px; background: rgba(47,125,79,.12); color: var(--success); }
.status-badge.is-closed { background: rgba(178,58,38,.1); color: var(--primary); }
.status-dot { width: .5rem; height: .5rem; border-radius: 50%; background: currentColor; }
@media (min-width: 760px) { .info-grid { grid-template-columns: 1fr 1fr; } }

.dark-cta { background: var(--dark); color: var(--bg); padding-block: clamp(4.5rem, 10vw, 8.5rem); }
.dark-cta .eyebrow { color: #efb9a8; }
.dark-cta .h2 { max-width: 11ch; }
.dark-cta .lede { color: #dfd1c4; }
.dark-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }

.page-hero { padding: 9.5rem 0 3.5rem; }
.page-hero h1 { font-size: clamp(3.4rem, 10vw, 7.5rem); margin: 0; max-width: 11ch; }
.page-hero .lede { margin-top: 1.2rem; }
.empty-menu { min-height: 46vh; display: grid; place-items: center; text-align: center; border: 1px dashed var(--border); background: rgba(255,251,243,.45); border-radius: 2rem; padding: 2rem; }
.empty-menu .inner { max-width: 620px; }
.story-grid { display: grid; gap: 2rem; align-items: start; }
.story-fact { border-top: 1px solid var(--border); padding-top: 1rem; }
@media (min-width: 800px) { .story-grid { grid-template-columns: 1.1fr .9fr; } }
.contact-grid { display: grid; gap: 1.5rem; }
@media (min-width: 840px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.map-facade { min-height: 420px; border-radius: 1.7rem; background: radial-gradient(circle at 22% 34%, rgba(224,166,58,.45), transparent 18%), linear-gradient(135deg,#dac5a0,#f5ead6); display: grid; place-items: center; text-align: center; padding: 2rem; border: 1px solid var(--border); }
.map-pin { width: 64px; height: 64px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--primary); margin: 0 auto 1.6rem; box-shadow: 0 14px 40px rgba(178,58,38,.25); }
.map-pin::after { content:""; width: 22px; height: 22px; background: var(--bg); border-radius: 50%; position: absolute; margin: 21px; }

.site-footer { background: #211611; color: #efe4d8; padding: 3rem 0 7rem; }
.footer-grid { display: grid; gap: 2rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .9rem 1.3rem; }
.footer-nav a { color: #efe4d8; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1fr auto; align-items: end; } }

.mobile-order-bar { position: fixed; z-index: 80; left: .75rem; right: .75rem; bottom: max(.75rem, env(safe-area-inset-bottom)); display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; padding: .55rem; background: rgba(255,251,243,.92); backdrop-filter: blur(16px); border: 1px solid rgba(226,211,184,.9); border-radius: 999px; box-shadow: 0 14px 42px rgba(42,27,20,.18); }
.mobile-order-bar .btn { min-height: 44px; font-size: .82rem; padding-inline: .7rem; }
@media (min-width: 860px) { .mobile-order-bar { display: none; } .site-footer { padding-bottom: 3rem; } }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-image-reveal] { clip-path: inset(100% 0 0 0 round 1.5rem); transform: scale(1.025); transition: clip-path .9s var(--ease), transform .9s var(--ease); }
[data-image-reveal].is-visible { clip-path: inset(0 0 0 0 round 1.5rem); transform: scale(1); }

@view-transition { navigation: auto; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .intro { display: none !important; }
  [data-reveal], [data-image-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .site-header { transition: none; }
}

.btn--ghost-dark{color:#fff;border-color:#6b554a;background:transparent}.page-hero--centered{min-height:70dvh;display:grid;align-items:center}

/* Real restaurant photography */
.editorial-grid--food .photo-card img { object-position: center center; }
@media (min-width:760px){ .editorial-grid--food { grid-template-columns: 1.05fr .95fr; grid-template-rows: 360px 360px; } }
.location-photo { position: relative; min-height: 520px; overflow: hidden; border-radius: 1.7rem; background: var(--dark); }
.location-photo > img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.location-photo::after { content: ""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 30%, rgba(33,22,17,.86) 100%); pointer-events:none; }
.location-photo__overlay { position:absolute; z-index:2; left:1.4rem; right:1.4rem; bottom:1.4rem; color:#fff; }
.location-photo__overlay .eyebrow { color:#efb9a8; }
.location-photo__overlay .h2 { font-size: clamp(2rem,5vw,3.8rem); max-width: 11ch; }
.location-photo__overlay p:not(.eyebrow) { color:#f3e8d3; }
