/* ============================================================
   GOURMAND — Modern American Cuisine
   Brand: Burgundy · Gold · Grey
   Type:  Lustria · Aleo · Lato (logo wordmark = Gemola)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500&family=Lustria&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700&display=swap');

/* -------- TOKENS -------- */
:root {
  /* Brand */
  --burgundy: #5b1144;
  --burgundy-deep: #3e0a2e;
  --burgundy-soft: rgba(91, 17, 68, 0.08);
  --gold: #ccbe92;
  --gold-deep: #b8a677;
  --gold-soft: rgba(204, 190, 146, 0.18);
  --grey: #e0dfde;
  --grey-warm: #ecebe8;
  --grey-deep: #c4c2bf;

  /* Working surfaces */
  --paper: #f5f4f1;
  --ivory: #faf8f3;
  --ink: #2a1822;
  --ink-soft: #5a4350;

  /* Lines */
  --rule: rgba(91, 17, 68, 0.18);
  --rule-soft: rgba(91, 17, 68, 0.10);
  --rule-gold: rgba(184, 166, 119, 0.45);

  /* Type */
  --display: 'Lustria', 'Didot', Georgia, serif;
  --tagline: 'Aleo', 'Georgia', serif;
  --body: 'Lato', 'Helvetica Neue', sans-serif;

  /* Layout */
  --edge: clamp(1.25rem, 4vw, 4rem);
  --gutter: clamp(1rem, 2.4vw, 2.4rem);
  --hairline: 0.5px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--body);
  background: var(--ivory);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

/* film grain overlay — soft warmth, never noise */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.36  0 0 0 0 0.07  0 0 0 0 0.27  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* -------- TYPOGRAPHY -------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--burgundy);
}

.display-mega {
  font-family: var(--display);
  font-size: clamp(3.5rem, 9vw, 9rem);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--burgundy);
}

.display-large {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  line-height: 1.05;
  color: var(--burgundy);
}

.display-medium {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.1;
  color: var(--burgundy);
}

.eyebrow,
.label {
  font-family: var(--tagline);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.tagline {
  font-family: var(--tagline);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.body-text {
  font-family: var(--body);
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.7;
  font-weight: 300;
  color: var(--ink);
}

.body-text--lead {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  line-height: 1.5;
  color: var(--ink);
}

p { max-width: 62ch; }
p + p { margin-top: 1em; }

a { color: var(--burgundy); text-decoration: none; }

::selection {
  background: var(--burgundy);
  color: var(--ivory);
}

/* -------- LAYOUT PRIMITIVES -------- */

.shell {
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}

.frame { padding: 0 var(--edge); position: relative; }

.rule { height: var(--hairline); background: var(--rule); width: 100%; }

.hr-section {
  margin: clamp(3rem, 6vw, 6rem) var(--edge);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--gold-deep);
}

.hr-section::before,
.hr-section::after {
  content: "";
  flex: 1;
  height: var(--hairline);
  background: var(--rule-gold);
  max-width: 240px;
}

.hr-section .ornament {
  width: 28px;
  height: 28px;
  background-image: url('brand/wave-gold.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.85;
}

/* -------- MASTHEAD + NAV -------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.92);
  border-bottom: var(--hairline) solid var(--rule-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.masthead__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.1rem var(--edge);
  gap: 1.5rem;
}

.masthead__edition,
.masthead__folio {
  font-family: var(--tagline);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy);
  opacity: 0.8;
}

.masthead__folio { text-align: right; }

.masthead__brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.masthead__brand img {
  height: 28px;
  width: auto;
  display: block;
}

.nav {
  border-bottom: var(--hairline) solid var(--rule-soft);
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav__inner {
  display: flex;
  justify-content: center;
  gap: clamp(1.6rem, 4vw, 4rem);
  padding: 0.95rem var(--edge);
}

.nav__link {
  position: relative;
  font-family: var(--tagline);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--burgundy);
  padding-bottom: 4px;
  transition: color 0.4s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__link[aria-current="page"] { color: var(--gold-deep); }

@media (max-width: 720px) {
  .masthead__edition { display: none; }
  .masthead__inner { grid-template-columns: 1fr 1fr; }
  .masthead__brand { justify-content: flex-start; }
  .masthead__folio { text-align: right; }
  .nav__inner { gap: 1rem; flex-wrap: wrap; padding: 0.75rem var(--edge); }
  .nav__link { font-size: 0.62rem; letter-spacing: 0.26em; }
}

/* -------- HERO -------- */

.hero {
  position: relative;
  min-height: 92vh;
  padding: clamp(3rem, 6vw, 6rem) var(--edge);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(204,190,146,0.16) 0%, transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--grey-warm) 100%);
  overflow: hidden;
}

