:root {
  --ink: #201a15;
  --ink-soft: #3c322a;
  --paper: #f1eadf;
  --paper-light: #faf6ee;
  --paper-deep: #ddd0be;
  --oak: #9f744d;
  --oak-dark: #654527;
  --clay: #a84e33;
  --clay-dark: #793620;
  --sage: #67705c;
  --concrete: #a9a49a;
  --white: #fffdf8;
  --line: rgba(43, 32, 23, 0.18);
  --line-light: rgba(255, 250, 242, 0.2);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
  --section: clamp(88px, 11vw, 160px);
}

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

html { scroll-behavior: smooth; }

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

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

::selection { background: var(--clay); color: var(--white); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.scroll-line {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 3px;
  pointer-events: none;
}

.scroll-line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--clay);
}

.section-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--clay-dark);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow.light { color: #d7b18d; }

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

h1, h2, blockquote {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 em, h2 em {
  color: var(--clay);
  font-style: italic;
  font-weight: 400;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6.3vw, 6rem);
  line-height: 0.91;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

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

.button-clay { background: var(--clay); color: var(--white); }
.button-clay:hover, .button-clay:focus-visible { background: #be5c3c; }

.button-paper { background: var(--paper-light); color: var(--ink); }
.button-paper:hover, .button-paper:focus-visible { background: #fff; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 7px 0;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span { transition: transform 200ms ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(5px); }
.light-link { color: var(--paper-light); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  display: flex;
  width: 100%;
  height: 88px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: height 240ms ease, background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  height: 72px;
  border-color: var(--line);
  background: rgba(241, 234, 223, 0.96);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.brand { display: flex; align-items: center; gap: 12px; line-height: 1; }
.brand img { width: 38px; height: 48px; object-fit: contain; filter: brightness(0) invert(1); transition: filter 200ms ease; }
.is-scrolled .brand img, .menu-visible .brand img { filter: none; }
.brand-copy { display: grid; gap: 5px; }
.brand-copy strong { font-size: 0.92rem; letter-spacing: 0.09em; }
.brand-copy small { font-size: 0.57rem; font-weight: 650; letter-spacing: 0.17em; text-transform: uppercase; opacity: 0.7; }

.site-nav { display: flex; align-items: center; gap: clamp(12px, 2.2vw, 32px); }
.site-nav > a:not(.nav-call) { position: relative; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.site-nav > a:not(.nav-call)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; content: ""; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 200ms ease; }
.site-nav > a:not(.nav-call):hover::after, .site-nav > a:not(.nav-call):focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-call {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 14px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.5);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.is-scrolled .nav-call, .menu-visible .nav-call { border-color: var(--ink); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  background: transparent;
}

.nav-toggle span { display: block; width: 20px; height: 1px; margin: 6px auto; background: currentColor; transition: transform 200ms ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: #1f1b16;
  color: var(--white);
}

.hero-photo, .hero-shade { position: absolute; inset: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 0%; transform: scale(1.035); animation: hero-in 1.5s cubic-bezier(.2,.7,.2,1) both; }
.hero-shade { background: linear-gradient(90deg, rgba(18, 15, 12, .86) 0%, rgba(18,15,12,.66) 42%, rgba(18,15,12,.1) 78%), linear-gradient(0deg, rgba(18,15,12,.58), transparent 50%); }

@keyframes hero-in { from { opacity: .3; transform: scale(1.1); } to { opacity: 1; transform: scale(1.035); } }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  min-height: max(760px, 100svh);
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 50px;
  align-items: end;
  margin-inline: auto;
  padding: 160px 0 82px;
}

.hero-copy { position: relative; max-width: 820px; }

.hero h1 { max-width: 10ch; margin-bottom: 28px; font-size: clamp(4.2rem, 9vw, 8.9rem); line-height: .82; text-shadow: 0 4px 32px rgba(0,0,0,.24); }
.hero h1 em { color: #d78b6e; }
.hero-word { display: block; min-height: .82em; }
.hero-word span { display: inline-block; opacity: 1; transform: translateY(0); transition: opacity 280ms ease, transform 280ms cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.hero-word span.is-changing { opacity: 0; transform: translateY(18px); }
.hero-lead { max-width: 620px; margin-bottom: 34px; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }

.hero-note { padding: 24px 0 12px 22px; border-left: 1px solid rgba(255,255,255,.35); }
.distance-mark { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.25); }
.hero-note .distance-mark span { color: var(--white); font-family: var(--serif); font-size: 2.65rem; font-weight: 500; line-height: .8; }
.distance-mark sup { margin-left: 2px; font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .08em; vertical-align: top; }
.distance-mark small { color: rgba(255,255,255,.68); font-size: .6rem; font-weight: 700; letter-spacing: .14em; line-height: 1.55; text-transform: uppercase; }
.hero-note p { margin-bottom: 8px; color: #d7b18d; font-size: .64rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.hero-note strong, .hero-note span { display: block; }
.hero-note strong { margin-bottom: 8px; font-family: var(--serif); font-size: 1.8rem; font-weight: 500; }
.hero-note span { color: rgba(255,255,255,.58); font-size: .76rem; }

.manifesto { display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px 9%; padding-top: var(--section); padding-bottom: var(--section); }
.manifesto-heading { align-self: start; }
.manifesto-copy { max-width: 550px; align-self: end; padding-top: 72px; color: #62574d; }
.manifesto-copy .lead-paragraph { color: var(--ink); font-family: var(--serif); font-size: clamp(1.35rem, 2.25vw, 2rem); line-height: 1.38; }
.manifesto-copy .text-link { margin-top: 16px; }

.material-composition { position: relative; grid-column: 1 / -1; min-height: 660px; margin-top: 42px; }
.material-main { position: absolute; top: 0; left: 0; width: 54%; height: 610px; margin: 0; overflow: hidden; }
.material-main::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.2); content: ""; pointer-events: none; }
.material-main img { width: 100%; height: 100%; object-fit: cover; }
.material-small { position: absolute; right: 0; bottom: 0; width: 52%; height: 420px; margin: 0; overflow: hidden; border: 18px solid var(--paper); }
.material-small img { width: 100%; height: 100%; object-fit: cover; }
.material-stamp { position: absolute; top: 80px; right: 4%; display: grid; width: 210px; aspect-ratio: 1; place-content: center; border: 1px solid var(--oak); border-radius: 50%; background: var(--paper); text-align: center; transform: rotate(5deg); }
.material-stamp::after { position: absolute; inset: 10px; border: 1px dashed rgba(101,69,39,.45); border-radius: inherit; content: ""; }
.material-stamp span { font-family: var(--serif); font-size: 2.7rem; line-height: 1; }
.material-stamp p { margin: 10px 0 0; font-size: .62rem; font-weight: 700; letter-spacing: .12em; line-height: 1.55; text-transform: uppercase; }

.tasting { position: relative; overflow: hidden; background: var(--ink); color: var(--paper-light); }
.tasting::before { position: absolute; inset: 0; background: radial-gradient(circle at 15% 80%, rgba(168,78,51,.32), transparent 29%), repeating-linear-gradient(90deg, transparent 0 119px, rgba(255,255,255,.025) 120px); content: ""; }
.tasting-arch { position: absolute; top: -120px; left: -8vw; width: 42vw; min-width: 480px; height: 790px; border: 1px solid rgba(255,255,255,.12); border-radius: 240px 240px 0 0; transform: rotate(-8deg); }
.tasting-inner { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 12%; padding-top: var(--section); padding-bottom: var(--section); }
.tasting-intro { align-self: center; }
.tasting-intro h2 em { color: #d78b6e; }
.tasting-intro > p:not(.eyebrow) { max-width: 500px; margin: 30px 0; color: rgba(255,255,255,.64); }
.tasting-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px 28px; }
.tasting-list { margin: 0; padding: 0; list-style: none; }
.tasting-list li { display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: center; min-height: 108px; border-bottom: 1px solid var(--line-light); }
.tasting-list li:first-child { border-top: 1px solid var(--line-light); }
.tasting-list li > span { color: #d7b18d; font-family: var(--serif); font-style: italic; }
.tasting-list strong, .tasting-list small { display: block; }
.tasting-list strong { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 500; }
.tasting-list small { margin-top: 2px; color: rgba(255,255,255,.52); font-size: .69rem; letter-spacing: .06em; }

.brand-story { display: grid; grid-template-columns: minmax(190px, 250px) minmax(0, 1fr); gap: clamp(44px, 8vw, 118px); align-items: stretch; padding-top: var(--section); padding-bottom: var(--section); scroll-margin-top: 85px; }
.brand-story-logo { display: flex; min-height: 620px; align-items: center; justify-content: center; padding-right: clamp(28px, 4vw, 58px); border-right: 1px solid var(--line); }
.brand-story-logo img { width: clamp(165px, 16vw, 220px); height: auto; }
.brand-story-main { align-self: center; }
.brand-story-main h2 { max-width: 9ch; font-size: clamp(3.8rem, 6.6vw, 7.2rem); line-height: .82; }
.brand-story-main h2 em { color: var(--clay); }
.brand-story-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(270px, .85fr); gap: clamp(42px, 6vw, 84px); align-items: start; margin-top: 62px; }
.brand-story-copy { display: grid; gap: 22px; }
.brand-story-copy p { margin: 0; color: #65594f; }
.brand-story-copy p:first-child { color: var(--ink); font-family: var(--serif); font-size: clamp(1.25rem, 1.8vw, 1.55rem); line-height: 1.45; }
.brand-story-quote { position: relative; margin: 0; padding: 48px 0 32px; border-top: 1px solid var(--oak-dark); border-bottom: 1px solid var(--line); }
.brand-story-quote > span { position: absolute; top: 18px; left: 0; color: var(--clay); font-family: var(--serif); font-size: 4.8rem; line-height: 1; }
.brand-story-quote blockquote { position: relative; margin: 0; font-size: clamp(1.65rem, 2.7vw, 2.55rem); line-height: 1.05; }
.brand-story-quote figcaption { margin-top: 26px; color: var(--clay-dark); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.dishes { padding-top: 20px; padding-bottom: var(--section); }
.dishes-header { display: grid; grid-template-columns: 1.15fr .65fr; gap: 10%; align-items: end; margin-bottom: 46px; }
.dishes-header > p { max-width: 440px; margin-bottom: 4px; color: #65594f; }
.dish-stage { position: relative; max-width: 1500px; min-height: 720px; margin-inline: auto; background: var(--ink); }
.dish-feature { position: absolute; inset: 0; display: grid; grid-template-columns: 1.45fr .55fr; color: var(--white); }
.dish-feature[hidden] { display: none; }
.dish-photo { min-width: 0; overflow: hidden; }
.dish-photo img { width: 100%; height: 100%; object-fit: cover; animation: dish-in 650ms cubic-bezier(.2,.7,.2,1) both; }
.dish-caption { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(36px, 5vw, 72px); background: var(--ink); animation: caption-in 500ms ease both; }
.dish-caption > span { color: #d7b18d; font-size: .63rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.dish-caption h3 { margin: 20px 0; font-family: var(--serif); font-size: clamp(2.7rem, 4.2vw, 4.8rem); font-weight: 500; line-height: .92; }
.dish-caption p { color: rgba(255,255,255,.6); }
.dish-caption strong { margin-top: 22px; font-family: var(--serif); font-size: 1.4rem; font-weight: 500; }

@keyframes dish-in { from { opacity: 0; transform: scale(1.025); } to { opacity: 1; transform: scale(1); } }
@keyframes caption-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.dish-controls { display: grid; grid-template-columns: repeat(3, 1fr); }
.dish-controls button { display: flex; min-height: 72px; align-items: center; justify-content: center; gap: 14px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; cursor: pointer; font-size: .71rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; transition: background 200ms ease, color 200ms ease; }
.dish-controls button:first-child { border-left: 1px solid var(--line); }
.dish-controls button span { color: var(--clay); font-family: var(--serif); font-size: 1.05rem; font-style: italic; }
.dish-controls button.is-active, .dish-controls button:hover { background: var(--paper-light); }

.menu-section { padding-top: 0; padding-bottom: var(--section); scroll-margin-top: 85px; }
.menu-header { display: grid; grid-template-columns: 1fr .7fr; gap: 10%; align-items: end; }
.menu-header-copy { padding-bottom: 4px; }
.menu-header-copy p { max-width: 430px; color: #65594f; }
.download-link { display: flex; max-width: 430px; align-items: center; justify-content: space-between; padding: 15px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.download-link span { color: var(--clay); font-size: 1rem; }
.menu-browser { display: grid; grid-template-columns: minmax(220px, 270px) minmax(0, 1fr); gap: clamp(42px, 7vw, 110px); margin-top: 60px; }
.menu-tabs { display: flex; align-self: start; flex-direction: column; margin: 0; overflow: hidden; border-top: 1px solid var(--ink); counter-reset: menu-tab; scrollbar-width: none; }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tabs button { display: grid; min-height: 72px; grid-template-columns: 28px 1fr auto; gap: 13px; align-items: center; padding: 0 16px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-align: left; text-transform: uppercase; transition: background 180ms ease, color 180ms ease, padding 180ms ease; }
.menu-tabs button::before { color: var(--clay); content: "0" counter(menu-tab); counter-increment: menu-tab; font-family: var(--serif); font-size: .85rem; font-style: italic; letter-spacing: 0; }
.menu-tabs button::after { content: "→"; font-size: .9rem; opacity: .35; }
.menu-tabs button[aria-selected="true"] { border-color: var(--ink); background: var(--ink); color: var(--white); }
.menu-tabs button[aria-selected="true"]::before { color: #d7b18d; }
.menu-tabs button[aria-selected="true"]::after { opacity: 1; }
.menu-panels { margin-top: 0; border-top: 1px solid var(--ink); }
.menu-panel { display: grid; grid-template-columns: 1fr; }
.menu-panel[hidden] { display: none; }
.menu-panel article { display: grid; min-height: 108px; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.menu-panel h3 { margin: 0 0 5px; font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 500; line-height: 1.15; }
.menu-panel p { margin: 0; color: #72665b; font-size: .8rem; line-height: 1.45; }
.catering { display: grid; min-height: 760px; grid-template-columns: 1.12fr .88fr; background: #36352e; color: var(--white); scroll-margin-top: 70px; }
.catering-image { position: relative; min-height: 650px; overflow: hidden; }
.catering-image::after { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 72%, rgba(54,53,46,.65)); content: ""; }
.catering-image img { width: 100%; height: 100%; object-fit: cover; }
.catering-copy { display: flex; flex-direction: column; justify-content: center; max-width: 620px; padding: var(--gutter); }
.catering-copy h2 { max-width: 8ch; font-size: clamp(3rem, 5.4vw, 5.6rem); }
.catering-copy > p:not(.eyebrow) { margin: 30px 0; color: rgba(255,255,255,.65); }
.catering-copy ul { margin: 0 0 34px; padding: 0; list-style: none; }
.catering-copy li { display: grid; grid-template-columns: 44px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line-light); font-size: .8rem; letter-spacing: .04em; }
.catering-copy li span { color: #d7b18d; font-family: var(--serif); font-style: italic; }
.catering-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }

.interior { padding-top: var(--section); padding-bottom: var(--section); scroll-margin-top: 70px; }
.interior-header { display: grid; grid-template-columns: 1fr; justify-items: start; margin-bottom: 70px; text-align: left; }
.interior-header .eyebrow { justify-content: flex-start; }
.interior-gallery { display: grid; gap: clamp(70px, 9vw, 130px); }
.gallery-chapter { display: grid; gap: 28px; }
.gallery-chapter-heading { display: grid; grid-template-columns: 72px minmax(0, 1fr); align-items: start; max-width: 620px; padding-top: 20px; border-top: 1px solid var(--ink); }
.gallery-chapter-heading > span { color: var(--brick); font-family: var(--serif); font-size: 1.3rem; font-style: italic; }
.gallery-chapter-heading h3 { margin: 0 0 6px; font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.6rem); font-weight: 400; line-height: .95; }
.gallery-chapter-heading p { margin: 0; color: #70665b; font-size: .9rem; line-height: 1.55; }
.gallery-chapter--garden .gallery-chapter-heading { margin-left: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 62px; gap: 14px; }
.gallery-shot { position: relative; overflow: hidden; padding: 0; border: 0; background: var(--concrete); cursor: zoom-in; }
.gallery-shot::before { position: absolute; inset: 12px; z-index: 1; border: 1px solid rgba(255,255,255,.58); content: ""; opacity: 0; transition: opacity 220ms ease; pointer-events: none; }
.gallery-shot::after { position: absolute; right: 20px; bottom: 17px; z-index: 2; color: #fff; content: attr(data-gallery-number); font-family: var(--sans); font-size: .67rem; font-weight: 800; letter-spacing: .14em; opacity: .82; text-shadow: 0 1px 8px rgba(0,0,0,.55); }
.gallery-shot:hover::before, .gallery-shot:focus-visible::before { opacity: 1; }
.gallery-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.gallery-shot:hover img { transform: scale(1.035); }
.gallery-shot--8x6 { grid-column: span 8; grid-row: span 6; }
.gallery-shot--4x6 { grid-column: span 4; grid-row: span 6; }
.gallery-shot--7x5 { grid-column: span 7; grid-row: span 5; }
.gallery-shot--5x5 { grid-column: span 5; grid-row: span 5; }
.gallery-shot--12x5 { grid-column: span 12; grid-row: span 5; }
.gallery-note { margin: -30px 0 0; color: var(--oak-dark); font-family: var(--serif); font-size: 1.45rem; line-height: 1.25; }
.gallery-note span { color: #70665b; font-family: var(--sans); font-size: .65rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.values { padding: var(--section) 0; background: var(--ink); color: var(--white); }
.values-header { display: grid; grid-template-columns: 1fr; margin-bottom: 70px; }
.values-header h2 { max-width: 11ch; }
.values-header h2 em { color: #d78b6e; }
.value-lines article { display: grid; grid-template-columns: 70px 1fr .8fr; gap: 40px; align-items: baseline; padding: 30px 0; border-top: 1px solid var(--line-light); }
.value-lines article:last-child { border-bottom: 1px solid var(--line-light); }
.value-lines span { color: #d7b18d; font-family: var(--serif); font-size: 1.1rem; font-style: italic; }
.value-lines h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 3rem); font-weight: 500; }
.value-lines p { margin: 0; color: rgba(255,255,255,.55); }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; padding-top: var(--section); padding-bottom: var(--section); scroll-margin-top: 70px; }
.contact-lead > p:not(.eyebrow) { max-width: 520px; margin: 28px 0; color: #65594f; }
.phone-link { display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 2px 20px; max-width: 530px; align-items: center; padding: 18px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.phone-link small { color: var(--clay-dark); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.phone-link strong { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.7rem); font-weight: 500; }
.phone-link span { grid-row: 1 / -1; grid-column: 2; color: var(--clay); font-size: 1.6rem; transition: transform 200ms ease; }
.phone-link:hover span { transform: translate(4px, -4px); }
.contact-board { align-self: end; border-top: 1px solid var(--ink); }
.contact-board > div { display: grid; grid-template-columns: .5fr 1fr; gap: 0px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-board span { color: var(--clay-dark); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-board strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; line-height: 1.45; }
.contact-board a:not(strong a), .contact-board small { grid-column: 2; min-height: 44px; align-items: center; padding: 6px 0; color: #6c6056; font-size: 1rem; font-weight: 650; line-height: 1.5; }
.contact-board a:not(strong a) { display: inline-flex; width: fit-content; text-decoration: underline; text-decoration-color: rgba(108,96,86,.45); text-underline-offset: 4px; }
.contact-board small { display: flex; }

.final-cta { position: relative; display: grid; min-height: 700px; place-items: center; overflow: hidden; color: var(--white); text-align: center; }
.final-cta > img, .final-cta-overlay { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final-cta > img { object-position: center; }
.final-cta-overlay { background: linear-gradient(rgba(25,20,16,.45), rgba(25,20,16,.74)); }
.final-cta-copy { position: relative; z-index: 1; display: grid; justify-items: center; }
.final-cta-copy > img { width: 105px; height: 132px; object-fit: contain; filter: brightness(0) invert(1); opacity: .95; }
.final-cta-copy p { max-width: 760px; margin: 30px 0; font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 6.4rem); letter-spacing: -.045em; line-height: .95; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; min-height: 130px; padding: 28px var(--gutter); background: var(--ink); color: rgba(255,255,255,.65); }
.footer-brand { display: grid; gap: 4px; }
.footer-brand strong { color: var(--white); font-size: .82rem; letter-spacing: .1em; }
.footer-brand span { font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.site-footer > p { justify-self: end; margin: 0; font-size: .65rem; }

.lightbox { width: min(1100px, calc(100% - 32px)); max-width: none; max-height: calc(100svh - 32px); padding: 0; border: 0; background: transparent; cursor: zoom-out; overflow: visible; }
.lightbox::backdrop { background: rgba(19,15,12,.9); cursor: zoom-out; backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: calc(100svh - 32px); cursor: zoom-out; object-fit: contain; }
.lightbox button { position: absolute; top: -16px; right: -16px; z-index: 2; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: var(--ink); color: var(--white); cursor: pointer; font-size: 1.6rem; line-height: 1; }

.legal-main { padding: clamp(150px, 17vw, 230px) 0 var(--section); }
.legal-body .site-header { background: rgba(241,234,223,.97); color: var(--ink); }
.legal-intro { display: grid; max-width: 930px; gap: 26px; margin-bottom: clamp(70px, 9vw, 120px); }
.legal-intro h1 { margin: 0; font-family: var(--serif); font-size: clamp(3.5rem, 8vw, 7.5rem); font-weight: 400; letter-spacing: -.055em; line-height: .9; }
.legal-intro h1 em { color: var(--clay); font-weight: 400; }
.legal-intro > p:last-child { max-width: 700px; margin: 0; color: #70665b; font-size: clamp(1rem, 1.4vw, 1.2rem); }
.legal-content { display: grid; max-width: 930px; gap: 0; }
.legal-section { display: grid; grid-template-columns: 90px minmax(0, 1fr); gap: 30px; padding: 42px 0; border-top: 1px solid var(--line); }
.legal-section > span { color: var(--clay-dark); font-family: var(--serif); font-size: 1.25rem; font-style: italic; }
.legal-section h2 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 400; line-height: 1.1; }
.legal-section p { margin: 0 0 16px; color: #5f554c; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { margin: 0; padding-left: 20px; color: #5f554c; }
.legal-section li + li { margin-top: 8px; }
.legal-section a { text-decoration: underline; text-decoration-color: var(--oak); text-underline-offset: 4px; }
.legal-back { display: inline-flex; margin-top: 46px; }

.is-ready [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 800ms cubic-bezier(.2,.7,.2,1), transform 800ms cubic-bezier(.2,.7,.2,1); }
.is-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-nav { gap: 16px; }
  .site-nav > a:not(.nav-call) { font-size: .63rem; }
  .hero-inner { grid-template-columns: 1fr 220px; }
  .brand-story { grid-template-columns: 190px minmax(0, 1fr); gap: 52px; }
  .brand-story-logo { min-height: 580px; padding-right: 36px; }
  .dish-stage { min-height: 620px; }
  .catering { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .site-header { height: 72px; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; inset: 72px 0 auto; display: grid; gap: 0; padding: 22px var(--gutter) 32px; border-bottom: 1px solid var(--line); background: var(--paper); color: var(--ink); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity 200ms ease, transform 200ms ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a:not(.nav-call) { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .75rem; }
  .site-nav .nav-call { justify-content: center; margin-top: 18px; border-color: var(--ink); }

  .hero-inner { grid-template-columns: 1fr; align-content: end; padding-bottom: 60px; }
  .hero-note { width: min(100%, 360px); }
  .manifesto, .dishes-header, .menu-header, .contact { grid-template-columns: 1fr; }
  .manifesto-copy { padding-top: 0; }
  .material-composition { min-height: 570px; }
  .material-main { width: 68%; height: 500px; }
  .material-small { width: 52%; height: 330px; }
  .tasting-inner { grid-template-columns: 1fr; gap: 60px; }
  .tasting-list { margin-top: 0; }
  .brand-story { grid-template-columns: 150px minmax(0, 1fr); gap: 42px; }
  .brand-story-logo { min-height: 100%; padding-right: 30px; }
  .brand-story-main h2 { font-size: clamp(3.5rem, 9vw, 5.4rem); }
  .brand-story-content { grid-template-columns: 1fr; gap: 42px; margin-top: 48px; }
  .dish-stage { min-height: 780px; }
  .dish-feature { grid-template-columns: 1fr; grid-template-rows: 1.25fr .75fr; }
  .dish-caption { padding: 40px var(--gutter); }
  .dish-caption h3 { margin: 14px 0; }
  .menu-header-copy { margin-top: 30px; }
  .menu-browser { display: block; margin-top: 48px; }
  .menu-tabs { width: 100%; flex-direction: row; gap: 6px; overflow-x: auto; border-top: 0; }
  .menu-tabs button { display: block; flex: 1 0 auto; min-height: 48px; padding: 0 19px; border: 1px solid var(--line); text-align: center; }
  .menu-tabs button::before, .menu-tabs button::after { display: none; }
  .menu-panels { margin-top: 20px; }
  .catering { grid-template-columns: 1fr; }
  .catering-image { min-height: 480px; }
  .catering-image::after { background: linear-gradient(0deg, rgba(54,53,46,.55), transparent 42%); }
  .catering-copy { max-width: 760px; padding-top: 70px; padding-bottom: 70px; }
  .gallery-grid { grid-auto-rows: 52px; }
  .contact-board { margin-top: 20px; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; --section: 82px; }
  body { font-size: 15px; }
  .brand-copy strong { font-size: .78rem; }
  .brand-copy small { font-size: .5rem; }
  .brand img { width: 31px; height: 42px; }

  h2 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .hero { min-height: 780px; }
  .hero-photo img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(18,15,12,.83), rgba(18,15,12,.26)), linear-gradient(0deg, rgba(18,15,12,.78), transparent 60%); }
  .hero-inner { min-height: 780px; padding-top: 120px; padding-bottom: 38px; }
  .hero h1 { font-size: clamp(4rem, 21vw, 6.2rem); }
  .hero-lead { font-size: .94rem; }
  .hero-actions { gap: 20px; }
  .hero-note { padding: 16px 0 0 18px; }
  .hero-note .distance-mark span { font-size: 2.3rem; }

  .manifesto { gap: 32px; }
  .material-composition { min-height: 500px; margin-top: 12px; }
  .material-main { width: 82%; height: 390px; }
  .material-small { width: 68%; height: 260px; border-width: 10px; }
  .material-stamp { top: 32px; right: -10px; width: 145px; }
  .material-stamp span { font-size: 2rem; }
  .material-stamp p { font-size: .5rem; }

  .tasting-arch { min-width: 330px; height: 580px; }
  .tasting-inner { padding-bottom: calc(var(--section) + 42px); }
  .tasting-list { padding-bottom: 12px; }
  .tasting-list li { min-height: 116px; grid-template-columns: 48px 1fr; gap: 8px; padding: 14px 0; }
  .tasting-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .brand-story { grid-template-columns: 112px minmax(0, 1fr); gap: 24px; }
  .brand-story-logo { min-height: 100%; align-items: flex-start; padding-right: 20px; }
  .brand-story-logo img { width: 104px; }
  .brand-story-main h2 { font-size: clamp(2.9rem, 10.5vw, 3.7rem); }
  .brand-story-content { gap: 34px; margin-top: 38px; }
  .brand-story-copy { gap: 18px; }
  .brand-story-copy p:first-child { font-size: 1.18rem; }
  .brand-story-quote { padding-top: 42px; }
  .brand-story-quote blockquote { font-size: 1.65rem; }

  .dishes-header { margin-bottom: 28px; }
  .dishes-header > p { margin-top: 24px; }
  .dish-stage { min-height: 660px; }
  .dish-feature { grid-template-rows: 1.08fr .92fr; }
  .dish-caption { padding: 30px 24px; }
  .dish-caption p { margin-bottom: 0; }
  .dish-controls button { min-height: 62px; padding: 0 5px; font-size: .58rem; }
  .dish-controls button span { display: none; }

  .menu-tabs { width: calc(100% + 20px); }
  .menu-tabs button { min-height: 44px; padding: 0 15px; }
  .menu-panel { grid-template-columns: 1fr; }
  .menu-panel article { min-height: 105px; }

  .catering-image { min-height: 350px; }
  .catering-copy { padding: 64px 24px; }
  .catering-copy h2 { max-width: 9ch; }
  .catering-actions { align-items: flex-start; flex-direction: column; }

  .interior-header { justify-items: start; text-align: left; }
  .interior-header .eyebrow { justify-content: flex-start; }
  .interior-gallery { gap: 74px; }
  .gallery-chapter { gap: 20px; }
  .gallery-chapter-heading { grid-template-columns: 46px minmax(0, 1fr); }
  .gallery-chapter--garden .gallery-chapter-heading { margin-left: 0; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 92px; gap: 8px; }
  .gallery-shot--8x6, .gallery-shot--7x5, .gallery-shot--12x5 { grid-column: span 2; grid-row: span 3; }
  .gallery-shot--4x6, .gallery-shot--5x5 { grid-column: span 1; grid-row: span 3; }
  .gallery-note { margin-top: -18px; }

  .values-header { margin-bottom: 45px; }
  .value-lines article { grid-template-columns: 40px 1fr; gap: 12px; }
  .value-lines p { grid-column: 2; }

  .contact-board > div { grid-template-columns: 1fr; gap: 6px; }
  .contact-board a:not(strong a), .contact-board small { grid-column: 1; }
  .phone-link strong { font-size: clamp(1.5rem, 7.3vw, 2.1rem); }
  .final-cta { min-height: 620px; }
  .final-cta-copy { padding-inline: 20px; }
  .final-cta-copy p { font-size: clamp(2.75rem, 13vw, 4.4rem); }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer > p { justify-self: center; }
  .lightbox button { top: 8px; right: 8px; }
  .legal-main { padding-top: 120px; }
  .legal-section { grid-template-columns: 1fr; gap: 8px; padding: 34px 0; }
  .legal-body .site-nav { position: static; display: flex; width: auto; padding: 0; border: 0; background: transparent; opacity: 1; pointer-events: auto; transform: none; }
  .legal-body .site-nav > a { display: none; }
  .legal-body .site-nav > a:first-child { display: block; padding: 0; border: 0; font-size: .68rem; }
}

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