/* ============================================================
   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;
  /* AA-passing text variant of gold-deep for use on light backgrounds
     (5.7:1 against ivory; 5.5:1 against grey-warm). Decorative gold rules,
     borders, and gold-on-burgundy keep using --gold-deep / --gold. */
  --gold-text: #766025;
  --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;
  scroll-behavior: smooth;
}

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

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-text);
}

.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(2rem, 3.5vw, 3.5rem) var(--edge);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--gold-text);
}

.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: 38px;
  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-text); }

@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: var(--burgundy-deep);
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  display: block;
  /* slow ken-burns drift while on screen */
  animation: hero-drift 28s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  0%   { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.10) translate3d(-1.5%, -1.2%, 0); }
}

/* darkening + warm-burgundy wash so the logo + type read against the photo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 110% 70% at 50% 50%, rgba(20, 8, 16, 0.0) 0%, rgba(20, 8, 16, 0.55) 100%),
    linear-gradient(180deg, rgba(91, 17, 68, 0.28) 0%, rgba(20, 8, 16, 0.55) 100%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none; }
}

.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(--gold);
  opacity: 0.95;
}

.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);
  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(--ivory);
  max-width: 38ch;
  text-shadow: 0 1px 22px rgba(20, 8, 16, 0.55);
  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(--gold);
  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);
}

/* Soft glow behind the wordmark image so it lifts off the photo */
.hero__wordmark {
  filter: drop-shadow(0 4px 30px rgba(20, 8, 16, 0.4));
}

@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-text);
  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(3rem, 5vw, 5rem) 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: 1000px) {
  .three-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .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);
}

/* When a .plate carries an inline background-image, suppress the duotone
   gradient so the photo can carry the visual on its own. */
.plate[style*="background-image"] { background-image: none; }
.plate[style*="background-image"]::before { display: none; }
.plate--photo { background: none; }
.plate--photo::before { display: none; }
.plate--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.plate--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 8, 16, 0.0) 50%, rgba(20, 8, 16, 0.55) 100%);
  pointer-events: none;
}

.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-text);
}

.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');
}

/* -------- PHOTO STRIP (full-bleed) -------- */

.photo-strip {
  position: relative;
  width: 100%;
  height: clamp(50vh, 70vh, 720px);
  overflow: hidden;
  isolation: isolate;
}

.photo-strip__img {
  --strip-y: 0px;
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: translate3d(0, calc(var(--strip-y) * 0.6), 0) scale(1.18);
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}

.photo-strip.is-visible .photo-strip__img {
  transform: translate3d(0, var(--strip-y), 0) scale(1.08);
}

.photo-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 8, 16, 0.0) 30%, rgba(20, 8, 16, 0.5) 100%);
  pointer-events: none;
}

.photo-strip__caption {
  position: absolute;
  bottom: clamp(2rem, 4vw, 3rem);
  left: var(--edge);
  right: var(--edge);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  color: var(--ivory);
}

.photo-strip__caption .label {
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.photo-strip__caption h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1.15;
  color: var(--ivory);
  max-width: 28ch;
}

.photo-strip__caption .meta {
  font-family: var(--tagline);
  font-size: 0.62rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .photo-strip__caption { flex-direction: column; align-items: flex-start; }
  .photo-strip__caption .meta { text-align: left; }
}

/* -------- PHOTO MOSAIC (3-up gallery) -------- */

.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, 1vw, 1rem);
  padding: 0 var(--edge);
}

.mosaic__tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1), filter 0.8s ease;
  cursor: pointer;
}

.mosaic__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mosaic__tile:hover {
  transform: translateY(-6px);
  filter: brightness(1.05) saturate(1.1);
}

/* Mosaic tiles stagger when the wrapping section reveals */
.mosaic .mosaic__tile {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1), filter 0.8s ease;
}
.is-visible .mosaic .mosaic__tile { opacity: 1; transform: translateY(0) scale(1); }
.is-visible .mosaic .mosaic__tile:nth-child(1) { transition-delay: 0.20s; }
.is-visible .mosaic .mosaic__tile:nth-child(2) { transition-delay: 0.35s; }
.is-visible .mosaic .mosaic__tile:nth-child(3) { transition-delay: 0.50s; }

