@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --red: #b72d2a;
  --red-dark: #8f1f25;
  --gold: #e2a82a;
  --green: #2f704d;
  --green-dark: #1f5037;
  --ink: #101714;
  --ink-soft: #1b2520;
  --paper: #fff9f5;
  --paper-alt: #f4eeea;
  --white: #ffffff;
  --muted: #65706a;
  --line: rgba(16, 23, 20, 0.12);
  --glass-light: rgba(255, 255, 255, 0.68);
  --glass-dark: rgba(16, 23, 20, 0.72);
  --glass-border: rgba(255, 255, 255, 0.6);
  --shadow-sm: 0 12px 30px rgba(16, 23, 20, 0.1);
  --shadow-md: 0 24px 60px rgba(16, 23, 20, 0.16);
  --shadow-lg: 0 36px 90px rgba(16, 23, 20, 0.24);
  --radius: 8px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Jost", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  font-size: 56px;
}

h3 {
  font-size: 25px;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  color: #34413a;
  font-size: 20px;
  line-height: 1.65;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.eyebrow.light {
  color: var(--gold);
}

.glass-light,
.glass-dark {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.glass-light {
  background: var(--glass-light);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), var(--shadow-md);
}

.glass-dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: var(--glass-dark);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), var(--shadow-lg);
}

.glass-light::before,
.glass-dark::before {
  position: absolute;
  inset: 0 auto 0 -65%;
  width: 42%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
  transition: transform 0.55s ease;
}

.glass-light:hover::before,
.glass-dark:hover::before {
  transform: translateX(390%) skewX(-18deg);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass-light {
    background: rgba(255, 255, 255, 0.96);
  }

  .glass-dark {
    background: rgba(16, 23, 20, 0.96);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 32px rgba(16, 23, 20, 0.08);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(16, 23, 20, 0.14);
}

.nav {
  display: flex;
  min-height: calc(var(--header-height) - 3px);
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand:hover img {
  transform: scale(1.04) rotate(-1deg);
  filter: drop-shadow(0 10px 18px rgba(183, 45, 42, 0.18));
}

.brand-copy {
  display: grid;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.22s ease;
}

.nav-links a::after {
  position: absolute;
  right: 16px;
  bottom: 4px;
  left: 16px;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--red);
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(183, 45, 42, 0.22);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  flex: 0 0 2px;
  margin: 3px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Buttons */
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 13px 28px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.button::before {
  position: absolute;
  inset: 0 auto 0 -70%;
  z-index: -1;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: transform 0.55s ease;
}

.button:hover::before {
  transform: translateX(400%) skewX(-18deg);
}

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

.button-primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(183, 45, 42, 0.24);
}

.button-primary:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  box-shadow: 0 18px 34px rgba(143, 31, 37, 0.28);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.text-link span {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Home hero */
.home-hero {
  position: relative;
  display: grid;
  height: min(820px, calc(100svh - var(--header-height)));
  min-height: 640px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  inset: -4%;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 49%;
  animation: heroZoom 16s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(8, 12, 10, 0.52), rgba(8, 12, 10, 0.42) 42%, rgba(8, 12, 10, 0.72)),
    linear-gradient(90deg, rgba(8, 12, 10, 0.3), transparent 30%, transparent 70%, rgba(8, 12, 10, 0.3));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 940px;
  justify-items: center;
  padding: 70px 0 110px;
  text-align: center;
}

.hero-emblem {
  width: 74px;
  height: 96px;
  margin-bottom: 18px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.34));
  animation: emblemFloat 4.5s ease-in-out infinite;
}

