:root {
  --background: #f6f0e8;
  --paper: #fbf8f3;
  --surface: #211820;
  --surface-soft: #2c202a;
  --text: #211a20;
  --text-inverse: #fff9f2;
  --muted: #746b70;
  --muted-light: #c9bdc2;
  --primary: #6d234e;
  --primary-bright: #8f315f;
  --accent: #d39a66;
  --accent-hot: #e4a842;
  --line: rgba(33, 26, 32, .15);
  --line-light: rgba(255, 249, 242, .17);
  --radius: 18px;
  --radius-lg: 32px;
  --shadow: 0 30px 80px rgba(34, 17, 28, .16);
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Fraunces", Iowan Old Style, Baskerville, Georgia, serif;
  --page: min(1380px, calc(100vw - 80px));
  --header-height: 104px;
}

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

html { scroll-behavior: smooth; }

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

body.menu-open { overflow: hidden; }

#trp-floater-ls { display: none !important; }

img { display: block; width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; }

button { color: inherit; }

::selection { background: var(--primary); color: #fff; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: #fff;
  color: #111;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: none; }

.page-width { width: var(--page); margin-inline: auto; }

.section { padding: clamp(96px, 10vw, 168px) 0; }

.section-dark { background: var(--surface); color: var(--text-inverse); }

.section-plum { background: var(--primary); color: var(--text-inverse); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow span { width: 34px; height: 1px; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 { text-wrap: balance; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}

h2 { margin-bottom: 0; font-size: clamp(3.3rem, 6.2vw, 6.8rem); }

h1 em, h2 em, blockquote em {
  color: var(--primary-bright);
  font-weight: 400;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .05em;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.button:hover { transform: translateY(-3px); }

.button-primary { background: var(--primary); color: #fff; box-shadow: 0 16px 34px rgba(109, 35, 78, .28); }
.button-primary:hover { background: var(--primary-bright); box-shadow: 0 20px 42px rgba(109, 35, 78, .38); }
.button-ghost { color: #fff; border-color: rgba(255, 255, 255, .45); background: rgba(255,255,255,.04); backdrop-filter: blur(10px); }
.button-ghost:hover { color: var(--text); background: #fff; border-color: #fff; }
.button-ghost-dark { color: var(--text); border-color: var(--line); background: transparent; }
.button-ghost-dark:hover { color: #fff; border-color: var(--primary); background: var(--primary); }
.button-light { color: var(--text); background: var(--paper); }
.button-light:hover { background: #fff; box-shadow: 0 18px 38px rgba(0,0,0,.2); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  color: #fff;
  transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}

.admin-bar .site-header { top: 32px; }

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255,255,255,.12);
  transition: opacity .3s ease;
}

.site-header.is-scrolled {
  background: rgba(24, 16, 22, .92);
  box-shadow: 0 14px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .nav-shell { height: 76px; }
.site-header.is-scrolled .brand img { width: 54px; transform: translateY(11px); }
.site-header.is-hidden { transform: translateY(-110%); }

.nav-shell {
  position: relative;
  z-index: 2;
  width: var(--page);
  height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  transition: height .35s ease;
}

.brand {
  align-self: start;
  width: 82px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.25));
}

.brand img { width: 82px; transform: translateY(11px); transition: width .35s ease, transform .35s ease; }

.desktop-nav { display: flex; justify-content: center; align-items: center; gap: clamp(24px, 3vw, 48px); }

.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s ease;
}

.desktop-nav a:hover, .desktop-nav a.is-active { color: #fff; }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav-tools { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }

.rain-language-switcher {
  height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}

.rain-language-switcher a {
  min-width: 34px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(255,255,255,.58);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  transition: color .2s ease, background .2s ease;
}

.rain-language-switcher a:hover { color: #fff; }
.rain-language-switcher a.is-active { color: var(--text); background: var(--paper); }

.nav-cta {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  transition: background .25s ease, color .25s ease;
}

.nav-cta svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.nav-cta:hover { color: var(--text); background: #fff; }

.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(255,255,255,.08); }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: #fff; transition: transform .3s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  color: #fff;
  background: #171116;
  overflow: hidden;
}

.hero-media, .hero-shade, .hero-grain { position: absolute; inset: 0; }
.hero-media { left: 31%; overflow: hidden; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,10,14,.1), rgba(16,10,14,.2)); }
.hero-media img { width: 100%; height: 112%; object-fit: cover; object-position: center center; transform: translateY(var(--parallax-y, 0)); }
.hero-shade { background: linear-gradient(90deg, #171116 0%, rgba(23,17,22,.94) 28%, rgba(23,17,22,.5) 55%, rgba(23,17,22,.26) 100%), linear-gradient(0deg, rgba(19,12,17,.76), transparent 45%); }
.hero-grain { opacity: .12; mix-blend-mode: soft-light; background-image: radial-gradient(rgba(255,255,255,.9) .5px, transparent .6px); background-size: 5px 5px; }

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 540px;
  height: 540px;
  left: -300px;
  top: 25%;
  border: 1px solid rgba(211,154,102,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(211,154,102,.03), 0 0 0 160px rgba(211,154,102,.02);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 78px;
}

.hero-eyebrow { color: var(--accent); margin-bottom: 32px; }
.hero h1 { max-width: 850px; margin: 0 0 34px; font-size: clamp(4.7rem, 8.8vw, 10rem); }
.hero h1 em { color: #f0c293; }
.hero-copy { max-width: 510px; margin-bottom: 40px; color: rgba(255,255,255,.76); font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-aside {
  position: absolute;
  z-index: 2;
  right: 30px;
  top: 50%;
  color: rgba(255,255,255,.48);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.open-card {
  position: absolute;
  z-index: 3;
  right: 7vw;
  bottom: 48px;
  min-width: 235px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 16px 17px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(26,18,23,.62);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
}

.open-card small, .open-card strong { display: block; line-height: 1.35; }
.open-card small { color: rgba(255,255,255,.55); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.open-card strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.open-card > a { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); }
.pulse { position: relative; width: 8px; height: 8px; border-radius: 50%; background: #edb75b; box-shadow: 0 0 0 5px rgba(237,183,91,.13); }

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.55);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll i { position: relative; width: 1px; height: 55px; background: rgba(255,255,255,.3); overflow: hidden; }
.hero-scroll i::after { content: ""; position: absolute; inset: -50% 0 auto; height: 50%; background: #fff; animation: scrollLine 2s infinite ease-in-out; }

@keyframes scrollLine { 0% { transform: translateY(0); } 100% { transform: translateY(300%); } }

/* Story */
.story { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(460px, .88fr); gap: clamp(72px, 10vw, 170px); align-items: center; }
.story-copy h2 { font-size: clamp(3.8rem, 6.4vw, 7.3rem); }
.story-copy h2 em { color: var(--primary); }
.story-body { max-width: 625px; margin: 50px 0 35px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; color: var(--muted); }
.story-body p { margin: 0; }
.story-visual { position: relative; min-height: 720px; }
.story-image-main { position: absolute; inset: 0 13% 0 7%; margin: 0; border-radius: 240px 240px 28px 28px; overflow: hidden; box-shadow: var(--shadow); }
.story-image-main img { height: 100%; object-fit: cover; object-position: 50% 70%; }
.story-image-float { position: absolute; right: -6%; bottom: 8%; width: 44%; margin: 0; aspect-ratio: 1; border: 9px solid var(--paper); border-radius: 50%; overflow: hidden; box-shadow: 0 18px 60px rgba(36,18,29,.22); }
.story-image-float img { height: 100%; object-fit: cover; }
.story-stamp { position: absolute; top: 7%; left: -5%; width: 150px; height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; border-radius: 50%; background: var(--primary); text-align: center; transform: rotate(-8deg); box-shadow: 0 20px 50px rgba(109,35,78,.28); }
.story-stamp strong { font-family: var(--serif); font-size: 2.3rem; font-weight: 500; line-height: 1; }
.story-stamp span { margin-top: 7px; font-size: .64rem; font-weight: 600; letter-spacing: .05em; line-height: 1.35; text-transform: uppercase; }

/* Signatures */
.section-heading { margin-bottom: 68px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 450px); gap: 50px; align-items: end; }
.section-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.section-heading.light .eyebrow { color: var(--accent); }
.section-heading.light > p { color: var(--muted-light); }
.section-heading.light h2 em { color: #d28caf; }

.dish-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; align-items: stretch; }
.dish-card { position: relative; min-height: 560px; border-radius: var(--radius-lg); overflow: hidden; background: #151014; isolation: isolate; }
.dish-card-large { transform: translateY(38px); }
.dish-image { position: absolute; inset: 0; z-index: -2; }
.dish-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18,11,16,.98) 0%, rgba(18,11,16,.5) 52%, rgba(18,11,16,.06) 85%); }
.dish-image img { height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.dish-card:hover .dish-image img { transform: scale(1.06); }
.dish-number { position: absolute; top: 22px; right: 24px; width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: rgba(255,255,255,.8); font-size: .7rem; }
.dish-content { position: absolute; inset: auto 30px 30px; }
.dish-content p { margin-bottom: 11px; color: #e0a464; font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.dish-content h3 { margin: 0 0 12px; font-family: var(--serif); font-size: clamp(2rem, 2.6vw, 3.15rem); font-weight: 500; line-height: 1; letter-spacing: -.035em; }
.dish-content span { display: block; max-width: 350px; color: rgba(255,255,255,.67); font-size: .88rem; line-height: 1.55; }
.home-lunch { margin-top: 118px; padding: clamp(34px, 4.5vw, 58px); color: var(--text); border: 1px solid #e2d8cf; border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 28px 90px rgba(20,13,18,.18); }
.home-lunch-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: end; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.home-lunch-head .eyebrow { margin-bottom: 18px; color: var(--primary); }
.home-lunch-head h3 { margin: 0 0 10px; font-family: var(--serif); font-size: clamp(2.6rem, 4.6vw, 5rem); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.home-lunch-head p { max-width: 610px; margin: 0; color: var(--muted); }
.home-lunch-time { padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--primary); font-size: .67rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; white-space: nowrap; }
.home-lunch-days { border-bottom: 1px solid var(--line); }
.home-lunch-day { border-top: 1px solid var(--line); }
.home-lunch-day:first-child { border-top: 0; }
.home-lunch-day summary { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; }
.home-lunch-day summary::-webkit-details-marker { display: none; }
.home-lunch-day summary span { font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.8rem); line-height: 1; }
.home-lunch-day summary small { display: flex; align-items: center; gap: 11px; color: var(--primary); font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.home-lunch-day summary small::after { content: "+"; width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid var(--primary); border-radius: 50%; font-family: var(--sans); font-size: 1rem; font-weight: 400; transition: transform .25s ease, color .25s ease, background .25s ease; }
.home-lunch-day[open] summary small::after { color: #fff; background: var(--primary); transform: rotate(45deg); }
.home-lunch-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 46px; padding: 0 0 30px; }
.home-lunch-list article { display: grid; grid-template-columns: 1fr auto; gap: 5px 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.home-lunch-list article > span { font-family: var(--serif); font-size: 1.26rem; line-height: 1.15; }
.home-lunch-list article > strong { color: var(--primary); font-family: var(--serif); font-size: 1rem; font-weight: 600; white-space: nowrap; }
.home-lunch-list small, .home-lunch-list em { grid-column: 1 / -1; color: var(--muted); font-size: .68rem; font-weight: 700; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.home-lunch-list em { color: var(--primary); letter-spacing: .04em; }
.home-lunch-extras { display: grid; grid-template-columns: minmax(170px, .35fr) 1fr; gap: 36px; padding-top: 28px; align-items: start; }
.home-lunch-extras div { display: flex; justify-content: space-between; gap: 18px; font-family: var(--serif); font-size: 1.25rem; }
.home-lunch-extras strong { color: var(--primary); font-size: 1rem; }
.home-lunch-extras p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.7; }
@media (max-width: 760px) {
  .home-lunch-list { grid-template-columns: 1fr; }
  .home-lunch-extras { grid-template-columns: 1fr; gap: 12px; }
  .home-lunch-time { width: max-content; }
}
.section-action { margin-top: 84px; text-align: center; }

/* Category board */
.menu-preview { background: #efe7df; }
.category-board { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 660px; border-top: 1px solid var(--line); }
.category-list { align-self: center; }
.category-row { display: grid; grid-template-columns: 48px 1fr 1fr 36px; align-items: center; gap: 16px; min-height: 102px; border-bottom: 1px solid var(--line); transition: padding .3s ease, color .3s ease; }
.category-row > span { color: var(--muted); font-size: .7rem; }
.category-row strong { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 500; letter-spacing: -.035em; }
.category-row small { color: var(--muted); font-size: .78rem; }
.category-row i { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-style: normal; transition: transform .3s ease, color .3s ease, background .3s ease; }
.category-row:hover, .category-row.is-active { padding-left: 14px; color: var(--primary); }
.category-row:hover i, .category-row.is-active i { color: #fff; background: var(--primary); transform: rotate(45deg); }
.category-image { position: relative; margin: 48px 0 48px 70px; min-height: 560px; border-radius: 280px 280px 24px 24px; overflow: hidden; box-shadow: var(--shadow); background: var(--surface); }
.category-image img { position: absolute; inset: 0; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.06); transition: opacity .55s ease, transform .8s ease; }
.category-image img.is-active { opacity: .85; transform: scale(1); }
.category-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(27,16,24,.75), transparent 55%); }
.category-image > span { position: absolute; z-index: 2; right: 30px; bottom: 28px; color: #fff; font-family: var(--serif); font-size: 2rem; line-height: 1; text-align: right; }

/* Experience */
.experience { position: relative; height: min(92vh, 900px); min-height: 720px; color: #fff; overflow: hidden; }
.experience-media, .experience-overlay { position: absolute; inset: 0; }
.experience-media img { height: 100%; object-fit: cover; }
.experience-overlay { background: linear-gradient(90deg, rgba(21,13,19,.86), rgba(21,13,19,.3) 62%, rgba(21,13,19,.15)), linear-gradient(0deg, rgba(21,13,19,.62), transparent 50%); }
.experience-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.experience .eyebrow { color: var(--accent); }
.experience blockquote { margin: 0 0 42px; font-family: var(--serif); font-size: clamp(3.1rem, 6.5vw, 7rem); font-weight: 500; line-height: 1.02; letter-spacing: -.05em; }
.experience blockquote em { color: #f0c293; }
.experience-notes { position: absolute; z-index: 2; right: 4vw; bottom: 42px; display: flex; flex-direction: column; gap: 10px; color: rgba(255,255,255,.52); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.experience-notes span { display: flex; align-items: center; gap: 10px; }
.experience-notes i { color: var(--accent); font-size: .82rem; font-style: normal; line-height: 1; }
.experience-notes b { color: #fff; font-weight: 600; }

/* Values */
.values { background: var(--paper); }
.values-grid { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(70px, 10vw, 150px); align-items: start; }
.values-intro { position: sticky; top: 130px; }
.values-intro h2 { margin-bottom: 28px; font-size: clamp(3.7rem, 5.8vw, 6.5rem); }
.values-intro h2 em { color: var(--primary); }
.values-lead { max-width: 500px; margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.value-list { display: grid; gap: 18px; }
.value-list article { position: relative; padding: clamp(30px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.46); transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.value-list article:nth-child(2) { margin-left: clamp(0px, 4vw, 54px); }
.value-list article:hover { border-color: rgba(109,35,78,.35); box-shadow: 0 22px 60px rgba(32,16,26,.09); transform: translateY(-5px); }
.value-mark { width: max-content; margin-bottom: 28px; padding: 8px 13px; display: inline-flex; border-radius: 999px; color: var(--primary); background: rgba(109,35,78,.08); font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.value-list h3 { margin: 0 0 13px; font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 3rem); font-weight: 500; line-height: 1.1; letter-spacing: -.03em; }
.value-list p { max-width: 570px; margin: 0; color: var(--muted); }

/* Gallery */
.gallery { background: #e9ded5; }
.gallery-head { margin-bottom: 55px; display: flex; justify-content: space-between; align-items: end; }
.gallery-head h2 { font-size: clamp(4rem, 7.4vw, 8rem); }
.gallery-head .eyebrow { margin-bottom: 24px; }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .78fr .85fr; grid-template-rows: 310px 250px; gap: 16px; }
.gallery-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; }
.gallery-grid img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-grid figure:hover img { transform: scale(1.045); }
.gallery-a { grid-row: 1 / 3; }
.gallery-b { grid-column: 2 / 4; }
.gallery-c, .gallery-d { grid-row: 2; }
.gallery-c img { object-position: center 70%; }

/* Visit and footer */
.visit { position: relative; overflow: hidden; }
.visit::before { content: "RAIN"; position: absolute; left: -2vw; bottom: -5vw; color: rgba(255,255,255,.035); font-family: var(--serif); font-size: 24vw; line-height: .8; letter-spacing: -.08em; }
.visit-grid { position: relative; display: grid; grid-template-columns: 1fr minmax(420px, 520px); gap: clamp(70px, 12vw, 180px); align-items: center; }
.visit .eyebrow { color: var(--accent); }
.visit h2 em { color: #edb9d0; }
.visit-copy > p:not(.eyebrow) { max-width: 500px; margin: 35px 0 38px; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hours-card { padding: 36px 40px 32px; color: var(--text); border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 35px 90px rgba(35,10,26,.28); transform: rotate(1deg); }
.hours-card-head { margin-bottom: 22px; display: flex; align-items: baseline; justify-content: space-between; }
.hours-card-head span { font-family: var(--serif); font-size: 2rem; }
.hours-card-head small { color: var(--primary); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hours-card dl { margin: 0 0 24px; }
.hours-card dl div { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); }
.hours-card dt { color: var(--muted); }
.hours-card dd { margin: 0; font-weight: 600; }
.hours-card > a { display: flex; justify-content: space-between; gap: 20px; color: var(--primary); font-size: .86rem; font-weight: 700; }

.final-cta { position: relative; height: min(82vh, 830px); min-height: 680px; color: #fff; overflow: hidden; }
.final-cta-media, .final-cta-overlay { position: absolute; inset: 0; }
.final-cta-media img { height: 100%; object-fit: cover; }
.final-cta-overlay { background: linear-gradient(90deg, rgba(20,13,18,.86), rgba(20,13,18,.18)), linear-gradient(0deg, rgba(20,13,18,.4), transparent); }
.final-cta-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.final-cta-content > span { margin-bottom: 28px; color: var(--accent); font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.final-cta h2 { font-size: clamp(4.5rem, 9vw, 9.7rem); }
.final-cta h2 em { color: #f0c293; }
.circle-link { position: absolute; right: 4vw; bottom: 14%; width: 160px; height: 160px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; border-radius: 50%; color: var(--text); background: var(--paper); font-size: .86rem; font-weight: 700; line-height: 1.25; text-align: center; transition: transform .35s ease, background .35s ease; }
.circle-link i { font-style: normal; font-size: 1.3rem; }
.circle-link:hover { transform: rotate(8deg) scale(1.05); background: #fff; }

.site-footer { color: rgba(255,255,255,.72); background: #171216; }
.footer-main { min-height: 320px; display: grid; grid-template-columns: 1.2fr 1fr 1.15fr .8fr; gap: 70px; align-items: start; padding-top: 72px; }
.footer-brand { width: 124px; }
.footer-column { display: flex; flex-direction: column; gap: 7px; font-size: .88rem; }
.footer-column > span { margin-bottom: 12px; color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.footer-column p { margin: 0; }
.footer-column a:hover { color: #fff; }
.footer-bottom { min-height: 78px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.45); font-size: .74rem; }
.footer-bottom p { margin: 0; }

/* Reveal motion */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.72,.22,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Shared inner pages */
.inner-hero { position: relative; min-height: 620px; height: 70vh; max-height: 760px; color: #fff; overflow: hidden; background: var(--surface); }
.inner-hero-media, .inner-hero-overlay { position: absolute; inset: 0; }
.inner-hero-media img { height: 100%; object-fit: cover; }
.inner-hero-overlay { background: linear-gradient(90deg, rgba(20,13,18,.88), rgba(20,13,18,.28)), linear-gradient(0deg, rgba(20,13,18,.52), transparent 55%); }
.inner-hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: 80px; }
.inner-hero .eyebrow { color: var(--accent); }
.inner-hero h1 { max-width: 950px; margin: 0 0 28px; font-size: clamp(4.6rem, 9vw, 9.5rem); }
.inner-hero h1 em { color: #efc092; }
.inner-hero-copy { max-width: 560px; margin: 0; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.inner-hero-meta { position: absolute; right: 0; bottom: 44px; display: flex; gap: 44px; color: rgba(255,255,255,.62); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

/* Menu page */
.menu-page { background: var(--paper); }
.menu-toolbar-wrap { position: sticky; z-index: 30; top: 75px; padding: 16px 0; border-bottom: 1px solid var(--line); background: rgba(251,248,243,.91); backdrop-filter: blur(18px); }
.menu-toolbar { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.menu-toolbar::-webkit-scrollbar { display: none; }
.menu-filter { flex: 0 0 auto; padding: 11px 18px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: transparent; font-size: .76rem; font-weight: 700; cursor: pointer; transition: color .25s ease, background .25s ease, border-color .25s ease; }
.menu-filter:hover, .menu-filter.is-active { color: #fff; border-color: var(--primary); background: var(--primary); }
.menu-content { padding-top: 92px; padding-bottom: 130px; }
.menu-intro { max-width: 780px; margin-bottom: 88px; }
.menu-intro h2 { margin-bottom: 28px; font-size: clamp(3.3rem, 6vw, 6.2rem); }
.menu-intro p { max-width: 600px; color: var(--muted); }
.menu-section { margin-bottom: 110px; scroll-margin-top: 160px; }
.menu-section[hidden] { display: none; }
.menu-section-head { display: grid; grid-template-columns: minmax(260px, .62fr) 1fr; gap: 60px; padding-bottom: 28px; border-bottom: 1px solid var(--text); align-items: end; }
.menu-section-head p { margin: 0; color: var(--muted); }
.menu-section-title { display: flex; align-items: baseline; gap: 18px; }
.menu-section-title span { color: var(--primary); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.menu-section-title h2 { font-size: clamp(2.8rem, 5vw, 5.7rem); }
.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0 70px; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 6px 22px; padding: 27px 0 29px; border-bottom: 1px solid var(--line); }
.menu-item h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 2rem); font-weight: 500; line-height: 1.18; letter-spacing: -.025em; }
.menu-item-price { color: var(--primary); font-family: var(--serif); font-size: 1.18rem; font-weight: 600; white-space: nowrap; }
.menu-item p { grid-column: 1; max-width: 520px; margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.55; }
.menu-choice-labels { grid-column: 1 / -1 !important; margin-top: 2px !important; color: var(--primary) !important; font-size: .69rem !important; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.menu-item-tag { grid-column: 1 / -1; width: max-content; min-width: 92px; min-height: 28px; margin-top: 7px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box; border-radius: 999px; color: var(--primary); background: rgba(109,35,78,.08); font-size: .61rem; font-weight: 700; line-height: 1; letter-spacing: .08em; text-align: center; text-transform: uppercase; white-space: nowrap; }
.menu-feature { position: relative; min-height: 320px; margin-bottom: 90px; display: grid; grid-template-columns: .72fr 1.28fr; border-radius: var(--radius-lg); overflow: hidden; color: #fff; background: var(--surface); }
.menu-feature-media { position: relative; min-height: 320px; }
.menu-feature-media img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.menu-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 5vw, 68px); }
.menu-feature-copy .eyebrow { color: var(--accent); }
.menu-feature-copy h2 { margin-bottom: 22px; font-size: clamp(2.7rem, 4vw, 4.7rem); }
.menu-feature-copy h2 em { color: #e8a8c8; }
.menu-feature-copy p { max-width: 510px; margin: 0; color: rgba(255,255,255,.67); }
.menu-notice { display: flex; justify-content: space-between; gap: 30px; padding: 27px 0; border-block: 1px solid var(--line); color: var(--muted); font-size: .86rem; }
.menu-notice strong { color: var(--text); }

.menu-subgroup-title {
  grid-column: 1 / -1;
  margin: 46px 0 0;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--text);
  color: var(--primary);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -.025em;
}

.menu-subgroup-title:first-child {
  margin-top: 32px;
}

/* Contact page */
.contact-page { background: var(--paper); }
.contact-cards { position: relative; z-index: 3; margin-top: -72px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-card { min-height: 250px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; padding: 34px; border: 1px solid rgba(255,255,255,.4); border-radius: var(--radius); background: var(--paper); box-shadow: 0 22px 70px rgba(32,16,26,.12); }
.contact-card:nth-child(2) { color: #fff; background: var(--primary); }
.contact-card-icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; opacity: .7; }
.contact-card-icon svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.contact-card small { color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.contact-card:nth-child(2) small { color: rgba(255,255,255,.6); }
.contact-card h2 { margin: 8px 0 0; font-size: clamp(1.7rem, 2.8vw, 2.5rem); line-height: 1.15; letter-spacing: -.03em; }
.contact-card > a { font-size: .8rem; font-weight: 700; }
.contact-hours-section { padding-bottom: 0; }
.contact-hours-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 140px); padding: clamp(42px, 6vw, 82px); border-radius: var(--radius-lg); color: #fff; background: var(--surface); }
.contact-hours-intro .eyebrow { color: var(--accent); }
.contact-hours-intro h2 { margin-bottom: 22px; font-size: clamp(3.2rem, 5.5vw, 6rem); }
.contact-hours-intro > p { max-width: 480px; margin-bottom: 30px; color: rgba(255,255,255,.65); }
.contact-hours-list { margin: 0; border-top: 1px solid rgba(255,255,255,.16); }
.contact-hours-list div { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.contact-hours-list dt { color: rgba(255,255,255,.62); }
.contact-hours-list dd { margin: 0; font-family: var(--serif); font-size: 1.15rem; }
.location-section { padding-top: clamp(88px, 9vw, 140px); }
.location-card { position: relative; min-height: 620px; border-radius: var(--radius-lg); overflow: hidden; color: #fff; }
.location-card > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.location-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,13,18,.9), rgba(20,13,18,.1)); }
.location-content { position: relative; z-index: 2; min-height: 620px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(45px, 8vw, 120px); }
.location-content .eyebrow { color: var(--accent); }
.location-content h2 { max-width: 750px; margin-bottom: 28px; font-size: clamp(3.5rem, 7vw, 7.2rem); }
.location-content h2 em { color: #f0c293; }
.location-content p { margin-bottom: 34px; color: rgba(255,255,255,.72); }

/* Standard WordPress pages and fallbacks */
.generic-page { min-height: 72vh; padding-top: clamp(170px, 16vw, 240px); background: var(--paper); }
.generic-page-inner { max-width: 900px; }
.generic-page h1 { max-width: 850px; margin-bottom: 36px; font-size: clamp(3.8rem, 8vw, 8rem); }
.generic-page p { max-width: 680px; color: var(--muted); }
.generic-page .hero-actions { margin-top: 34px; }
.generic-entry-content > * { max-width: 760px; }
.generic-entry-content img { border-radius: var(--radius); }

@media (max-width: 1100px) {
  :root { --page: min(100% - 48px, 1100px); }
  .nav-shell { grid-template-columns: 90px 1fr 130px; }
  .desktop-nav { gap: 20px; }
  .story-grid { grid-template-columns: 1fr 420px; gap: 70px; }
  .story-body { grid-template-columns: 1fr; gap: 14px; }
  .story-visual { min-height: 630px; }
  .dish-grid { grid-template-columns: 1fr 1fr; }
  .dish-card-large { grid-row: span 2; transform: none; }
  .dish-card { min-height: 480px; }
  .home-lunch-list { grid-template-columns: 1fr 1fr; }
  .category-board { grid-template-columns: 1.15fr .85fr; }
  .category-image { margin-left: 38px; }
  .values-grid { gap: 70px; }
  .footer-main { grid-template-columns: .8fr 1fr 1.2fr .8fr; gap: 32px; }
  .menu-items { gap: 0 38px; }
}

@media (max-width: 820px) {
  :root { --page: calc(100% - 40px); --header-height: 82px; }
  .site-header.is-scrolled .nav-shell { height: 70px; }
  .site-header.is-scrolled .brand img { width: 50px; transform: translateY(10px); }
  .nav-shell { display: flex; justify-content: space-between; }
  .brand { width: 60px; }
  .brand img { width: 60px; transform: translateY(11px); }
  .desktop-nav, .nav-cta { display: none; }
  .nav-tools { margin-left: auto; }
  .menu-toggle { display: block; }
  body.menu-open .site-header { inset: 0 0 auto; height: 100svh; transform: none; background: #1c141a; }
  .mobile-menu { position: fixed; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: space-between; padding: 128px 22px 35px; color: #fff; background: #1c141a; visibility: hidden; opacity: 0; transform: translateY(-20px); transition: visibility .35s, opacity .35s ease, transform .35s ease; }
  .mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; }
  .mobile-menu nav { border-top: 1px solid var(--line-light); }
  .mobile-menu nav a { display: flex; align-items: baseline; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line-light); font-family: var(--serif); font-size: clamp(2rem, 9vw, 3.6rem); line-height: 1; }
  .mobile-menu nav span { color: var(--accent); font-family: var(--sans); font-size: .65rem; }
  .mobile-menu-foot { display: flex; justify-content: space-between; align-items: end; color: rgba(255,255,255,.58); font-size: .76rem; }
  .mobile-menu-foot a { color: #fff; font-size: .95rem; font-weight: 700; }
  .mobile-menu-foot p { max-width: 170px; margin: 0; text-align: right; }
  .hero-media { left: 0; }
  .hero-shade { background: linear-gradient(90deg, rgba(23,17,22,.88), rgba(23,17,22,.18)), linear-gradient(0deg, rgba(19,12,17,.75), transparent 55%); }
  .hero h1 { font-size: clamp(4.5rem, 14vw, 7.5rem); }
  .hero-aside { display: none; }
  .open-card { right: 24px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-copy { max-width: 680px; }
  .story-body { grid-template-columns: 1fr 1fr; gap: 28px; }
  .story-visual { min-height: 680px; max-width: 600px; width: 90%; margin-inline: auto; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p { max-width: 600px; }
  .category-board { grid-template-columns: 1fr; }
  .category-image { display: none; }
  .category-row { grid-template-columns: 40px 1fr 32px; }
  .category-row small { display: none; }
  .experience-notes { right: 22px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-intro { position: relative; top: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 340px 230px 260px; }
  .gallery-a { grid-row: 1 / 3; }
  .gallery-b { grid-column: 2; }
  .gallery-c { grid-column: 2; grid-row: 2; }
  .gallery-d { grid-column: 1 / 3; grid-row: 3; }
  .visit-grid { grid-template-columns: 1fr; }
  .hours-card { width: min(100%, 550px); }
  .footer-main { grid-template-columns: 1fr 1fr; min-height: 480px; }
  .inner-hero-meta { display: none; }
  .menu-toolbar-wrap { top: 69px; }
  .menu-section-head { grid-template-columns: 1fr; gap: 22px; }
  .menu-items { grid-template-columns: 1fr; }
  .menu-feature { grid-template-columns: 1fr; }
  .menu-feature-media { min-height: 280px; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .contact-card:last-child { grid-column: 1 / -1; min-height: 190px; }
  .contact-hours-panel { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 560px) {
  :root { --page: calc(100% - 32px); --radius: 14px; --radius-lg: 24px; }
  .section { padding: 88px 0; }
  h2 { font-size: clamp(3rem, 13.5vw, 4.5rem); }
  .eyebrow { margin-bottom: 20px; }
  .hero { min-height: 720px; height: 100svh; }
  .hero-media img { object-position: 56% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(23,17,22,.78), rgba(23,17,22,.24)), linear-gradient(0deg, rgba(19,12,17,.84), rgba(19,12,17,.05) 62%); }
  .hero-content { justify-content: flex-end; padding-top: 100px; padding-bottom: 150px; }
  .hero h1 { margin-bottom: 22px; font-size: clamp(3.8rem, 17.5vw, 5.3rem); }
  .hero-copy { margin-bottom: 28px; font-size: .98rem; line-height: 1.55; }
  .hero-actions { width: 100%; }
  .hero-actions .button { min-width: 0; flex: 1; padding: 0 18px; font-size: .75rem; }
  .open-card { left: 16px; right: 16px; bottom: 18px; min-width: 0; }
  .hero-scroll { display: none; }
  .story-grid { gap: 65px; }
  .story-copy h2 { font-size: clamp(3.2rem, 14vw, 4.6rem); }
  .story-body { margin-top: 32px; grid-template-columns: 1fr; }
  .story-visual { min-height: 510px; width: 100%; }
  .story-image-main { inset: 0 6% 0 5%; }
  .story-image-float { right: -4%; bottom: 4%; width: 43%; border-width: 6px; }
  .story-stamp { top: 2%; left: -2%; width: 112px; height: 112px; }
  .story-stamp strong { font-size: 1.75rem; }
  .story-stamp span { font-size: .52rem; }
  .section-heading { margin-bottom: 44px; gap: 24px; }
  .dish-grid { display: flex; margin-right: -16px; padding-right: 16px; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .dish-grid::-webkit-scrollbar { display: none; }
  .dish-card { min-width: 82vw; min-height: 520px; scroll-snap-align: center; }
  .home-lunch { margin-top: 78px; padding: 30px 22px; }
  .home-lunch-head { grid-template-columns: 1fr; gap: 24px; }
  .home-lunch-list { grid-template-columns: 1fr; }
  .home-lunch-list article > span { font-size: 1.2rem; }
  .section-action { margin-top: 36px; text-align: left; }
  .category-row { min-height: 86px; }
  .category-row strong { font-size: 2rem; }
  .category-row:hover, .category-row.is-active { padding-left: 6px; }
  .experience { min-height: 690px; }
  .experience-media img { object-position: 60% center; }
  .experience blockquote { font-size: clamp(3rem, 14vw, 4.8rem); }
  .experience-notes { left: 16px; right: 16px; bottom: 24px; flex-direction: row; justify-content: space-between; gap: 8px; }
  .experience-notes span { flex: 1; flex-direction: column; align-items: flex-start; gap: 6px; font-size: .55rem; }
  .value-list article { grid-template-columns: 38px 1fr; padding: 30px 0; }
  .gallery-head { align-items: flex-start; flex-direction: column; gap: 22px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 180px 210px; gap: 9px; }
  .gallery-a { grid-column: 1 / 3; grid-row: 1; }
  .gallery-b { grid-column: 1; grid-row: 2 / 4; }
  .gallery-c { grid-column: 2; grid-row: 2; }
  .gallery-d { grid-column: 2; grid-row: 3; }
  .visit-grid { gap: 55px; }
  .visit-actions .button { width: 100%; }
  .hours-card { padding: 28px 24px; transform: none; }
  .final-cta { min-height: 650px; }
  .final-cta-media img { object-position: 45% center; }
  .final-cta h2 { font-size: clamp(4rem, 17vw, 5.7rem); }
  .circle-link { right: 20px; bottom: 11%; width: 120px; height: 120px; }
  .footer-main { grid-template-columns: 1fr; min-height: 0; padding: 60px 0; gap: 34px; }
  .footer-brand { width: 104px; }
  .footer-bottom { min-height: 105px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
  .inner-hero { min-height: 590px; height: 78svh; }
  .inner-hero-media img { object-position: 60% center; }
  .inner-hero h1 { font-size: clamp(4rem, 18vw, 5.8rem); }
  .inner-hero-content { justify-content: flex-end; padding-bottom: 70px; }
  .menu-toolbar { width: auto; margin-left: 16px; margin-right: 0; padding-right: 16px; }
  .menu-content { padding-top: 70px; padding-bottom: 90px; }
  .menu-intro { margin-bottom: 60px; }
  .menu-section { margin-bottom: 75px; }
  .menu-section-head { padding-bottom: 20px; }
  .menu-item { padding: 23px 0; }
  .menu-item h3 { font-size: 1.45rem; }
  .menu-feature { margin-bottom: 75px; }
  .menu-feature-media { min-height: 220px; }
  .menu-feature-copy { padding: 38px 26px 45px; }
  .menu-notice { flex-direction: column; }
  .contact-cards { grid-template-columns: 1fr; margin-top: -38px; }
  .contact-card, .contact-card:last-child { min-height: 205px; grid-column: auto; }
  .contact-hours-panel { padding: 36px 24px; }
  .location-section { padding-top: 72px; }
  .location-card, .location-content { min-height: 590px; }
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* Responsive hardening: symmetric gutters and no page-level horizontal overflow. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
iframe {
  max-width: 100%;
}

.nav-shell > *,
.story-grid > *,
.dish-grid > *,
.category-board > *,
.visit-grid > *,
.footer-main > *,
.menu-section-head > *,
.menu-items > *,
.contact-cards > *,
.contact-hours-panel > * {
  min-width: 0;
}

.home-lunch-list article,
.menu-item {
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
}

.home-lunch-list article > span,
.home-lunch-extras p,
.menu-item h3,
.menu-item p,
.footer-column a,
.contact-card h2,
.location-content p {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.contact-card > div:nth-child(2) {
  width: 100%;
  min-width: 0;
}

.contact-card h2 {
  font-size: clamp(1.35rem, 2.35vw, 2.25rem);
}

.menu-toolbar {
  justify-content: center;
  flex-wrap: wrap;
  overflow: visible;
}

.menu-filter {
  flex: 0 1 auto;
}

@media (max-width: 820px) {
  .footer-main {
    align-items: start;
  }

  .contact-card,
  .contact-card:last-child {
    min-width: 0;
  }

  .menu-toolbar {
    row-gap: 10px;
  }
}

@media (max-width: 560px) {
  .dish-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-right: 0;
    padding-right: 0;
    gap: 16px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .dish-card,
  .dish-card-large {
    width: 100%;
    min-width: 0;
    min-height: 460px;
    transform: none;
    scroll-snap-align: none;
  }

  .menu-toolbar {
    width: var(--page);
    margin-inline: auto;
    padding-right: 0;
  }

  .menu-filter {
    padding-inline: 14px;
  }

  .contact-card,
  .contact-card:last-child {
    padding: 27px;
  }

  .home-lunch-day summary {
    gap: 14px;
  }

  .home-lunch-day summary span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .home-lunch-day summary small {
    flex: 0 0 auto;
  }

  .footer-column,
  .footer-column a {
    max-width: 100%;
  }
}

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