.mosaic__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 8, 16, 0.4) 100%);
  pointer-events: none;
}

@media (max-width: 800px) {
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic__tile:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
}

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

.manifesto {
  padding: clamp(3.5rem, 6vw, 6rem) 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-text); }

.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-text);
}

/* -------- 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: 0;
  text-align: center;
  transition: border-color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dish__media {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.dish__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dish__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(91, 17, 68, 0.0) 60%, rgba(91, 17, 68, 0.3) 100%);
  transition: background 0.5s ease;
}

.dish:hover .dish__media { transform: none; }

.dish__body {
  padding: clamp(1.8rem, 2.5vw, 2.2rem) clamp(1.6rem, 2.5vw, 2.2rem) clamp(2rem, 2.8vw, 2.4rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dish:hover {
  border-color: var(--gold-text);
  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-text);
  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: 1000px) {
  .dishes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .dishes { grid-template-columns: 1fr; }
}

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

.year-block {
  padding: clamp(3.5rem, 6vw, 6rem) 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: 720px) {
  .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-text);
  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: 640px) {
  .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-text);
  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-text);
  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-text);
  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-text);
  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; }
}

/* -------- FAQ -------- */

.faq {
  padding: clamp(4rem, 7vw, 7rem) var(--edge);
  background: var(--ivory);
  border-top: 1px solid var(--rule-gold);
}

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

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

.faq__head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.1;
  color: var(--burgundy);
  max-width: 26ch;
  margin: 0 auto;
}

.faq__list {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  gap: clamp(1.6rem, 2.5vw, 2.2rem);
}

.faq__item {
  border-bottom: 1px solid var(--rule-soft);
  padding-bottom: clamp(1.4rem, 2vw, 1.8rem);
}
.faq__item:last-child { border-bottom: 0; }

.faq__item dt {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.3;
  color: var(--burgundy);
  margin-bottom: 0.7rem;
}

.faq__item dd {
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(1rem, 1.05vw, 1.05rem);
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
  max-width: 64ch;
}

.faq__item dd a {
  color: var(--burgundy);
  text-decoration: underline;
  text-decoration-color: var(--rule-gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
.faq__item dd a:hover { text-decoration-color: var(--gold-text); }

/* -------- RESERVATION BOOK PANEL (OpenTable handoff) -------- */

.reservation__book {
  position: relative;
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(2rem, 3vw, 3rem);
  background: var(--paper);
  border: 1px solid var(--rule-gold);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 1.5rem);
  isolation: isolate;
}

.reservation__book::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 0.36  0 0 0 0 0.07  0 0 0 0 0.27  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.reservation__book-eyebrow {
  font-family: var(--tagline);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

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

.reservation__book-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.2;
  color: var(--burgundy);
  max-width: 18ch;
  margin: 0 auto;
}

.reservation__book-lede {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0 auto;
}

.reservation__book-cta {
  margin-top: 0.5rem;
}

.reservation__book-note {
  font-family: var(--body);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0.5rem auto 0;
  padding-top: clamp(1.2rem, 2vw, 1.6rem);
  border-top: 1px solid var(--rule-soft);
  width: 100%;
}

/* -------- 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-text);
  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-text);
  font-weight: 400;
}

@media (max-width: 720px) {
  .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-text); transform: translateY(-4px); }

.tenet__num {
  font-family: var(--tagline);
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-text);
  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: 1000px) {
  .tenets__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .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-text);
  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-text); }

.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: 640px) {
  .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); }
}

/* Embedded Google Map */
.map {
  margin: 0 var(--edge) clamp(4rem, 7vw, 7rem);
  position: relative;
  aspect-ratio: 21 / 9;
  border: 1px solid var(--rule-gold);
  overflow: hidden;
  isolation: isolate;
}

.map__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Soft, brand-aligned tone over Google's default colors */
  filter: saturate(0.85) contrast(0.95);
}