.hero__top {
  position: absolute;
  top: clamp(2rem, 4vw, 3rem);
  left: var(--edge);
  right: var(--edge);
  display: flex;
  justify-content: space-between;
  font-family: var(--tagline);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burgundy);
  opacity: 0.78;
}

.hero__wave {
  width: clamp(80px, 9vw, 120px);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  opacity: 0;
  animation: fade-up 1.2s ease 0.1s forwards;
}

.hero__wordmark {
  width: clamp(280px, 60vw, 720px);
  height: auto;
  display: block;
  opacity: 0;
  animation: fade-up 1.4s ease 0.35s forwards;
}

.hero__rule {
  width: 60px;
  height: 1px;
  background: var(--gold-deep);
  margin: clamp(2rem, 3.5vw, 3rem) auto clamp(1.5rem, 2.5vw, 2rem);
  opacity: 0;
  animation: fade-in 1.4s ease 0.7s forwards;
}

.hero__tag {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink);
  max-width: 38ch;
  opacity: 0;
  animation: fade-up 1.4s ease 0.85s forwards;
}

.hero__meta {
  position: absolute;
  bottom: clamp(2rem, 4vw, 3rem);
  left: var(--edge);
  right: var(--edge);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--tagline);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burgundy);
  opacity: 0;
  animation: fade-up 1.4s ease 1.1s forwards;
}

.hero__meta-center {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__meta-center::before,
.hero__meta-center::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold-deep);
}

@keyframes fade-up {
  0% { transform: translateY(24px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@media (max-width: 720px) {
  .hero__meta { flex-direction: column; gap: 0.8rem; text-align: center; position: static; margin-top: 3rem; }
  .hero__top { font-size: 0.58rem; }
}

/* -------- PAGE TITLE (interior pages) -------- */

.page-title {
  padding: clamp(5rem, 9vw, 9rem) var(--edge) clamp(3rem, 5vw, 5rem);
  text-align: center;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--grey-warm) 100%);
  border-bottom: var(--hairline) solid var(--rule-gold);
}

.page-title__index {
  font-family: var(--tagline);
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.page-title__index::before,
.page-title__index::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold-deep);
}

.page-title h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 1;
  color: var(--burgundy);
  letter-spacing: -0.005em;
}

.page-title__credit {
  margin: 1.8rem auto 0;
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  line-height: 1.55;
  max-width: 56ch;
  color: var(--ink);
}

/* -------- SECTION SHELL -------- */

.section {
  padding: clamp(4rem, 7vw, 7rem) var(--edge);
  position: relative;
}

.section__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.section__head .label {
  display: inline-block;
  margin-bottom: 1rem;
}

.section__head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.1;
  color: var(--burgundy);
  max-width: 26ch;
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

@media (max-width: 900px) {
  .two-col, .three-col { grid-template-columns: 1fr; }
}

/* -------- PHOTOGRAPHIC FIELD -------- */

.plate {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse 120% 80% at 30% 20%, rgba(204,190,146,0.22) 0%, transparent 65%),
    linear-gradient(150deg, #3a0d2c 0%, var(--burgundy-deep) 60%, #1d0617 100%);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--gold-soft);
}

.plate::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.45;
}

