:root {
  --cream: #fef3c7;
  --paper: #f7ebcd;
  --paper-deep: #ead8b2;
  --ink: #21180f;
  --brown: #78350f;
  --primary: #92400e;
  --secondary: #b45309;
  --terracotta: #c67b5c;
  --plum: #4a2028;
  --forest: #263126;
  --white: #fffdf7;
  --line: rgba(120, 53, 15, 0.24);
  --shadow: 0 24px 80px rgba(33, 24, 15, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Arsenal", "Segoe UI", sans-serif;
  --container: min(1240px, calc(100vw - 64px));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --z-menu: 40;
  --z-header: 50;
  --z-grain: 60;
  --z-progress: 70;
  --z-skip: 80;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(198, 123, 92, 0.14), transparent 32rem),
    radial-gradient(circle at 86% 34%, rgba(180, 83, 9, 0.09), transparent 42rem),
    linear-gradient(180deg, var(--cream), var(--paper) 45%, #f2e3c3 100%);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
}

body.menu-open { overflow: hidden; }

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

:focus-visible {
  outline: 3px solid #f4b756;
  outline-offset: 4px;
}

.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;
  left: 20px;
  top: 12px;
  z-index: var(--z-skip);
  padding: 12px 18px;
  color: var(--white);
  background: var(--primary);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: var(--z-progress);
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #f0b55f;
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 clamp(20px, 4vw, 64px);
  color: var(--white);
  transition: color 300ms ease, background 300ms ease, height 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  height: 72px;
  color: var(--ink);
  background: rgba(254, 243, 199, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px) saturate(0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.brand-stamp { width: 46px; height: 46px; flex: 0 0 46px; }
.brand-stamp svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; }
.brand-stamp path { fill: currentColor; stroke: none; }
.brand-name {
  display: grid;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0.02em;
}
.brand-name small {
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 46px); margin-left: auto; }
.desktop-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 8px;
  height: 1px;
  background: currentColor;
  transition: right 240ms var(--ease);
}
.desktop-nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.lang-switch { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; }
.lang-switch button {
  min-width: 44px;
  min-height: 44px;
  padding: 0 8px;
  color: inherit;
  background: none;
  border: 0;
  opacity: 0.58;
  cursor: pointer;
  transition: opacity 180ms ease;
}
.lang-switch button[aria-pressed="true"], .lang-switch button:hover { opacity: 1; }

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 14px 10px;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}
.menu-button > span:not(.sr-only) {
  display: block;
  width: 28px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 260ms var(--ease);
}
.menu-button[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(3.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  display: grid;
  align-content: center;
  padding: 100px 24px 40px;
  color: var(--ink);
  background: var(--cream);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 260ms ease, transform 350ms var(--ease), visibility 350ms;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: baseline;
  min-height: 70px;
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.mobile-menu nav span { color: var(--primary); font-size: 11px; }
.mobile-menu nav strong { font-family: var(--serif); font-size: clamp(32px, 10vw, 52px); line-height: 1; }
.mobile-menu > p { margin: 34px 0 0 40px; color: var(--brown); font-size: 14px; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center 51%; transform: scale(1.01); }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 11, 7, 0.78) 0%, rgba(16, 11, 7, 0.34) 47%, rgba(16, 11, 7, 0.08) 72%),
    linear-gradient(0deg, rgba(16, 11, 7, 0.64) 0%, transparent 44%, rgba(16, 11, 7, 0.14) 100%);
}
.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: radial-gradient(circle at 78% 10%, rgba(255, 190, 100, 0.52), transparent 25%);
  mix-blend-mode: screen;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, calc(100% - 128px));
  margin: 0 0 clamp(56px, 8vh, 104px) clamp(32px, 8vw, 132px);
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #f4c47e; }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 9.5vw, 154px);
  font-weight: 600;
  line-height: 0.72;
  letter-spacing: -0.055em;
  text-shadow: 0 4px 30px rgba(0,0,0,.24);
}
.hero h1 em { color: #f4c47e; font-weight: 500; }
.hero-lead {
  max-width: 660px;
  margin: 42px 0 0;
  color: rgba(255, 253, 247, 0.9);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.45;
}
.hero-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 34px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}
.button svg, .site-footer svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { color: var(--white); background: var(--primary); box-shadow: 0 8px 26px rgba(33, 24, 15, 0.18); }
.button-primary:hover { background: #74310a; box-shadow: 0 14px 34px rgba(33, 24, 15, 0.25); transform: translateY(-2px); }
.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.text-link i { width: 44px; height: 1px; background: currentColor; transition: width 220ms var(--ease); }
.text-link:hover i { width: 62px; }
.hero-status {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(28px, 5vh, 64px);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(20, 14, 9, 0.42);
  backdrop-filter: blur(10px);
  font-size: 12px;
  letter-spacing: .05em;
}
.hero-status > span { width: 8px; height: 8px; border-radius: 50%; background: #e2b36d; box-shadow: 0 0 0 4px rgba(226,179,109,.16); }
.hero-status.is-open > span { background: #8fc694; box-shadow: 0 0 0 4px rgba(143,198,148,.16); }
.hero-coordinate {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 4vw, 64px);
  top: 50%;
  color: rgba(255,255,255,.52);
  font-size: 10px;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  cursor: pointer;
}
.scroll-cue span { width: 1px; height: 28px; background: rgba(255,255,255,.68); transform-origin: top; animation: scrollPulse 1.8s ease-in-out 2; }
@keyframes scrollPulse { 0%,100%{ transform: scaleY(.35); opacity:.3 } 50%{ transform: scaleY(1); opacity:1 } }

.section-pad { padding: clamp(90px, 12vw, 180px) max(32px, calc((100vw - 1240px) / 2)); }
.lead { font-size: clamp(19px, 1.7vw, 25px); line-height: 1.6; }
h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -.035em; }
h2 { font-size: clamp(48px, 6.5vw, 98px); line-height: .96; }
h3 { font-size: clamp(38px, 4.5vw, 70px); line-height: .98; }
h2 em, h3 em { color: var(--primary); font-weight: 500; }

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.manifesto-copy { align-self: start; padding-top: clamp(20px, 6vw, 90px); }
.manifesto-copy h2 { max-width: 780px; margin: 0; }
.manifesto-copy .lead { max-width: 680px; margin: 38px 0 0; }
.image-frame { position: relative; margin: 0; }
.image-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--line);
}
.image-frame picture { display: block; overflow: hidden; background: var(--paper-deep); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.image-frame:hover img { transform: scale(1.018); }
.manifesto-photo { width: min(100%, 490px); justify-self: end; transform: rotate(1.25deg); }
.manifesto-photo picture { aspect-ratio: 4 / 5; }
.image-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  color: var(--brown);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.manifesto-note {
  position: absolute;
  left: max(32px, calc((100vw - 1240px) / 2));
  bottom: clamp(50px, 7vw, 100px);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 360px;
}
.manifesto-note > span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  font-family: var(--serif);
  font-size: 26px;
}
.manifesto-note p { margin: 0; color: var(--brown); font-size: 12px; font-weight: 600; line-height: 1.4; letter-spacing: .05em; text-transform: uppercase; }