.hero-overline {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-hero h1 {
  font-size: 100px;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
}

.hero-copy {
  max-width: 710px;
  margin: 22px auto 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-inner > * {
  animation: heroEnter 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-inner > :nth-child(1) { animation-delay: 0.05s; }
.hero-inner > :nth-child(2) { animation-delay: 0.17s; }
.hero-inner > :nth-child(3) { animation-delay: 0.29s; }
.hero-inner > :nth-child(4) { animation-delay: 0.41s; }
.hero-inner > :nth-child(5) { animation-delay: 0.53s; }

.hero-scroll {
  position: absolute;
  right: 32px;
  bottom: 90px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll span {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.62);
}

.category-dock {
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: -68px;
  padding: 12px;
}

.category-link {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-right: 1px solid rgba(16, 23, 20, 0.1);
  transition: background 0.25s ease, transform 0.25s ease;
}

.category-link:last-child {
  border-right: 0;
}

.category-link:hover {
  background: rgba(255, 255, 255, 0.66);
  transform: translateY(-3px);
}

.category-link img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 6px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-link:hover img {
  transform: scale(1.05);
}

.category-link span {
  display: grid;
  min-width: 0;
  line-height: 1.2;
}

.category-link strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 17px;
}

.category-link small {
  margin-top: 5px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Shared sections */
.section {
  padding: 110px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 720px;
}

.section-heading.centered {
  display: grid;
  justify-items: center;
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered > p {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
}

/* Home story */
.story-section {
  padding-top: 130px;
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 90px;
}

.editorial-images {
  position: relative;
  min-height: 690px;
}

.editorial-main {
  width: 76%;
  height: 630px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.editorial-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transition: transform 0.7s ease;
}

.editorial-main:hover img {
  transform: scale(1.035);
}

.editorial-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 49%;
  margin: 0;
  padding: 8px;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.editorial-float img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 5px;
  object-fit: cover;
}

.editorial-float figcaption {
  padding: 12px 8px 6px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 16px;
  text-align: center;
}

.story-copy h2,
.about-copy h2 {
  margin-bottom: 24px;
}

.story-copy > p:not(.eyebrow),
.about-copy > p:not(.eyebrow) {
  color: #46514b;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-stats div {
  display: grid;
  gap: 4px;
}

.story-stats strong {
  color: var(--red);
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
}

.story-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.value-band {
  padding: 60px 0;
  border-top: 1px solid rgba(226, 168, 42, 0.35);
  border-bottom: 1px solid rgba(226, 168, 42, 0.35);
  background: var(--ink);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 18px;
  min-height: 168px;
  padding: 30px;
}

.value-item svg,
.principle-card svg,
.contact-method svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.value-item h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.value-item p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.featured-section {
  background: var(--white);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.dish-card {
  overflow: hidden;
  border: 1px solid rgba(16, 23, 20, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.dish-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.dish-card:hover .dish-image img {
  transform: scale(1.06);
}

.dish-body {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
}

.dish-type {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.dish-body h3 {
  font-size: 23px;
}

.dish-price {
  color: var(--red);
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  white-space: nowrap;
}

.visit-band,
.about-food-band,
.visit-details {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.visit-media,
.visit-overlay,
.about-food-media,
.about-food-shade,
.visit-details-media,
.visit-details-shade {
  position: absolute;
  inset: 0;
}

.visit-media,
.about-food-media {
  inset: -4%;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
}

.visit-media img,
.about-food-media img,
.visit-details-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-overlay,
.about-food-shade,
.visit-details-shade {
  background: linear-gradient(90deg, rgba(8, 12, 10, 0.88), rgba(8, 12, 10, 0.5) 55%, rgba(8, 12, 10, 0.62));
}

.visit-content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 850px;
  justify-items: center;
  text-align: center;
}

.visit-content h2 {
  font-size: 64px;
}

.visit-content > p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px auto 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

/* Inner page heroes */
.inner-hero {
  position: relative;
  display: grid;
  min-height: 500px;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.inner-hero-media,
.inner-hero-shade {
  position: absolute;
  inset: 0;
}

.inner-hero-media {
  inset: -4%;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero-shade {
  background: linear-gradient(90deg, rgba(8, 12, 10, 0.9), rgba(8, 12, 10, 0.54) 58%, rgba(8, 12, 10, 0.34)), linear-gradient(0deg, rgba(8, 12, 10, 0.54), transparent 58%);
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 100px 0 82px;
}

.inner-hero-content > * {
  animation: heroEnter 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.inner-hero-content > :nth-child(1) { animation-delay: 0.08s; }
.inner-hero-content > :nth-child(2) { animation-delay: 0.2s; }
.inner-hero-content > :nth-child(3) { animation-delay: 0.32s; }
.inner-hero-content > :nth-child(4) { animation-delay: 0.44s; }

.inner-hero h1 {
  max-width: 880px;
  font-size: 72px;
}

.inner-hero-content > p:not(.hero-overline) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.about-story {
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 90px;
}

.chef-scene {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-dark);
  box-shadow: var(--shadow-lg);
}

.chef-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(226, 168, 42, 0.28), transparent 42%), linear-gradient(20deg, rgba(183, 45, 42, 0.32), transparent 50%);
}

.chef-backdrop::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(226, 168, 42, 0.42);
  border-radius: 50%;
  content: "";
}

.chef-portrait {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 82%;
  max-height: 94%;
  object-fit: contain;
  transform: translateX(50%);
}

.chef-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  padding: 18px 22px;
}

.chef-note span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.chef-note strong {
  margin-top: 4px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
}

.about-copy .button {
  margin-top: 18px;
}

.values-section {
  background: var(--paper-alt);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.principle-card {
  min-height: 330px;
  padding: 36px;
}

.principle-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(183, 45, 42, 0.16);
  font-family: "Fraunces", Georgia, serif;
  font-size: 56px;
}

.principle-card svg {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin-bottom: 44px;
  stroke: var(--green);
}

.principle-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.principle-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.about-food-content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 800px;
  justify-items: center;
  text-align: center;
}

.about-food-content > img {
  width: 68px;
  height: 88px;
  margin-bottom: 12px;
  object-fit: contain;
  animation: emblemFloat 4.5s ease-in-out infinite;
}

.about-food-content h2 {
  margin-bottom: 28px;
  font-size: 60px;
}

/* Menu */
.menu-hero .inner-hero-media img {
  object-position: center 55%;
}

.menu-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.menu-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.vegan {
  background: #73b66b;
  box-shadow: 0 0 0 3px rgba(115, 182, 107, 0.18);
}

.legend-dot.gluten-free {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(226, 168, 42, 0.18);
}

.menu-nav-wrap {
  position: sticky;
  top: var(--header-height);
  z-index: 80;
  overflow: visible;
  border-width: 0 0 1px;
  border-radius: 0;
}

.menu-nav-wrap::before {
  display: none;
}

.menu-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-nav::-webkit-scrollbar {
  display: none;
}

.menu-nav a {
  position: relative;
  display: inline-flex;
  min-height: 64px;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 22px;
  color: #45514a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.menu-nav a::after {
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transition: transform 0.24s ease;
}

.menu-nav a:hover,
.menu-nav a.active {
  color: var(--red);
}

.menu-nav a.active::after {
  transform: scaleX(1);
}

.menu-content {
  padding: 96px 0 120px;
  background: var(--white);
}

.menu-stack {
  display: grid;
  gap: 104px;
}

.menu-section {
  scroll-margin-top: 24px;
}

.menu-banner {
  position: relative;
  aspect-ratio: 3 / 1;
  max-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.menu-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.menu-section:hover .menu-banner > img {
  transform: scale(1.025);
}

.menu-banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 12, 10, 0.72), rgba(8, 12, 10, 0.12) 65%);
}

.menu-banner-title {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
}

.menu-banner-title > span {
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px;
}

.menu-banner-title p {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-banner-title h2 {
  font-size: 32px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  margin-top: 28px;
}

.menu-row {
  display: flex;
  min-width: 0;
  min-height: 108px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.menu-grid.compact .menu-row {
  min-height: 74px;
  align-items: center;
  padding: 18px 0;
}

.menu-row > div {
  min-width: 0;
}

.menu-row h3 {
  font-size: 20px;
  line-height: 1.25;
}

.menu-row p {
  max-width: 480px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.menu-row > strong {
  flex: 0 0 auto;
  color: var(--red);
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
  white-space: nowrap;
}

.item-tag {
  display: inline-flex;
  margin-top: 7px;
  padding: 3px 7px;
  border: 1px solid rgba(47, 112, 77, 0.24);
  border-radius: 4px;
  background: rgba(47, 112, 77, 0.08);
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.menu-faq {
  border-top: 1px solid var(--line);
  background: var(--paper-alt);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 88px;
}

.faq-heading h2 {
  margin-bottom: 22px;
  font-size: 52px;
}

.faq-heading > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid rgba(16, 23, 20, 0.18);
}

.faq-list details {
  border-bottom: 1px solid rgba(16, 23, 20, 0.18);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 20px 54px 20px 0;
  color: var(--ink);
  cursor: pointer;
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(183, 45, 42, 0.28);
  border-radius: 50%;
  color: var(--red);
  content: "+";
  font-family: "Jost", Arial, sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 31px;
  text-align: center;
  transform: translateY(-50%);
  transition: transform 0.22s ease, background 0.22s ease;
}

.faq-list details[open] summary::after {
  background: var(--red);
  color: var(--white);
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  max-width: 690px;
  padding: 0 48px 24px 0;
  color: var(--muted);
}

/* Contact */
.contact-section {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 70px;
}

.contact-intro h2 {
  font-size: 48px;
  margin-bottom: 22px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-method {
  z-index: 1;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-method:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.contact-method svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  stroke: var(--red);
}

.contact-method span {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
}

.contact-method small {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-method strong {
  overflow-wrap: anywhere;
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
}

.contact-method em {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.contact-form {
  z-index: 1;
  padding: 38px;
}

.form-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.form-heading h2 {
  font-size: 38px;
}

.form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.field label span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(16, 23, 20, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 142px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(183, 45, 42, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8b938e;
}

.form-submit {
  align-items: start;
}

.form-submit .button {
  width: fit-content;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  min-height: 20px;
  color: var(--green);
  font-weight: 700;
}

.visit-details {
  min-height: 480px;
}

.visit-details-shade {
  background: linear-gradient(90deg, rgba(8, 12, 10, 0.9), rgba(8, 12, 10, 0.56));
}

.visit-details-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.visit-details-grid h2 {
  max-width: 640px;
  font-size: 58px;
}

.hours-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 30px;
}

.hours-panel > div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.hours-panel span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.hours-panel strong {
  font-size: 14px;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  padding: 72px 0 26px;
  border-top: 1px solid rgba(226, 168, 42, 0.32);
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 1fr 0.8fr;
  gap: 46px;
}

.footer-brand img {
  width: 116px;
  height: 116px;
  margin-bottom: 18px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.64);
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.footer-column h3 {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "Jost", Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-column a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

/* Cinematic reveals */
.js.is-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.65s ease var(--reveal-delay, 0ms), transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}

.js.is-ready [data-reveal="clip"] {
  transform: translate3d(0, 28px, 0) scale(0.97);
}

.js.is-ready [data-reveal].in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

[data-parallax] {
  will-change: transform;
}

@keyframes heroEnter {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.055); }
}

@keyframes emblemFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* Tablet */
@media (max-width: 1100px) {
  h2 {
    font-size: 48px;
  }

  .category-dock {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-link:nth-child(3) {
    border-right: 0;
  }

  .category-link:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(16, 23, 20, 0.1);
  }

  .story-grid,
  .about-story-grid {
    gap: 54px;
  }

  .editorial-images {
    min-height: 610px;
  }

  .editorial-main {
    height: 560px;
  }

  .visit-content h2,
  .about-food-content h2 {
    font-size: 54px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.7fr 1fr;
  }

  .footer-grid > :last-child {
    grid-column: 3;
  }
}

/* Mobile navigation and layouts */
@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(calc(100% - 36px), 720px);
  }

  h2 {
    font-size: 42px;
  }

  .nav {
    min-height: calc(var(--header-height) - 3px);
  }

  .brand img {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 2px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    min-height: 50px;
  }

  .nav-links a::after {
    right: auto;
    bottom: 7px;
    width: 28px;
  }

  .no-js {
    --header-height: 130px;
  }

  .no-js .nav {
    flex-wrap: wrap;
    gap: 0;
    padding-bottom: 7px;
  }

  .no-js .nav-toggle {
    display: none;
  }

  .no-js .nav-links {
    position: static;
    order: 3;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 4px 0 0;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .no-js .nav-links a {
    min-width: 0;
    justify-content: center;
    padding: 0 4px;
    font-size: 11px;
  }

  .no-js .nav-links a::after {
    right: 10px;
    left: 10px;
    width: auto;
  }

  .home-hero {
    height: calc(100svh - var(--header-height));
    min-height: 650px;
  }

  .home-hero h1 {
    font-size: 72px;
  }

  .hero-inner {
    padding-bottom: 98px;
  }

  .hero-scroll {
    display: none;
  }

  .category-dock {
    display: flex;
    margin-top: -54px;
    padding: 10px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .category-dock::-webkit-scrollbar {
    display: none;
  }

  .category-link {
    min-width: 220px;
    flex: 0 0 220px;
    border-right: 1px solid rgba(16, 23, 20, 0.1);
    border-bottom: 0 !important;
    scroll-snap-align: start;
  }

  .section {
    padding: 84px 0;
  }

  .story-section {
    padding-top: 112px;
  }

  .story-grid,
  .about-story-grid,
  .contact-layout,
  .visit-details-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-grid,
  .about-story-grid,
  .contact-layout {
    gap: 54px;
  }

  .editorial-images {
    min-height: 650px;
  }

  .editorial-main {
    width: 78%;
    height: 590px;
  }

  .value-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .value-item {
    min-height: 0;
  }

  .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dish-card:last-child {
    grid-column: 1 / -1;
  }

  .visit-band,
  .about-food-band {
    min-height: 520px;
  }

  .inner-hero {
    min-height: 440px;
  }

  .inner-hero h1 {
    font-size: 58px;
  }

  .about-story-grid {
    max-width: 680px;
  }

  .chef-scene {
    min-height: 620px;
  }

  .menu-nav-wrap {
    top: var(--header-height);
  }

  .menu-nav {
    justify-content: flex-start;
  }

  .menu-nav a {
    min-height: 58px;
    padding: 0 18px;
  }

  .menu-grid {
    column-gap: 30px;
  }

  .contact-layout {
    max-width: 680px;
  }

  .visit-details-grid {
    gap: 36px;
  }

  .hours-panel {
    max-width: 620px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid > :last-child {
    grid-column: auto;
  }
}

/* Small phones */
@media (max-width: 580px) {
  .container {
    width: calc(100% - 28px);
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 22px;
  }

  .lead {
    font-size: 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-links {
    right: 14px;
    left: 14px;
  }

  .home-hero {
    min-height: 620px;
  }

  .hero-media img {
    object-position: 48% 52%;
  }

  .hero-inner {
    padding: 46px 0 92px;
  }

  .hero-emblem {
    width: 58px;
    height: 76px;
    margin-bottom: 12px;
  }

  .hero-overline {
    font-size: 12px;
  }

  .home-hero h1 {
    font-size: 52px;
  }

  .hero-copy {
    margin: 18px auto 24px;
    font-size: 17px;
  }

  .hero-actions,
  .visit-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .button,
  .visit-actions .button {
    width: min(100%, 300px);
  }

  .category-link {
    min-width: 205px;
    flex-basis: 205px;
  }

  .section {
    padding: 70px 0;
  }

  .story-section {
    padding-top: 100px;
  }

  .faq-heading h2 {
    font-size: 38px;
  }

  .faq-list summary {
    min-height: 70px;
    padding-right: 48px;
    font-size: 18px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .editorial-images {
    min-height: 520px;
  }

  .editorial-main {
    width: 84%;
    height: 470px;
  }

  .editorial-float {
    width: 52%;
  }

  .editorial-float figcaption {
    font-size: 13px;
  }

  .story-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .story-stats div {
    grid-template-columns: 74px 1fr;
    align-items: center;
  }

  .value-band {
    padding: 42px 0;
  }

  .value-item {
    grid-template-columns: 42px 1fr;
    padding: 24px 20px;
  }

  .value-item svg {
    width: 36px;
    height: 36px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .dish-grid {
    grid-template-columns: 1fr;
  }

  .dish-card:last-child {
    grid-column: auto;
  }

  .visit-content h2,
  .about-food-content h2 {
    font-size: 42px;
  }

  .inner-hero {
    min-height: 410px;
  }

  .inner-hero-content {
    padding: 76px 0 58px;
  }

  .inner-hero h1 {
    font-size: 46px;
  }

  .inner-hero-content > p:not(.hero-overline) {
    font-size: 17px;
  }

  .chef-scene {
    min-height: 520px;
  }

  .chef-note {
    right: 12px;
    bottom: 12px;
    padding: 14px 16px;
  }

  .principle-card {
    min-height: 290px;
    padding: 28px;
  }

  .menu-legend {
    display: grid;
  }

  .menu-content {
    padding: 70px 0 90px;
  }

  .menu-stack {
    gap: 78px;
  }

  .menu-section {
    scroll-margin-top: 8px;
  }

  .menu-banner {
    aspect-ratio: 1.35 / 1;
  }

  .menu-banner-title {
    right: 14px;
    bottom: 14px;
    left: 14px;
    gap: 14px;
    padding: 14px 16px;
  }

  .menu-banner-title > span {
    font-size: 24px;
  }

  .menu-banner-title h2 {
    font-size: 25px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .menu-row,
  .menu-grid.compact .menu-row {
    min-height: 0;
    padding: 18px 0;
  }

  .menu-row h3 {
    font-size: 18px;
  }

  .menu-row > strong {
    font-size: 17px;
  }

  .contact-method {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .contact-method svg {
    width: 30px;
    height: 30px;
  }

  .contact-method strong {
    font-size: 16px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .form-heading h2 {
    font-size: 34px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .hours-panel {
    grid-template-columns: 1fr;
  }

  .visit-details-grid h2 {
    font-size: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-parallax] {
    transform: none !important;
  }

  .js.is-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