.plate--gold {
  background:
    radial-gradient(ellipse 80% 60% at 50% 60%, rgba(91,17,68,0.10) 0%, transparent 70%),
    linear-gradient(160deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-color: var(--gold-deep);
}

.plate--grey {
  background:
    linear-gradient(160deg, var(--grey-warm) 0%, var(--grey-deep) 100%);
  border-color: var(--rule-soft);
}

.plate--gold::before,
.plate--grey::before { mix-blend-mode: multiply; opacity: 0.3; }

.plate__caption {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(245, 244, 241, 0.85);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.plate--gold .plate__caption,
.plate--grey .plate__caption { color: var(--burgundy); }

.plate__caption-num {
  font-style: normal;
  font-family: var(--tagline);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.plate__wave {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 38px;
  height: 38px;
  background-image: url('brand/wave-gold.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.85;
}

.plate--gold .plate__wave,
.plate--grey .plate__wave {
  background-image: url('brand/wave-burgundy.png');
}

/* -------- PULL QUOTE / MANIFESTO -------- */

.manifesto {
  padding: clamp(5rem, 9vw, 9rem) var(--edge);
  text-align: center;
  background: var(--ivory);
}

.manifesto--grey { background: var(--grey-warm); }

.manifesto__wave {
  width: 56px;
  margin: 0 auto clamp(2rem, 3vw, 2.5rem);
  display: block;
  opacity: 0.85;
}

.manifesto__lead {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 3.2rem);
  line-height: 1.2;
  color: var(--burgundy);
  max-width: 24ch;
  margin: 0 auto;
}

.manifesto__lead em,
.manifesto__lead .italic {
  font-style: italic;
  font-family: var(--body);
  font-weight: 300;
}

.manifesto__lead .accent { color: var(--gold-deep); }

.manifesto__attrib {
  margin-top: clamp(2rem, 3vw, 2.5rem);
  font-family: var(--tagline);
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* -------- SIGNATURE DISHES -------- */

.dishes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

.dish {
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  padding: clamp(2rem, 3vw, 2.6rem) clamp(1.6rem, 2.5vw, 2.2rem);
  text-align: center;
  transition: border-color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
}

.dish:hover {
  border-color: var(--gold-deep);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -32px rgba(91, 17, 68, 0.35);
}

.dish__num {
  font-family: var(--tagline);
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.4rem;
}

.dish__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.2;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.dish__desc {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 32ch;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .dishes { grid-template-columns: 1fr; }
}

/* -------- 1906 NUMERIC MOMENT -------- */

.year-block {
  padding: clamp(5rem, 9vw, 9rem) var(--edge);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--grey-warm);
}

.year-block__digits {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(6rem, 14vw, 14rem);
  line-height: 1;
  color: var(--burgundy);
  position: relative;
}

.year-block__digits .strike {
  position: relative;
  display: inline-block;
}

.year-block__digits .strike::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -6%;
  right: -6%;
  height: 2px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: left;
  animation: strike-grow 1.6s 0.4s cubic-bezier(.6,.05,.2,1) forwards;
}

@keyframes strike-grow { to { transform: scaleX(1); } }

.year-block__copy { max-width: 48ch; }

.year-block__copy .label { display: block; margin-bottom: 1rem; }

.year-block__copy h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--burgundy);
}

@media (max-width: 800px) {
  .year-block { grid-template-columns: 1fr; text-align: center; }
  .year-block__copy { margin: 0 auto; }
}

/* -------- INFO STRIP -------- */

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule-gold);
  border-bottom: 1px solid var(--rule-gold);
}

.info-cell {
  padding: clamp(2rem, 3vw, 2.6rem) clamp(1.2rem, 2.5vw, 2rem);
  border-right: var(--hairline) solid var(--rule-soft);
  text-align: center;
}

.info-cell:last-child { border-right: none; }

.info-cell__label {
  font-family: var(--tagline);
  font-size: 0.62rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

.info-cell__value {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.25;
  color: var(--burgundy);
}

.info-cell__value .italic {
  font-style: italic;
  font-family: var(--body);
  font-weight: 300;
}

@media (max-width: 800px) {
  .info-strip { grid-template-columns: repeat(2, 1fr); }
  .info-cell:nth-child(2) { border-right: none; }
  .info-cell:nth-child(1), .info-cell:nth-child(2) { border-bottom: var(--hairline) solid var(--rule-soft); }
}

/* -------- CTA BAND -------- */

.cta-band {
  padding: clamp(6rem, 11vw, 11rem) var(--edge);
  text-align: center;
  background: var(--burgundy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.3 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.35;
  pointer-events: none;
}

.cta-band__wave {
  width: 56px;
  margin: 0 auto 2rem;
  display: block;
  opacity: 0.95;
}

.cta-band__eyebrow {
  font-family: var(--tagline);
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.cta-band__line {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 5rem);
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 3rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band__line em,
.cta-band__line .italic {
  font-style: italic;
  font-family: var(--body);
  font-weight: 300;
  color: var(--gold);
}

/* -------- BUTTONS -------- */

.btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  font-family: var(--tagline);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  color: var(--ivory);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.5s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
  z-index: -1;
}

.btn:hover { color: var(--burgundy); }
.btn:hover::before { transform: scaleX(1); }

.btn--burgundy {
  color: var(--ivory);
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.btn--burgundy::before { background: var(--burgundy-deep); }
.btn--burgundy:hover { color: var(--gold); }

/* -------- MENU PAGE -------- */

.menu-section {
  padding: clamp(3.5rem, 6vw, 6rem) var(--edge);
  border-bottom: 1px solid var(--rule-gold);
}

.menu-section--gold {
  background: var(--grey-warm);
}

.menu-section__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.menu-section__num {
  font-family: var(--tagline);
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.menu-section__num::before,
.menu-section__num::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold-deep);
}

.menu-section__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.1;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.menu-section__intro {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 56ch;
  color: var(--ink-soft);
  margin: 0 auto;
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(3rem, 6vw, 6rem);
  list-style: none;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-item {
  padding: clamp(1.5rem, 2.2vw, 2.2rem) 0;
  border-bottom: var(--hairline) solid var(--rule-soft);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem 1.5rem;
  align-items: baseline;
}

.menu-item__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.2;
  color: var(--burgundy);
}

.menu-item__price {
  font-family: var(--tagline);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  white-space: nowrap;
}

.menu-item__desc {
  grid-column: 1 / -1;
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 52ch;
}

@media (max-width: 800px) {
  .menu-list { grid-template-columns: 1fr; }
}

/* -------- RESERVATION FORM -------- */

.reservation {
  padding: clamp(3rem, 6vw, 6rem) var(--edge) clamp(5rem, 9vw, 9rem);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
  background: var(--ivory);
}

.reservation__aside { position: sticky; top: 9rem; }

.reservation__aside h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
}

.reservation__aside p {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1rem;
}

.reservation__aside .info-line {
  font-family: var(--tagline);
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.6rem;
}

.reservation__aside .rule {
  margin: 2rem 0;
  background: var(--rule-gold);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--gold-deep);
  background: var(--paper);
}