.map__open {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-block;
  padding: 0.6rem 1rem;
  font-family: var(--tagline);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--burgundy);
  color: var(--ivory);
  border: 1px solid var(--burgundy);
  box-shadow: 0 6px 24px -8px rgba(20, 8, 16, 0.35);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.map__open:hover {
  background: var(--gold);
  color: var(--burgundy);
  border-color: var(--gold);
}

@media (max-width: 640px) {
  .map { aspect-ratio: 4 / 3; }
  .map__open { font-size: 0.58rem; padding: 0.5rem 0.85rem; }
}

/* -------- IN THE PRESS -------- */

.press {
  padding: clamp(4rem, 7vw, 7rem) var(--edge);
  background: var(--grey-warm);
  text-align: center;
  border-top: 1px solid var(--rule-gold);
  border-bottom: 1px solid var(--rule-gold);
  position: relative;
}

.press__inner {
  max-width: 56rem;
  margin: 0 auto;
}

.press .label {
  display: inline-block;
  margin-bottom: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.42em;
}

.press__quote {
  margin: 0 auto;
  position: relative;
}

.press__quote p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  line-height: 1.3;
  color: var(--burgundy);
  max-width: 32ch;
  margin: 0 auto;
}

.press__mark {
  display: inline-block;
  font-family: var(--display);
  font-style: normal;
  font-size: 1.4em;
  line-height: 1;
  color: var(--gold-text);
  vertical-align: -0.18em;
  margin: 0 0.04em;
  opacity: 0.85;
}

.press__attrib {
  margin-top: clamp(2rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: center;
}

.press__attrib::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-deep);
  margin-bottom: 1.2rem;
}

.press__author {
  font-family: var(--tagline);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.press__source {
  font-family: var(--body);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.press__source .italic {
  color: var(--burgundy);
  font-weight: 400;
}

.press__sep {
  color: var(--gold-text);
  margin: 0 0.35em;
  font-style: normal;
}

.press__link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: clamp(2rem, 3vw, 2.5rem);
  font-family: var(--tagline);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-gold);
  padding-bottom: 0.45rem;
  transition: color 0.4s ease, border-color 0.4s ease, gap 0.4s ease;
}

.press__link:hover {
  color: var(--gold-text);
  border-color: var(--gold-text);
  gap: 1rem;
}

.press__arrow {
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}

.press__link:hover .press__arrow {
  transform: translateX(3px);
}

/* -------- INSTAGRAM FEED -------- */

.ig-feed {
  padding: clamp(4rem, 7vw, 7rem) var(--edge);
  background: var(--ivory);
  text-align: center;
  border-top: 1px solid var(--rule-gold);
}

.ig-feed__head {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.ig-feed__head .label {
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.42em;
}

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

.ig-feed__sub {
  margin: 1.4rem auto 0;
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
}

.ig-feed__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.5rem, 0.9vw, 0.85rem);
  max-width: 1400px;
  margin: 0 auto;
}

.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  background: var(--burgundy-deep);
  isolation: isolate;
  border: 1px solid var(--rule-soft);
  transition: border-color 0.5s ease;
}

.ig-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1), filter 0.5s ease;
}

.ig-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(91, 17, 68, 0) 35%, rgba(62, 10, 46, 0.55) 100%),
    linear-gradient(180deg, rgba(91, 17, 68, 0.0) 0%, rgba(91, 17, 68, 0.18) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.ig-tile:hover {
  border-color: var(--gold-text);
}

.ig-tile:hover img {
  transform: scale(1.06);
  filter: brightness(1.04) saturate(1.05);
}

.ig-tile:hover::after { opacity: 1; }

.ig-tile__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  color: var(--ivory);
  z-index: 2;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  filter: drop-shadow(0 2px 12px rgba(20, 8, 16, 0.55));
}