.today {
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr);
  background: var(--forest);
  color: var(--white);
}
.today-photo { align-self: stretch; min-height: 760px; }
.today-photo::before { display: none; }
.today-photo picture, .today-photo img { width: 100%; height: 100%; }
.today-photo img { object-fit: cover; }
.photo-label {
  position: absolute;
  left: 32px;
  bottom: 32px;
  padding: 11px 16px;
  color: var(--ink);
  background: var(--cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
}
.today-board { padding: clamp(80px, 8vw, 120px) clamp(32px, 6vw, 92px); align-self: center; }
.today-board .eyebrow { color: #e8b96f; }
.today-board h2 { margin: 0; font-size: clamp(50px, 5.2vw, 82px); }
.today-board h2 em { color: #f4c47e; }
.today-board > p:not(.eyebrow):not(.hand-note) { max-width: 590px; margin: 32px 0; color: rgba(255,255,255,.72); }
.menu-lines { list-style: none; padding: 0; margin: 34px 0 0; border-top: 1px solid rgba(255,255,255,.18); }
.menu-lines li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.menu-lines li > span { padding-top: 5px; color: #e8b96f; font-size: 10px; }
.menu-lines div { display: grid; gap: 2px; }
.menu-lines strong { font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.1; }
.menu-lines small { color: rgba(255,255,255,.58); font-size: 13px; }
.hand-note {
  width: fit-content;
  margin: 30px 0 0 !important;
  padding: 9px 12px;
  color: var(--ink) !important;
  background: #f4c47e;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  transform: rotate(-1deg);
}

.food-story { overflow: hidden; }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; align-items: end; gap: 40px; margin-bottom: clamp(90px, 12vw, 170px); }
.section-heading .eyebrow { align-self: start; max-width: 250px; }
.section-heading h2 { margin: 0; }
.food-chapter { position: relative; display: grid; align-items: center; min-height: 680px; margin-bottom: clamp(100px, 15vw, 210px); }
.food-chapter:last-child { margin-bottom: 0; }
.food-chapter figure { z-index: 1; width: min(53vw, 690px); }
.food-chapter figure picture { aspect-ratio: 4 / 5; }
.food-chapter-copy { position: relative; z-index: 2; max-width: 610px; padding: clamp(36px, 5vw, 72px); background: rgba(254, 243, 199, .91); box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.food-chapter-copy h3 { margin: 0; }
.food-chapter-copy p { max-width: 500px; margin: 28px 0 0; color: var(--brown); }
.chapter-number { display: block; margin-bottom: 24px; color: var(--primary); font-family: var(--serif); font-size: 18px; }
.food-chapter-hot { grid-template-columns: 1.1fr .9fr; }
.food-chapter-hot figure { grid-column: 1; justify-self: start; transform: rotate(-.9deg); }
.food-chapter-hot .food-chapter-copy { grid-column: 2; margin-left: -120px; }
.food-chapter-cold { grid-template-columns: .88fr 1.12fr; }
.food-chapter-cold figure { grid-column: 2; justify-self: end; transform: rotate(.9deg); }
.food-chapter-cold .food-chapter-copy { grid-column: 1; grid-row: 1; margin-right: -110px; justify-self: end; }
.food-chapter-bread { grid-template-columns: 1.18fr .82fr; }
.food-chapter-bread figure { width: min(64vw, 850px); }
.food-chapter-bread figure picture { aspect-ratio: 3 / 2; }
.food-chapter-bread .food-chapter-copy { grid-column: 2; margin-left: -130px; }

.table-scene {
  position: relative;
  min-height: 108svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.table-photo, .table-photo img { position: absolute; inset: -4% 0; width: 100%; height: 108%; }
.table-photo img { object-fit: cover; object-position: center; }
.table-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25,16,10,.88) 0%, rgba(25,16,10,.46) 46%, rgba(25,16,10,.08) 80%), linear-gradient(0deg, rgba(25,16,10,.4), transparent 45%); }
.table-copy { position: relative; z-index: 2; max-width: 730px; margin-left: max(32px, calc((100vw - 1240px) / 2)); padding-right: 32px; }
.table-copy .eyebrow { color: #f4c47e; }
.table-copy h2 { margin: 0; text-shadow: 0 4px 26px rgba(0,0,0,.22); }
.table-copy h2 em { color: #f4c47e; }
.table-copy p:last-child { max-width: 650px; margin: 34px 0 0; color: rgba(255,255,255,.82); font-size: clamp(18px, 1.7vw, 24px); }
.table-tags {
  position: absolute;
  z-index: 2;
  left: max(32px, calc((100vw - 1240px) / 2));
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.table-tags span { padding: 9px 14px; border: 1px solid rgba(255,255,255,.36); background: rgba(20,12,8,.34); backdrop-filter: blur(7px); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

.drinks { display: grid; grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); gap: clamp(56px, 8vw, 130px); align-items: center; background: var(--plum); color: var(--white); }
.drinks-copy .eyebrow { color: #e9b66a; }
.drinks-copy h2 { margin: 0; }
.drinks-copy h2 em { color: #f2c881; }
.drinks-copy .lead { max-width: 630px; margin: 34px 0 0; color: rgba(255,255,255,.76); }
.drink-list { margin: 50px 0 0; border-top: 1px solid rgba(255,255,255,.18); }
.drink-list div { display: grid; grid-template-columns: minmax(120px,.35fr) 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.drink-list dt { font-family: var(--serif); font-size: 25px; }
.drink-list dd { margin: 0; align-self: center; color: rgba(255,255,255,.58); font-size: 13px; }
.responsible { margin-top: 24px; color: rgba(255,255,255,.42); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.drinks-photo { width: 100%; transform: rotate(1deg); }
.drinks-photo picture { aspect-ratio: 3 / 2; }
.drinks-photo::before { border-color: rgba(255,255,255,.2); }
.drinks-photo figcaption { color: rgba(255,255,255,.64); }

.road { display: grid; grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr); min-height: 920px; background: var(--paper); }
.road-copy { align-self: center; padding-right: clamp(40px, 7vw, 110px); }
.road-copy h2 { margin: 0; }
.road-copy .lead { max-width: 620px; margin: 38px 0 0; color: var(--brown); }
.road-facts { margin-top: 50px; border-top: 1px solid var(--line); }
.road-facts div { display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.road-facts span { color: var(--primary); font-size: 10px; padding-top: 4px; }
.road-facts p { margin: 0; font-size: 15px; }
.road-photo { position: relative; min-height: 720px; overflow: hidden; }
.road-photo picture, .road-photo img { width: 100%; height: 100%; }
.road-photo img { object-fit: cover; object-position: center; transition: transform 1.2s var(--ease); }
.road-photo:hover img { transform: scale(1.018); }
.road-stamp {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  border: 2px solid rgba(255,255,255,.72);
  outline: 1px solid var(--primary);
  outline-offset: 4px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
  text-align: center;
  transform: rotate(7deg);
}

.visit { background: var(--ink); color: var(--white); }
.visit-intro { display: grid; grid-template-columns: .7fr 1.7fr; gap: 40px; align-items: start; margin-bottom: clamp(70px, 8vw, 120px); }
.visit-intro .eyebrow { color: #e9b66a; }
.visit-intro h2 { margin: 0; }
.visit-intro h2 em { color: #f2c881; }
.visit-grid { display: grid; grid-template-columns: minmax(340px, .75fr) minmax(0, 1.25fr); gap: clamp(48px, 7vw, 100px); }
.visit-details { display: grid; align-content: start; }
.detail-block { padding: 26px 0; border-top: 1px solid rgba(255,255,255,.18); }
.detail-block > span { display: block; margin-bottom: 16px; color: rgba(255,255,255,.42); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.detail-block > strong { font-family: var(--serif); font-size: clamp(26px, 2.5vw, 36px); font-weight: 500; line-height: 1.25; }
.hours-block > div { display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hours-block strong { font-size: 14px; font-weight: 600; }
.hours-block time { color: #f2c881; font-size: 14px; white-space: nowrap; }
.visit-actions { margin-top: 30px; }
.visit-actions p { margin: 14px 0 0; color: rgba(255,255,255,.42); font-size: 12px; }
.map-wrap { position: relative; min-height: 540px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); background: #e5dec9; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 540px; border: 0; filter: sepia(.18) saturate(.78) contrast(1.05); }
.map-wrap > a {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  cursor: pointer;
}
.map-wrap > a svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr 1.3fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px max(24px, calc((100vw - 1240px) / 2));
  color: var(--ink);
  background: #e7cf9f;
  border-top: 1px solid rgba(120,53,15,.3);
}
.footer-mark { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--brown); border-radius: 50%; font-family: var(--serif); font-size: 26px; }
.site-footer > div:nth-child(2) { display: grid; }
.site-footer strong { font-family: var(--serif); font-size: 20px; }
.site-footer span, .site-footer p { color: var(--brown); font-size: 12px; }
.site-footer p { margin: 0; text-align: center; }
.site-footer > a { min-height: 48px; display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; text-decoration: none; text-transform: uppercase; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 800ms var(--ease), transform 900ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --container: min(100% - 48px, 960px); }
  .desktop-nav { gap: 20px; }
  .manifesto { grid-template-columns: 1fr .72fr; gap: 54px; }
  .manifesto-note { display: none; }
  .today { grid-template-columns: .95fr 1.05fr; }
  .food-chapter-copy { padding: 42px; }
  .drinks { grid-template-columns: 1fr 1fr; gap: 64px; }
  .road { grid-template-columns: 1fr 1fr; }
  .visit-intro { grid-template-columns: .5fr 1.5fr; }
}

@media (max-width: 900px) {
  .site-header { height: 72px; padding-inline: 20px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero-content { width: calc(100% - 48px); margin-left: 24px; margin-bottom: 84px; }
  .hero-status { right: 24px; bottom: 24px; }
  .hero-coordinate, .scroll-cue { display: none; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-copy { padding-top: 0; }
  .manifesto-photo { width: min(74vw, 520px); justify-self: center; }
  .today { grid-template-columns: 1fr; min-height: 0; }
  .today-photo { min-height: 62vw; }
  .today-board { padding: 80px 48px; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .food-chapter, .food-chapter-hot, .food-chapter-cold, .food-chapter-bread { grid-template-columns: 1fr; min-height: 0; }
  .food-chapter figure, .food-chapter-bread figure { width: min(82vw, 640px); grid-column: 1; grid-row: 1; justify-self: start; }
  .food-chapter-cold figure { justify-self: end; }
  .food-chapter .food-chapter-copy, .food-chapter-hot .food-chapter-copy, .food-chapter-cold .food-chapter-copy, .food-chapter-bread .food-chapter-copy { grid-column: 1; grid-row: 2; width: min(78vw, 590px); margin: -70px 0 0; justify-self: end; }
  .food-chapter-cold .food-chapter-copy { justify-self: start; }
  .table-scene { min-height: 900px; }
  .drinks { grid-template-columns: 1fr; }
  .drinks-photo { width: min(88vw, 760px); justify-self: end; }
  .road { grid-template-columns: 1fr; }
  .road-photo { min-height: 72vw; grid-row: 1; }
  .road-copy { grid-row: 2; }
  .visit-intro { grid-template-columns: 1fr; gap: 0; }
  .visit-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 480px; }
  .site-footer { grid-template-columns: auto 1fr auto; }
  .site-footer p { display: none; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 40px); }
  body { font-size: 16px; }
  .site-header, .site-header.is-scrolled, .site-header.menu-visible { height: 68px; }
  .brand-stamp { width: 40px; height: 40px; flex-basis: 40px; }
  .brand-name { font-size: 21px; }
  .brand-name small { font-size: 8px; }
  .header-actions { gap: 6px; }
  .lang-switch { gap: 1px; }
  .lang-switch button { min-width: 44px; padding-inline: 4px; }

  .hero {
    min-height: 100svh;
    display: block;
    padding-top: min(61svh, 520px);
    background: var(--ink);
  }
  .hero-media { height: min(63svh, 530px); bottom: auto; }
  .hero-media img { object-fit: cover; object-position: 52% 54%; transform: none; }
  .hero-shade { height: min(64svh, 540px); bottom: auto; background: linear-gradient(0deg, var(--ink) 0%, rgba(24,15,9,.12) 32%, rgba(15,9,6,.1) 100%); }
  .hero-shade::after { display: none; }
  .hero-content { position: relative; width: auto; margin: 0; padding: 18px 20px 98px; }
  .hero .eyebrow { margin-bottom: 13px; font-size: 10px; }
  .hero h1 { font-size: clamp(54px, 17vw, 80px); line-height: .78; }
  .hero-lead { margin-top: 24px; font-size: 17px; line-height: 1.45; }
  .hero-cta { display: grid; grid-template-columns: 1fr; gap: 4px; margin-top: 24px; }
  .hero-cta .button { width: 100%; }
  .hero-cta .text-link { justify-content: center; }
  .hero-status { right: auto; left: 20px; bottom: 22px; }

  .section-pad { padding: 86px 20px; }
  h2 { font-size: clamp(44px, 13vw, 66px); }
  h3 { font-size: clamp(38px, 11vw, 56px); }
  .lead { font-size: 18px; }
  .eyebrow { margin-bottom: 16px; font-size: 10px; }

  .manifesto { padding-bottom: 112px; gap: 54px; }
  .manifesto-copy .lead { margin-top: 26px; }
  .manifesto-photo { width: calc(100% - 18px); justify-self: start; }

  .today-photo { min-height: 78vw; }
  .photo-label { left: 16px; bottom: 16px; }
  .today-board { padding: 78px 20px; }
  .today-board h2 { font-size: clamp(46px, 13vw, 64px); }
  .menu-lines strong { font-size: 22px; }
  .menu-lines small { font-size: 12px; line-height: 1.35; }

  .section-heading { margin-bottom: 76px; }
  .food-chapter { margin-bottom: 110px; }
  .food-chapter figure, .food-chapter-bread figure { width: calc(100% - 18px); }
  .food-chapter .food-chapter-copy, .food-chapter-hot .food-chapter-copy, .food-chapter-cold .food-chapter-copy, .food-chapter-bread .food-chapter-copy { width: calc(100% - 18px); margin-top: -34px; padding: 30px 22px; }
  .food-chapter-copy p { margin-top: 20px; }

  .table-scene { min-height: 820px; align-items: end; padding-bottom: 150px; }
  .table-photo, .table-photo img { inset: 0; height: 100%; }
  .table-photo img { object-position: 57% center; }
  .table-shade { background: linear-gradient(0deg, rgba(25,16,10,.95) 0%, rgba(25,16,10,.7) 43%, rgba(25,16,10,.08) 78%); }
  .table-copy { margin: 0; padding: 0 20px; }
  .table-copy p:last-child { font-size: 17px; }
  .table-tags { left: 20px; right: 20px; bottom: 26px; gap: 6px; }
  .table-tags span { padding: 7px 9px; font-size: 9px; }

  .drinks { gap: 58px; }
  .drink-list div { grid-template-columns: 94px 1fr; gap: 12px; }
  .drink-list dt { font-size: 22px; }
  .drinks-photo { width: calc(100% - 12px); }

  .road-photo { min-height: 112vw; }
  .road-photo img { object-position: center center; }
  .road-stamp { width: 96px; height: 96px; right: 20px; bottom: 20px; font-size: 10px; }
  .road-copy { padding: 82px 20px 96px; }

  .visit-intro { margin-bottom: 56px; }
  .visit-grid { gap: 50px; }
  .hours-block > div { grid-template-columns: 1fr; gap: 3px; }
  .visit-actions .button { width: 100%; }
  .map-wrap, .map-wrap iframe { min-height: 410px; }

  .site-footer { grid-template-columns: auto 1fr; padding: 28px 20px; }
  .site-footer > a { grid-column: 1 / -1; justify-self: stretch; justify-content: center; border-top: 1px solid rgba(120,53,15,.24); padding-top: 14px; }
}

@media (max-width: 380px) {
  .brand-name small { display: none; }
  .hero { padding-top: min(57svh, 470px); }
  .hero-media { height: min(59svh, 480px); }
  .hero-content { padding-top: 12px; }
  .hero h1 { font-size: 51px; }
  .hero-lead { font-size: 15px; }
  .hero-cta .text-link { display: none; }
  .today-board { padding-inline: 18px; }
}

@media (orientation: landscape) and (max-height: 520px) and (max-width: 950px) {
  .hero { min-height: 720px; }
  .hero-content { margin-bottom: 54px; }
  .hero h1 { font-size: 72px; }
  .hero-lead { max-width: 570px; margin-top: 24px; font-size: 16px; }
  .hero-status { bottom: 18px; }
}

@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; }
  [data-parallax] { transform: none !important; }
}

@media (forced-colors: active) {
  .hero-shade, .table-shade { background: rgba(0,0,0,.72); }
  .button, .table-tags span { border: 1px solid ButtonText; }
}