.field {
  position: relative;
  padding: 1.5rem 1.4rem 1.2rem;
  border-bottom: var(--hairline) solid var(--rule-soft);
  border-right: var(--hairline) solid var(--rule-soft);
}

.field:nth-child(2n) { border-right: none; }

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

.field__label {
  font-family: var(--tagline);
  font-size: 0.6rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.6rem;
  display: block;
}

.field__input,
.field__select,
.field__textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--burgundy);
  padding: 0;
}

.field__select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%235b1144' stroke-width='1' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}

.field__textarea {
  resize: vertical;
  min-height: 6rem;
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
}

.field__input::placeholder,
.field__textarea::placeholder {
  color: rgba(91, 17, 68, 0.32);
  font-style: italic;
}

.form-submit {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.form-submit__note {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 38ch;
}

@media (max-width: 900px) {
  .reservation { grid-template-columns: 1fr; }
  .reservation__aside { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .field { border-right: none; }
}

/* -------- ABOUT — BIO -------- */

.bio {
  padding: clamp(4rem, 7vw, 7rem) var(--edge);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
}

.bio__portrait .plate {
  aspect-ratio: 3 / 4;
}

.bio__copy h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
  color: var(--burgundy);
  margin-bottom: 0.4rem;
}

.bio__role {
  font-family: var(--tagline);
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 2rem;
  display: block;
}

.bio__copy p {
  font-family: var(--body);
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.2rem;
  max-width: 52ch;
}

.bio__copy p:first-of-type {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 1.32rem;
  line-height: 1.55;
  color: var(--burgundy);
}

.bio__copy p:first-of-type::first-letter {
  font-family: var(--display);
  font-style: normal;
  font-size: 4.4rem;
  line-height: 0.85;
  float: left;
  margin: 0.05em 0.18em 0 -0.05em;
  color: var(--gold-deep);
  font-weight: 400;
}

@media (max-width: 900px) {
  .bio { grid-template-columns: 1fr; }
}

/* -------- TENETS -------- */

.tenets {
  padding: clamp(4rem, 7vw, 7rem) var(--edge);
  background: var(--grey-warm);
}

.tenets__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  list-style: none;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.tenet {
  padding: clamp(2rem, 3vw, 2.5rem);
  background: var(--ivory);
  border: 1px solid var(--rule-soft);
  text-align: center;
  transition: border-color 0.5s ease, transform 0.5s ease;
}

.tenet:hover { border-color: var(--gold-deep); transform: translateY(-4px); }

.tenet__num {
  font-family: var(--tagline);
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.4rem;
  display: block;
}

.tenet__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.2;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.tenet__body {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

@media (max-width: 800px) {
  .tenets__list { grid-template-columns: 1fr; }
}

/* -------- CONTACT -------- */

.contact-grid {
  padding: clamp(3rem, 5vw, 5rem) var(--edge);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule-gold);
  border-bottom: 1px solid var(--rule-gold);
  background: var(--ivory);
}

.contact-cell {
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(2rem, 3vw, 3rem);
  border-right: var(--hairline) solid var(--rule-soft);
  border-bottom: var(--hairline) solid var(--rule-soft);
  text-align: center;
}

.contact-cell:nth-child(2n) { border-right: none; }
.contact-cell:nth-last-child(-n+2) { border-bottom: none; }

.contact-cell__label {
  font-family: var(--tagline);
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.4rem;
}

.contact-cell__value {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.2;
  color: var(--burgundy);
}

.contact-cell__value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--rule-gold);
  transition: border-color 0.4s ease;
}