.ig-tile:hover .ig-tile__icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.ig-tile__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ig-feed__cta {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

/* Behold.so widget container — when the user swaps the .ig-feed__grid block
   for <div data-behold-id="…">, these rules style the live widget to feel native. */
.ig-feed [data-behold-id] {
  max-width: 1400px;
  margin: 0 auto;
  --behold-row-gap: clamp(0.5rem, 0.9vw, 0.85rem);
  --behold-column-gap: clamp(0.5rem, 0.9vw, 0.85rem);
  --behold-border-radius: 0;
  --behold-border-width: 1px;
  --behold-border-color: var(--rule-soft);
}

@media (max-width: 1000px) {
  .ig-feed__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 540px) {
  .ig-feed__grid { grid-template-columns: repeat(2, 1fr); }
}

/* -------- 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 h3 {
  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;
  line-height: 1.4;
}

.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(60px);
  transition:
    opacity 1.4s cubic-bezier(.2,.7,.2,1),
    transform 1.4s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1.4s cubic-bezier(.2,.7,.2,1),
    transform 1.4s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.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.14s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.28s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.42s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.56s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.70s; }

/* Scroll-linked parallax targets — JS sets a CSS var --p (0–1 progress through view) */
[data-parallax] {
  will-change: transform;
  transform: translate3d(0, calc(var(--p, 0) * var(--parallax-amt, 60px) * -1), 0);
  transition: transform 0.05s linear;
}

/* Slow ambient drift on photo strips — reduce-motion safe (handled below) */
.photo-strip__img { will-change: transform; }

/* Section-divider gold rule "draws" itself when in view */
.hr-section::before,
.hr-section::after {
  transform: scaleX(0.2);
  transform-origin: center;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.hr-section.is-visible::before,
.hr-section.is-visible::after { transform: scaleX(1); }
.hr-section .ornament {
  opacity: 0;
  transform: scale(0.6) rotate(-15deg);
  transition: opacity 0.8s ease 0.4s, transform 0.8s cubic-bezier(.2,.7,.2,1) 0.4s;
}
.hr-section.is-visible .ornament { opacity: 0.9; transform: scale(1) rotate(0); }

/* 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: 30px; 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-text); }
.burgundy { color: var(--burgundy); }

/* -------- ACCESSIBILITY -------- */

/* Visually hidden but exposed to assistive tech. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-content: hidden until keyboard focus, then ribbon at top-left.
   Lets keyboard users bypass the masthead and nav on every page. */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0.85rem 1.4rem;
  background: var(--burgundy);
  color: var(--ivory);
  font-family: var(--tagline);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(-110%);
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1);
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Focus indicators (WCAG 2.4.7 AA). 2px gold ring with offset so it sits
   outside the element border on both light and dark surfaces. */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold-text);
  outline-offset: 3px;
  border-radius: 1px;
}

/* On dark surfaces, gold-text is too dim — use the lighter brand gold. */
.hero :focus-visible,
.cta-band :focus-visible,
.colophon :focus-visible,
.btn:focus-visible,
.btn--burgundy:focus-visible {
  outline-color: var(--gold);
}

/* Form fields: ring inside the field cell. */
.field__input:focus-visible,
.field__select:focus-visible,
.field__textarea:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}

/* Body-text inline links: distinguishable without color (WCAG 1.4.1).
   Scoped to paragraph contexts so nav/footer/buttons aren't redecorated. */
