:root {
  --charcoal: #1a1a1a;
  --charcoal-soft: #242321;
  --ember: #b22222;
  --ember-bright: #d12b25;
  --copper: #b87333;
  --olive: #556b2f;
  --off-white: #f4efe6;
  --paper: #e9e1d4;
  --ink: #181715;
  --muted: #aba49a;
  --line-dark: rgba(244, 239, 230, 0.16);
  --line-light: rgba(26, 26, 26, 0.16);
  --font: "Montserrat", Arial, sans-serif;
  --wrap: min(1180px, calc(100% - 40px));
  --header-height: 88px;
  --ease: 220ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body { margin: 0; background: var(--charcoal); color: var(--off-white); font-family: var(--font); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--copper); outline-offset: 4px; }
.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding-block: clamp(76px, 9vw, 132px); }
.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; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 16px; background: var(--off-white); color: var(--ink); transform: translateY(-160%); transition: transform var(--ease); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header-height); display: grid; grid-template-columns: 128px 1fr auto; align-items: center; gap: 28px; padding-inline: max(20px, calc((100vw - 1180px) / 2)); border-bottom: 1px solid transparent; transition: background var(--ease), border-color var(--ease), height var(--ease); }
.site-header.is-scrolled { height: 72px; background: rgba(26, 26, 26, 0.94); border-color: var(--line-dark); backdrop-filter: blur(16px); }
.brand { align-self: stretch; display: flex; align-items: flex-start; width: 112px; padding-top: 8px; overflow: hidden; }
.brand img { width: 78px; height: 74px; object-fit: cover; border-radius: 50%; transition: width var(--ease), height var(--ease); }
.is-scrolled .brand img { width: 60px; height: 57px; }
.main-nav { justify-self: center; display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
.main-nav a, .footer__links a { position: relative; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.main-nav a::after, .footer__links a::after { content: ""; position: absolute; inset: auto 0 -8px; height: 2px; background: var(--ember-bright); transform: scaleX(0); transform-origin: left; transition: transform var(--ease); }
.main-nav a:hover::after, .main-nav a:focus-visible::after, .footer__links a:hover::after { transform: scaleX(1); }
.header-cta { min-height: 44px; display: inline-flex; align-items: center; padding-inline: 20px; border: 1px solid rgba(244, 239, 230, 0.5); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; transition: color var(--ease), background var(--ease), border-color var(--ease); }
.header-cta:hover { color: var(--ink); background: var(--off-white); border-color: var(--off-white); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line-dark); background: transparent; cursor: pointer; }
.nav-toggle__line { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: transform var(--ease); }

.hero { position: relative; min-height: 100svh; display: grid; align-items: center; isolation: isolate; overflow: hidden; background: #0b0b0a; }
.hero__image, .hero__shade { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__shade { z-index: -1; background: linear-gradient(90deg, rgba(11, 11, 10, 0.96) 0%, rgba(11, 11, 10, 0.76) 37%, rgba(11, 11, 10, 0.16) 72%), linear-gradient(0deg, rgba(11, 11, 10, 0.82) 0%, transparent 34%); }
.hero__content { padding-top: calc(var(--header-height) + 54px); padding-bottom: 150px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--paper); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; }
.eyebrow span { width: 32px; height: 2px; background: var(--ember-bright); }
.eyebrow--dark { color: #59544e; }
.hero h1 { max-width: 700px; margin: 0; font-size: clamp(2.7rem, 5.4vw, 5.2rem); line-height: 0.94; letter-spacing: 0; text-transform: uppercase; }
.hero h1 em { color: var(--copper); font-style: normal; }
.hero__text { max-width: 610px; margin: 28px 0 0; color: #ded8cf; font-size: clamp(1rem, 1.45vw, 1.18rem); }
.hero__actions, .visit__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border: 1px solid transparent; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease); }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--ember); color: #fff; border-color: var(--ember); }
.button--primary:hover { background: var(--ember-bright); border-color: var(--ember-bright); }
.button--ghost { background: rgba(26, 26, 26, 0.3); color: var(--off-white); border-color: rgba(244, 239, 230, 0.6); }
.button--ghost:hover { background: var(--off-white); color: var(--ink); border-color: var(--off-white); }
.hero__facts { position: absolute; inset: auto 0 0; display: grid; grid-template-columns: repeat(3, 1fr); padding-block: 28px; border-top: 1px solid var(--line-dark); }
.hero__facts p { display: grid; gap: 2px; margin: 0; padding-left: 28px; border-left: 1px solid var(--line-dark); }
.hero__facts p:first-child { padding-left: 0; border-left: 0; }
.hero__facts strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }
.hero__facts span { color: var(--muted); font-size: 0.75rem; }