.contact-cell__value a:hover { border-color: var(--gold-deep); }

.contact-cell__sub {
  margin-top: 0.7rem;
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cell { border-right: none; }
  .contact-cell:nth-last-child(2) { border-bottom: var(--hairline) solid var(--rule-soft); }
}

/* map placeholder */
.map {
  margin: 0 var(--edge) clamp(4rem, 7vw, 7rem);
  position: relative;
  aspect-ratio: 21 / 9;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(91,17,68,0.06) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(91,17,68,0.06) 39px 40px),
    radial-gradient(circle at 50% 50%, rgba(204,190,146,0.18) 0%, transparent 60%),
    var(--paper);
  border: 1px solid var(--rule-gold);
}

.map__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.map__pin::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: var(--burgundy);
  border-radius: 50%;
  margin: 0 auto 0.8rem;
  box-shadow: 0 0 0 6px rgba(91,17,68,0.15), 0 0 0 14px rgba(91,17,68,0.06);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(91,17,68,0.15), 0 0 0 14px rgba(91,17,68,0.06); }
  50% { box-shadow: 0 0 0 10px rgba(91,17,68,0.10), 0 0 0 22px rgba(91,17,68,0.04); }
}

.map__pin-label {
  font-family: var(--tagline);
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--burgundy);
}

/* -------- FOOTER -------- */

.colophon {
  background: var(--burgundy);
  color: var(--ivory);
  padding: clamp(4rem, 6vw, 6rem) var(--edge) clamp(2rem, 3vw, 3rem);
  position: relative;
}

.colophon__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: clamp(3rem, 4vw, 4rem);
  align-items: start;
}

.colophon__brand img {
  width: 220px;
  max-width: 100%;
  display: block;
  margin-bottom: 1rem;
}

.colophon__brand-tag {
  font-family: var(--tagline);
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
}

.colophon__group h4 {
  font-family: var(--tagline);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.colophon__group ul { list-style: none; }

.colophon__group li {
  font-family: var(--body);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--ivory);
}

.colophon__group a {
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease;
}

.colophon__group a:hover { border-color: var(--gold); }

.colophon__group .italic { font-style: italic; opacity: 0.7; }

.colophon__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(204, 190, 146, 0.25);
  font-family: var(--tagline);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.colophon__bottom .italic {
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--gold);
  opacity: 0.75;
}

@media (max-width: 800px) {
  .colophon__top { grid-template-columns: 1fr 1fr; }
}

/* -------- SCROLL REVEAL -------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.2s cubic-bezier(.2,.7,.2,1), transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.2s cubic-bezier(.2,.7,.2,1), transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.20s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.30s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.40s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.50s; }

/* Condensed masthead once the hero has scrolled past */
.masthead { transition: padding 0.4s ease, background 0.4s ease; }
.masthead.is-condensed { background: rgba(250, 248, 243, 0.96); }
.masthead.is-condensed .masthead__inner { padding-top: 0.55rem; padding-bottom: 0.55rem; }
.masthead.is-condensed .masthead__brand img { height: 22px; transition: height 0.4s ease; }
.masthead__brand img { transition: height 0.4s ease; }

/* Hero parallax targets respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero__wave, .hero__wordmark, .hero__tag { transform: none !important; }
  .reveal, .reveal-stagger > * { transition-duration: 0.01s !important; }
  .glyph { animation-duration: 0.01s !important; }
  .strike::after { animation-duration: 0.01s !important; }
}

/* The 1906 strike triggers when scrolled into view (re-arm the keyframe) */
.year-block.is-visible .strike::after {
  animation: strike-grow 1.4s 0.2s cubic-bezier(.6,.05,.2,1) forwards;
}
.year-block:not(.is-visible) .strike::after {
  animation: none;
  transform: scaleX(0);
}

/* -------- UTILITIES -------- */
.center { text-align: center; }
.italic { font-style: italic; font-family: var(--body); font-weight: 300; }
.gold { color: var(--gold-deep); }
.burgundy { color: var(--burgundy); }