main p a:not(.btn),
.page-title__credit a,
.body-text a,
.form-submit__note a,
.menu-section__intro a {
  text-decoration: underline;
  text-decoration-color: var(--rule-gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: text-decoration-color 0.3s ease;
}
main p a:not(.btn):hover,
.page-title__credit a:hover,
.body-text a:hover,
.form-submit__note a:hover,
.menu-section__intro a:hover {
  text-decoration-color: var(--gold-text);
}

/* Skip link sends focus to <main>; main has tabindex=-1 as a focus host
   but should not render its own ring. */
main:focus-visible { outline: none; }

/* ============================================================
   MOBILE OPTIMIZATION  (≤640px, then ≤480px)
   Surgical adjustments only — touch-target compliance, type
   rhythm, and section density. Every rule is inside a max-width
   media query, so viewports above 640px are unaffected.
   ============================================================ */

@media (max-width: 640px) {

  /* --- Touch targets (≥44px tap area) ---------------------- */

  .nav__link {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }
  .nav__link::after { bottom: calc(0.85rem - 4px); }

  .colophon__group li { line-height: 2.4; }
  .colophon__group a {
    display: inline-block;
    padding: 0.2rem 0;
  }

  .press__link {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }

  /* --- Type and density rebalance -------------------------- */

  .year-block__digits {
    font-size: clamp(4rem, 17vw, 6.5rem);
  }

  .cta-band {
    padding-top: clamp(4rem, 10vw, 6rem);
    padding-bottom: clamp(4rem, 10vw, 6rem);
  }

  .page-title {
    padding-top: clamp(3.5rem, 8vw, 5rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
  }

  .press__quote p { max-width: 26ch; }
}

@media (max-width: 480px) {
  /* Trim 4vh so hero meta + tagline survive mobile address-bar UI */
  .hero { min-height: 88vh; }

  /* Smaller phones: tighter nav gap to let 5 links breathe */
  .nav__inner { gap: 0.7rem; }
}

/* ============================================================
   DISPLAY SETTINGS WIDGET
   Brand-matched in-browser preferences. Toggles set classes on
   <html>; CSS below maps each class to a real visual change.
   ============================================================ */

/* Text scale: applied via custom property on <html>, rems cascade. */
html { font-size: calc(100% * var(--a11y-text-scale, 1)); }

/* Reduce motion: harder than prefers-reduced-motion (overrides everything). */
.a11y-reduce-motion *,
.a11y-reduce-motion *::before,
.a11y-reduce-motion *::after {
  animation-duration: 0.001s !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001s !important;
  scroll-behavior: auto !important;
}
.a11y-reduce-motion .hero__bg { animation: none !important; }

/* Readable font: Atkinson Hyperlegible (Braille Institute). Loads on toggle. */
.a11y-dyslexia,
.a11y-dyslexia body,
.a11y-dyslexia h1, .a11y-dyslexia h2, .a11y-dyslexia h3, .a11y-dyslexia h4,
.a11y-dyslexia .display-mega, .a11y-dyslexia .display-large, .a11y-dyslexia .display-medium,
.a11y-dyslexia .hero__tag, .a11y-dyslexia .hero__wordmark + *,
.a11y-dyslexia .body-text, .a11y-dyslexia .body-text--lead,
.a11y-dyslexia .dish__name, .a11y-dyslexia .dish__desc,
.a11y-dyslexia .menu-item__name, .a11y-dyslexia .menu-item__desc,
.a11y-dyslexia .info-cell__value, .a11y-dyslexia .contact-cell__value,
.a11y-dyslexia .manifesto__lead, .a11y-dyslexia .manifesto__attrib,
.a11y-dyslexia .cta-band__line, .a11y-dyslexia .cta-band__eyebrow,
.a11y-dyslexia .reservation__book-title, .a11y-dyslexia .reservation__book-lede,
.a11y-dyslexia .press__quote p, .a11y-dyslexia .nav__link,
.a11y-dyslexia .label, .a11y-dyslexia .eyebrow, .a11y-dyslexia .tagline {
  font-family: 'Atkinson Hyperlegible', 'Verdana', 'Tahoma', sans-serif !important;
}

/* High contrast: stronger palette, drop film grain. */
.a11y-high-contrast {
  --burgundy: #2a0820;
  --burgundy-deep: #1a0414;
  --gold-text: #4d3e10;
  --ink: #000000;
  --ink-soft: #1a1a1a;
  --ivory: #ffffff;
  --paper: #ffffff;
  --grey-warm: #f1f1f1;
  --rule-soft: rgba(0,0,0,0.35);
  --rule-gold: rgba(77,62,16,0.6);
}
.a11y-high-contrast body::before { display: none; }
.a11y-high-contrast .hero::before {
  background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

/* Highlight links: aggressive underline + weight on every in-content link. */
.a11y-highlight-links main a:not(.btn):not(.skip-link):not(.a11y-launcher),
.a11y-highlight-links .colophon a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 0.18em !important;
  font-weight: 600 !important;
}

/* ---- Launcher (bottom-left circle) -------------------------- */

.a11y-launcher {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--burgundy);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px -8px rgba(20, 8, 16, 0.55);
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), background 0.3s ease, color 0.3s ease;
  padding: 0;
}
.a11y-launcher:hover {
  transform: scale(1.05);
  background: var(--gold);
  color: var(--burgundy);
}
.a11y-launcher svg { width: 24px; height: 24px; display: block; }
.a11y-launcher:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---- Panel ------------------------------------------------- */