.signature { background: var(--off-white); color: var(--ink); }
.signature__grid { display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr); gap: clamp(48px, 8vw, 110px); align-items: center; }
.signature__media { position: relative; margin: 0; }
.signature__media::before { content: ""; position: absolute; z-index: 1; inset: -14px auto auto -14px; width: 90px; height: 90px; border-top: 3px solid var(--ember); border-left: 3px solid var(--ember); }
.signature__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.signature__media figcaption, .gallery figure figcaption { position: absolute; inset: auto 0 0; padding: 18px 22px; background: linear-gradient(0deg, rgba(0,0,0,0.82), transparent); color: #fff; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.signature__copy h2, .section-heading h2, .experience h2, .story h2, .visit h2 { margin: 0; font-size: clamp(2.25rem, 4.7vw, 4.7rem); line-height: 1.02; letter-spacing: 0; text-transform: uppercase; }
.signature__copy > p:not(.eyebrow) { max-width: 520px; margin: 28px 0; color: #57514a; }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 12px; padding-block: 8px; color: var(--ember); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; }
.text-link span { font-size: 1.25rem; transition: transform var(--ease); }
.text-link:hover span { transform: translateX(5px); }

.menu { background: var(--paper); color: var(--ink); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 420px); gap: 60px; align-items: end; margin-bottom: 52px; }
.section-heading > p { margin: 0 0 8px; color: #5d5750; }
.menu-tabs { display: grid; grid-template-columns: repeat(5, minmax(132px, 1fr)); overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; border-bottom: 1px solid var(--line-light); }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tabs button { position: relative; min-height: 72px; display: grid; align-content: center; gap: 2px; padding: 12px 18px; border: 1px solid var(--line-light); border-right: 0; background: transparent; color: #5e5952; text-align: left; scroll-snap-align: center; cursor: pointer; transition: background var(--ease), color var(--ease), border-color var(--ease); }
.menu-tabs button:last-child { border-right: 1px solid var(--line-light); }
.menu-tabs button::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: var(--ember); transform: scaleX(0); transform-origin: left; transition: transform var(--ease); }
.menu-tabs button span { font-size: 0.73rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; }
.menu-tabs button small { color: #817a71; font-size: 0.65rem; font-weight: 600; }
.menu-tabs button:hover { background: rgba(26,26,26,0.06); color: var(--ink); }
.menu-tabs button[aria-selected="true"] { background: var(--charcoal); color: var(--off-white); border-color: var(--charcoal); }
.menu-tabs button[aria-selected="true"]::after { transform: scaleX(1); }
.menu-tabs button[aria-selected="true"] small { color: #d7b18d; }
.menu-current { scroll-margin-top: calc(var(--header-height) + 16px); display: flex; align-items: end; justify-content: space-between; gap: 28px; padding: 22px 26px; background: var(--charcoal); color: var(--off-white); border-left: 4px solid var(--ember); }
.menu-current p { margin: 0; color: var(--muted); font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.menu-current div { display: flex; align-items: baseline; gap: 14px; }
.menu-current strong { font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.1; text-transform: uppercase; }
.menu-current span { color: var(--copper); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; }
.menu-current.is-updating strong, .menu-current.is-updating span { animation: menuLabelIn 280ms ease both; }
.menu-panels { min-height: 380px; padding-top: 0; }
.menu-panel.is-entering { animation: menuPanelIn 340ms cubic-bezier(0.2, 0.8, 0.2, 1) both; }
@keyframes menuLabelIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes menuPanelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.menu-panel[hidden] { display: none; }
.dish { display: grid; grid-template-columns: 34px 1fr; gap: 18px; min-height: 220px; padding: 30px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.dish--compact { min-height: 160px; }
.dish__number { color: var(--ember); font-size: 0.7rem; font-weight: 800; }
.dish h3 { margin: 0 0 10px; font-size: 1.12rem; line-height: 1.3; text-transform: uppercase; }
.dish p { margin: 0; color: #625c55; font-size: 0.92rem; }
.dish__tag { grid-column: 2; align-self: end; color: var(--copper); font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }

.experience { position: relative; background: var(--charcoal); overflow: hidden; }
.experience::before { content: ""; position: absolute; inset: 0; opacity: 0.08; background-image: repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), var(--off-white) 25%); pointer-events: none; }
.experience__intro { position: relative; max-width: 880px; margin-bottom: 72px; }
.experience__intro h2 { color: var(--off-white); }
.experience__reasons { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); }
.experience__reasons article { min-height: 260px; padding: 32px 24px 0; border-left: 1px solid var(--line-dark); }
.experience__reasons article:first-child { border-left: 0; padding-left: 0; }
.experience__reasons span { color: var(--copper); font-size: 0.68rem; font-weight: 800; }
.experience__reasons h3 { margin: 76px 0 10px; font-size: 1rem; text-transform: uppercase; }
.experience__reasons p { margin: 0; color: var(--muted); font-size: 0.88rem; }

.gallery { background: #10100f; }
.section-heading--light > p { color: var(--muted); }
.text-link--light { color: var(--off-white); }
.gallery__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; grid-template-rows: repeat(2, minmax(270px, 34vw)); gap: 12px; }
.gallery figure { position: relative; margin: 0; overflow: hidden; }
.gallery__wide { grid-row: 1 / 3; }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.gallery figure:hover img { transform: scale(1.025); }
.gallery__note { margin: 18px 0 0; color: #817c74; font-size: 0.72rem; }

.story { background: var(--off-white); color: var(--ink); }
.story__grid { display: grid; grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr); gap: clamp(50px, 9vw, 130px); }
.story__copy { padding-top: 42px; }
.story__copy > p { max-width: 660px; color: #5e5851; }
.story__lead { color: var(--ink) !important; font-size: clamp(1.35rem, 2.2vw, 1.9rem); font-weight: 600; line-height: 1.4; }
.story__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; padding-top: 28px; border-top: 1px solid var(--line-light); }
.story__stats p { display: grid; gap: 4px; margin: 0; }
.story__stats strong { color: var(--ember); font-size: 1rem; text-transform: uppercase; }
.story__stats span { color: #6a635b; font-size: 0.75rem; }

.visit { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr); padding: 0; min-height: 680px; background: var(--charcoal-soft); }
.visit__map { position: relative; min-height: 680px; background-color: #242321; background-image: repeating-linear-gradient(30deg, transparent 0, transparent 58px, rgba(244,239,230,0.06) 59px, rgba(244,239,230,0.06) 61px); }
.visit__map iframe { width: 100%; height: 100%; min-height: 680px; border: 0; filter: grayscale(1) contrast(1.08); }
.map-callout { position: absolute; z-index: 2; left: clamp(20px, 5vw, 64px); bottom: clamp(20px, 5vw, 64px); min-width: min(320px, calc(100% - 40px)); display: grid; gap: 3px; padding: 20px 22px; background: var(--off-white); color: var(--ink); border-left: 4px solid var(--ember); box-shadow: 0 18px 50px rgba(0,0,0,0.28); transition: transform var(--ease), background var(--ease); }
.map-callout:hover { transform: translateY(-3px); background: #fff; }
.map-callout span, .map-callout small { font-size: 0.67rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.map-callout strong { font-size: 1.05rem; }
.map-callout small { margin-top: 6px; color: var(--ember); }
.visit__content { align-self: center; max-width: 610px; padding: clamp(60px, 8vw, 110px); }
.visit__content h2 { max-width: 560px; }
.visit address { margin: 30px 0; color: #d6cfc5; font-style: normal; }
.visit__details { display: grid; gap: 0; margin: 0; }
.visit__details div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 16px 0; border-top: 1px solid var(--line-dark); }
.visit__details dt { color: var(--copper); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.visit__details dd { margin: 0; font-size: 0.9rem; }
.visit__details a { text-decoration: underline; text-decoration-color: rgba(244,239,230,0.3); text-underline-offset: 4px; }

.site-footer { background: #0d0d0c; border-top: 1px solid var(--line-dark); }
.footer__main { display: grid; grid-template-columns: 160px 1fr auto; gap: 60px; align-items: center; padding-block: 68px; }
.footer__main > img { width: 145px; height: 138px; object-fit: cover; border-radius: 50%; }
.footer__phrase { margin: 0 0 10px; font-size: clamp(1.35rem, 2.4vw, 2.2rem); font-weight: 700; line-height: 1.15; text-transform: uppercase; }
.footer__main div > p:last-child { margin: 0; color: var(--muted); font-size: 0.76rem; }
.footer__links { display: grid; gap: 18px; justify-items: start; }
.footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 22px; border-top: 1px solid var(--line-dark); color: #7e7971; font-size: 0.7rem; }
.footer__bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  :root { --header-height: 72px; }
  .site-header { grid-template-columns: 90px 1fr auto; height: 72px; }
  .brand img { width: 60px; height: 57px; }
  .header-cta { display: none; }
  .nav-toggle { display: block; justify-self: end; }
  .main-nav { position: absolute; inset: 72px 0 auto; justify-self: stretch; width: 100%; display: grid; gap: 0; padding: 16px 20px 28px; background: rgba(26,26,26,0.98); border-bottom: 1px solid var(--line-dark); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform var(--ease), opacity var(--ease); }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { min-height: 52px; display: flex; align-items: center; border-bottom: 1px solid var(--line-dark); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__line:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: max(880px, 100svh); }
  .hero__shade { background: linear-gradient(90deg, rgba(11,11,10,0.92), rgba(11,11,10,0.4)), linear-gradient(0deg, rgba(11,11,10,0.86), transparent 45%); }
  .signature__grid { grid-template-columns: 1fr; }
  .signature__copy { max-width: 720px; }
  .experience__reasons { grid-template-columns: repeat(2, 1fr); }
  .experience__reasons article:nth-child(3) { padding-left: 0; border-left: 0; }
  .visit { grid-template-columns: 1fr; }
  .visit__map { min-height: 460px; }
  .visit__map iframe { min-height: 460px; }
  .visit__content { max-width: none; width: var(--wrap); margin-inline: auto; padding-inline: 0; }
}

@media (max-width: 700px) {
  :root { --wrap: min(100% - 28px, 1180px); }
  .section { padding-block: 76px; }
  .hero { min-height: max(780px, 100svh); align-items: start; }
  .hero__image { object-position: 58% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(11,11,10,0.9), rgba(11,11,10,0.32)), linear-gradient(0deg, rgba(11,11,10,0.94) 0%, rgba(11,11,10,0.3) 62%); }
  .hero__content { padding-top: 156px; padding-bottom: 240px; }
  .hero h1 { font-size: clamp(2.3rem, 10.5vw, 3.45rem); }
  .hero__text { max-width: 90%; }
  .hero__actions .button { flex: 1 1 160px; }
  .hero__facts { grid-template-columns: 1fr; padding-block: 18px; }
  .hero__facts p, .hero__facts p:first-child { grid-template-columns: 145px 1fr; padding: 10px 0; border: 0; border-top: 1px solid var(--line-dark); }
  .hero__facts p:first-child { border-top: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 38px; }
  .menu-tabs { grid-template-columns: repeat(5, minmax(138px, 1fr)); }
  .menu-tabs button { min-height: 68px; padding-inline: 14px; }
  .menu-current { display: grid; gap: 6px; padding: 18px; }
  .menu-current div { justify-content: space-between; }
  .menu-grid { grid-template-columns: 1fr; }
  .dish { min-height: 0; padding: 24px 18px; }
  .experience::before { background-image: repeating-linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), var(--off-white) 50%); }
  .experience__reasons { grid-template-columns: 1fr; }
  .experience__reasons article, .experience__reasons article:first-child, .experience__reasons article:nth-child(3) { min-height: 0; padding: 26px 0; border-left: 0; border-bottom: 1px solid var(--line-dark); }
  .experience__reasons h3 { margin: 34px 0 8px; }
  .gallery__grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery__grid figure, .gallery__wide { grid-row: auto; aspect-ratio: 4 / 3; }
  .story__grid { grid-template-columns: 1fr; gap: 24px; }
  .story__copy { padding-top: 0; }
  .story__stats { grid-template-columns: 1fr; }
  .story__stats p { grid-template-columns: 120px 1fr; }
  .visit__map, .visit__map iframe { min-height: 360px; }
  .map-callout { left: 14px; bottom: 14px; min-width: calc(100% - 28px); }
  .visit__details div { grid-template-columns: 1fr; gap: 4px; }
  .visit__details a { min-height: 44px; display: inline-flex; align-items: center; }
  .visit__actions .button { width: 100%; }
  .footer__main { grid-template-columns: 1fr; gap: 30px; }
  .footer__main > img { width: 120px; height: 114px; }
  .footer__links a, .footer__bottom a { min-height: 44px; display: inline-flex; align-items: center; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

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

.not-found-page { min-height: 100svh; display: grid; place-items: center; padding: 28px; background: var(--charcoal); }
.not-found { width: min(560px, 100%); text-align: center; }
.not-found > img { width: 148px; height: 140px; margin: 0 auto 32px; object-fit: cover; border-radius: 50%; }
.not-found .eyebrow { justify-content: center; }
.not-found h1 { margin: 0; color: var(--copper); font-size: clamp(5rem, 20vw, 10rem); line-height: 0.9; }
.not-found > p:not(.eyebrow) { margin: 24px 0 30px; color: var(--paper); }