.a11y-panel {
  position: fixed;
  bottom: 5.25rem;
  left: 1.25rem;
  z-index: 999;
  width: min(360px, calc(100vw - 2.5rem));
  max-height: calc(100vh - 6.5rem);
  overflow-y: auto;
  background: var(--ivory);
  color: var(--ink);
  border: 1px solid var(--rule-gold);
  box-shadow: 0 24px 56px -16px rgba(20, 8, 16, 0.45);
  font-family: var(--body);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(.2,.7,.2,1);
}
.a11y-panel.is-open { opacity: 1; transform: translateY(0); }
.a11y-panel[hidden] { display: none; }

.a11y-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  background: var(--burgundy);
  color: var(--ivory);
  border-bottom: 1px solid var(--rule-gold);
}
.a11y-panel__head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: var(--ivory);
  margin: 0;
}
.a11y-panel__close {
  background: transparent;
  border: 0;
  color: var(--gold);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.3s ease, background 0.3s ease;
}
.a11y-panel__close:hover { color: var(--ivory); background: rgba(255,255,255,0.1); }
.a11y-panel__close svg { width: 18px; height: 18px; }

.a11y-panel__body { padding: 0; }

.a11y-group {
  border: 0;
  padding: 1.2rem 1.4rem;
  margin: 0;
  border-bottom: 1px solid var(--rule-soft);
}
.a11y-group legend {
  font-family: var(--tagline);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-text);
  padding: 0;
  margin-bottom: 0.85rem;
}

.a11y-size {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.a11y-size__btn {
  padding: 0.65rem 0.4rem;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  color: var(--burgundy);
  font-family: var(--display);
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  min-height: 44px;
}
.a11y-size__btn[data-size="small"]   { font-size: 0.85rem; }
.a11y-size__btn[data-size="default"] { font-size: 1rem; }
.a11y-size__btn[data-size="large"]   { font-size: 1.18rem; }
.a11y-size__btn[data-size="xlarge"]  { font-size: 1.35rem; }
.a11y-size__btn[aria-checked="true"] {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--ivory);
}
.a11y-size__btn:hover { border-color: var(--gold-text); }

.a11y-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--rule-soft);
}
.a11y-toggle:last-of-type { border-bottom: 0; }
.a11y-toggle__label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.a11y-toggle__title {
  font-family: var(--body);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--ink);
}
.a11y-toggle__sub {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.a11y-switch {
  flex-shrink: 0;
  background: transparent;
  border: 0;
  padding: 0;
  width: 46px;
  height: 28px;
  cursor: pointer;
  position: relative;
}
.a11y-switch__track {
  position: absolute;
  inset: 0;
  background: rgba(91, 17, 68, 0.18);
  border-radius: 14px;
  transition: background 0.25s ease;
}
.a11y-switch__track::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1);
}
.a11y-switch[aria-checked="true"] .a11y-switch__track {
  background: var(--burgundy);
}
.a11y-switch[aria-checked="true"] .a11y-switch__track::before {
  transform: translateX(18px);
}

.a11y-panel__foot {
  padding: 1rem 1.4rem 1.2rem;
  border-top: 1px solid var(--rule-soft);
  background: var(--paper);
  text-align: center;
}
.a11y-reset {
  background: transparent;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  padding: 0.7rem 1.4rem;
  font-family: var(--tagline);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.a11y-reset:hover { background: var(--burgundy); color: var(--ivory); }
.a11y-panel__note {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 0.85rem 0 0;
}

@media (max-width: 540px) {
  .a11y-launcher { bottom: 1rem; left: 1rem; width: 44px; height: 44px; }
  .a11y-launcher svg { width: 22px; height: 22px; }
  .a11y-panel {
    bottom: 4.25rem;
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    max-width: 360px;
  }
}
