/* ─────────── ZOLA — ÉDITION MAI ───────────
   Fashion-magazine treatment. Bold, oversized, asymmetric.
*/
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}

:root{
  --paper: #f6efe8;     /* warm cream — like coated stock */
  --paper-2: #fbf4ee;
  --rose-soft: #f7d8e1;
  --rose: #d36b85;
  --rose-deep: #8b3a52;
  --garnet: #4a1424;
  --ink: #1a0e12;
  --ink-m: #6b4f57;
  --ink-s: #a8919a;
  --line: rgba(74,20,36,.16);

  --display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}

html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
  /* layered paper texture — laid paper ruling + cross-hatch + ink dust + warm halos */
  background-image:
    /* horizontal laid-paper ruling */
    repeating-linear-gradient(0deg,
      rgba(139, 58, 82, 0.07) 0,
      rgba(139, 58, 82, 0.07) 1px,
      transparent 1px, transparent 4px),
    /* diagonal cross-hatch */
    repeating-linear-gradient(118deg,
      rgba(139, 58, 82, 0.055) 0,
      rgba(139, 58, 82, 0.055) 1px,
      transparent 1px, transparent 11px),
    /* second-axis cross-hatch */
    repeating-linear-gradient(62deg,
      rgba(74, 20, 36, 0.030) 0,
      rgba(74, 20, 36, 0.030) 1px,
      transparent 1px, transparent 14px),
    /* fine print-grain dots (rose ink dust) */
    radial-gradient(circle at 20% 30%, rgba(139, 58, 82, 0.12) 1px, transparent 1.8px),
    radial-gradient(circle at 70% 60%, rgba(139, 58, 82, 0.14) 1px, transparent 1.8px),
    radial-gradient(circle at 45% 85%, rgba(139, 58, 82, 0.09) 1px, transparent 1.6px),
    /* warm radial halos */
    radial-gradient(ellipse 90% 65% at 50% 0%, rgba(247, 216, 225, 0.85) 0%, transparent 60%),
    radial-gradient(ellipse 70% 55% at 100% 100%, rgba(247, 216, 225, 0.70) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 0% 50%, rgba(247, 216, 225, 0.45) 0%, transparent 60%);
  background-size:
    100% 4px,        /* horizontal ruling */
    100% 100%,       /* diagonal cross-hatch */
    100% 100%,       /* second-axis cross-hatch */
    9px 9px, 13px 13px, 7px 7px,   /* ink dust */
    100% 100%, 100% 100%, 100% 100%; /* halos */
  background-attachment: fixed;
}

::-webkit-scrollbar{ width: 0; height: 0; }

/* paper grain — heavier multi-layer noise that reads like uncoated stock */
body::before{
  content:""; position: fixed; inset: 0; pointer-events: none; z-index: 1000;
  opacity: .70; 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.85' numOctaves='3' stitchTiles='stitch' seed='3'/><feColorMatrix values='0 0 0 0 0.46  0 0 0 0 0.12  0 0 0 0 0.22  0 0 0 0.28 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
/* second noise layer — coarser fiber (warm rose-amber) */
body::after{
  content:""; position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: .35; mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='420' height='420'><filter id='f'><feTurbulence type='fractalNoise' baseFrequency='0.018' numOctaves='2' stitchTiles='stitch' seed='7'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.22  0 0 0 0 0.32  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23f)'/></svg>");
}
/* third noise — long fiber streaks (rare, low opacity) */
.mag::before{
  content:""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: .12; mix-blend-mode: multiply;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600'><filter id='s'><feTurbulence type='fractalNoise' baseFrequency='0.005 0.04' numOctaves='2' stitchTiles='stitch' seed='11'/><feColorMatrix values='0 0 0 0 0.42  0 0 0 0 0.08  0 0 0 0 0.18  0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23s)'/></svg>");
}

.mag{
  max-width: 100vw;
  margin: 0 auto;
  position: relative;
}

/* ════════════════ COVER ════════════════ */
.cover{
  min-height: 100vh;
  padding: 32px 28px 36px;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    radial-gradient(ellipse 100% 80% at 80% 100%, var(--rose-soft) 0%, transparent 60%),
    var(--paper);
  overflow: hidden;
}

.masthead{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--garnet);
  position: relative;
  z-index: 2;
}
.masthead .barcode{
  font-family: var(--mono);
  letter-spacing: 0;
  color: var(--ink-s);
  font-size: 8px;
  text-align: right;
}
.masthead .issue{
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: none;
}
.masthead .issue b{
  display: block;
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-s);
  margin-bottom: 4px;
}
.masthead .ed{ text-align: left; }
.masthead .barcode-bars{
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  height: 14px;
}

.cover-stage{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  z-index: 1;
}
.cover-zola{
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(110px, 32vw, 380px);
  line-height: .82;
  letter-spacing: -.06em;
  color: var(--garnet);
  text-align: center;
  position: relative;
  margin: 16px 0;
  white-space: nowrap;
}
@media (max-width: 480px){
  .cover-zola{ font-size: clamp(96px, 28vw, 140px); }
}
.cover-zola .accent{
  color: var(--rose);
  font-style: italic;
}
.cover-bloom{
  position: absolute;
  width: clamp(220px, 50vw, 520px);
  height: clamp(220px, 50vw, 520px);
  right: -10%; top: 8%;
  opacity: .9;
  pointer-events: none;
  z-index: 0;
}
.cover-bloom svg{ width: 100%; height: 100%; }

.cover-tagline{
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 4.2vw, 38px);
  font-weight: 300;
  text-align: center;
  color: var(--garnet);
  line-height: 1.1;
  letter-spacing: -.5px;
  max-width: 720px;
  margin: 14px auto 0;
  text-wrap: balance;
}
.cover-tagline em{ color: var(--rose); font-style: italic; }

/* magazine cover lines — side captions */
.cover-lines{
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 200px;
  z-index: 2;
}
.cover-line{
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-m);
  line-height: 1.6;
  padding-left: 14px;
  border-left: 1px solid var(--rose);
}
.cover-line em{
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--rose-deep);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
  line-height: 1.05;
}
.cover-line .pg{
  font-family: var(--mono);
  font-style: normal;
  font-size: 9px;
  color: var(--ink-s);
  letter-spacing: 2px;
}
@media (max-width: 700px){
  .cover-lines{ display: none; }
}

/* cover bottom */
.cover-foot{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-m);
  z-index: 2;
}
.cover-foot .price{ font-family: var(--display); font-style: italic; font-size: 18px; color: var(--garnet); letter-spacing: 0; text-transform: none; }
.cover-foot .scroll{ text-align: right; }
.cover-foot .scroll svg{ vertical-align: middle; margin-left: 6px; animation: bob 2s ease-in-out infinite; }
@keyframes bob{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(4px); } }

/* ════════════════ EDITOR'S LETTER ════════════════ */
.ed-letter{
  padding: 80px 28px 60px;
  background:
    /* faint vertical ruling like an editorial column */
    repeating-linear-gradient(90deg,
      rgba(139, 58, 82, 0.015) 0,
      rgba(139, 58, 82, 0.015) 1px,
      transparent 1px, transparent 6px),
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(247, 216, 225, .35), transparent 60%),
    var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.ed-letter::before{
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: .18; mix-blend-mode: multiply;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='el'><feTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='2' stitchTiles='stitch' seed='17'/><feColorMatrix values='0 0 0 0 0.42  0 0 0 0 0.10  0 0 0 0 0.20  0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23el)'/></svg>");
}
.ed-grid{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}
@media (min-width: 760px){
  .ed-grid{ grid-template-columns: 1fr 2fr; gap: 60px; }
}
.ed-eyebrow{
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.ed-title{
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(34px, 6vw, 56px);
  color: var(--garnet);
  line-height: .95;
  letter-spacing: -1px;
}
.ed-body{
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -.1px;
  text-wrap: pretty;
  max-width: 56ch;
}
.ed-body::first-letter{
  font-family: var(--display);
  font-style: italic;
  font-size: 88px;
  line-height: .82;
  float: left;
  padding: 6px 14px 0 0;
  color: var(--rose-deep);
  font-weight: 400;
}
.ed-body p + p{ margin-top: 18px; }
.ed-body em{ color: var(--rose-deep); }
.ed-sign{
  margin-top: 30px;
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--rose-deep);
}
.ed-sign-role{
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-s);
  margin-top: 4px;
  font-style: normal;
}

/* ════════════════ SOMMAIRE (TOC) ════════════════ */
.sommaire{
  padding: 80px 28px 70px;
  background:
    /* halftone dot field — soft rose, only on sommaire for printed-page feel */
    radial-gradient(rgba(211, 107, 133, 0.18) 1.3px, transparent 1.5px),
    radial-gradient(rgba(211, 107, 133, 0.08) 0.8px, transparent 1.2px),
    /* corner warm wash */
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(247, 216, 225, .40), transparent 60%),
    var(--paper);
  background-size: 14px 14px, 7px 7px, 100% 100%, 100% 100%;
  background-position: 0 0, 3px 3px, 0 0, 0 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.sommaire::before{
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: .15; mix-blend-mode: multiply;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='so'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='2' stitchTiles='stitch' seed='21'/><feColorMatrix values='0 0 0 0 0.40  0 0 0 0 0.10  0 0 0 0 0.20  0 0 0 0.3 0'/></filter><rect width='100%25' height='100%25' filter='url(%23so)'/></svg>");
}
.som-head{
  max-width: 1100px;
  margin: 0 auto 32px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.som-eyebrow{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
}
.som-title{
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(60px, 12vw, 140px);
  line-height: .85;
  color: var(--garnet);
  letter-spacing: -.04em;
}
.som-meta{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-s);
  text-align: right;
}
.som-list{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 760px){
  .som-list{ grid-template-columns: 1fr 1fr; column-gap: 60px; }
}
.som-row{
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: baseline;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding-left .3s ease, background .3s ease;
  background: none; border-left: 0; border-right: 0; border-top: 0;
  font: inherit; color: inherit;
  text-align: left; width: 100%;
}
.som-row:hover{ padding-left: 10px; background: rgba(211,107,133,.05); }
.som-roman{
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 40px;
  color: var(--rose);
  letter-spacing: -1px;
  line-height: .9;
}
.som-name{
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--garnet);
  letter-spacing: -.5px;
  line-height: 1;
}
.som-name em{ font-style: italic; font-weight: 400; color: var(--rose-deep); }
.som-name .sub{
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--ink-m);
  letter-spacing: 0;
  margin-top: 6px;
}
.som-page{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--rose);
  text-transform: uppercase;
}
.som-page em{
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--garnet);
  letter-spacing: 0;
  text-transform: none;
}

/* ════════════════ CHAPTER OPENER ════════════════ */
.feature{
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.feature[data-tone="rose"]{ background: linear-gradient(180deg, var(--rose-soft) 0%, var(--paper) 90%); }

.feature-open{
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  position: relative;
  min-height: 70vh;
}
@media (min-width: 900px){
  .feature-open{ grid-template-columns: 1.2fr 1fr; min-height: 80vh; }
}
.feature-plate{
  position: relative;
  background: linear-gradient(160deg, var(--rose-soft) 0%, var(--paper-2) 80%);
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.feature-plate svg{
  width: clamp(220px, 80%, 480px);
  height: auto;
  max-height: 100%;
}
.feature-plate.has-photo{ padding: 0; min-height: 60vh; }
.feature-plate-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  /* full-bleed editorial treatment: rose-tinted print plate */
  filter:
    saturate(.72)
    contrast(1.15)
    brightness(1.04)
    sepia(.20)
    hue-rotate(-8deg);
}
.feature-plate.has-photo::before{
  /* grain bonded to the plate photo */
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: .45; mix-blend-mode: multiply;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='260' height='260'><filter id='fp'><feTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch' seed='9'/><feColorMatrix values='0 0 0 0 0.40  0 0 0 0 0.10  0 0 0 0 0.20  0 0 0 0.30 0'/></filter><rect width='100%25' height='100%25' filter='url(%23fp)'/></svg>");
}
.feature-plate.has-photo::after{
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    /* duotone wash so the photo merges with the rose paper */
    linear-gradient(135deg, rgba(247,216,225,.22), rgba(247,216,225,0) 35%, rgba(74,20,36,.22) 100%),
    /* vignette */
    radial-gradient(ellipse 120% 100% at 50% 40%, transparent 55%, rgba(74,20,36,.30) 100%),
    /* foot fade so feature-plate-meta stays readable */
    linear-gradient(0deg, rgba(74,20,36,.45) 0%, transparent 22%);
}
.feature-plate.has-photo .feature-plate-meta{ color: var(--rose-soft); opacity: 1; mix-blend-mode: normal; z-index: 3; }
@media (min-width: 900px){
  .feature-plate.has-photo{ min-height: 80vh; }
}
.feature-plate-meta{
  position: absolute;
  bottom: 18px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--garnet);
  opacity: .75;
}
.feature-plate-meta em{
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.feature-body{
  padding: 50px 32px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (min-width: 900px){
  .feature-body{ padding: 60px 56px; }
}
.feature-number{
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(140px, 22vw, 240px);
  line-height: .8;
  letter-spacing: -.06em;
  color: var(--rose-soft);
  position: absolute;
  top: 20px;
  right: 32px;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 900px){
  .feature-number{ right: -20px; top: 30px; }
}
.feature-eyebrow{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.feature-title{
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 10vw, 110px);
  line-height: .88;
  letter-spacing: -.04em;
  color: var(--garnet);
  position: relative;
  z-index: 1;
  text-wrap: balance;
}
.feature-deck{
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 2.4vw, 22px);
  color: var(--ink-m);
  margin-top: 20px;
  max-width: 36ch;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.feature-byline{
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-s);
  position: relative;
  z-index: 1;
}
.feature-byline em{
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--rose-deep);
  margin-left: 4px;
}

/* ════════════════ DISH SPREADS ════════════════ */
.spread{
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 28px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 760px){
  .spread{ grid-template-columns: 1fr 1fr; column-gap: 60px; }
}

.dish-article{
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 18px;
  cursor: pointer;
  transition: background .25s, padding-left .25s;
}
.dish-article:hover{ background: rgba(211,107,133,.04); padding-left: 8px; }

/* photographed variant — thumbnail on the left, body grid on the right */
.dish-article.has-photo{
  display: grid;
  grid-template-columns: 118px 1fr;
  column-gap: 22px;
  align-items: start;
}
@media (min-width: 760px){
  .dish-article.has-photo{ grid-template-columns: 150px 1fr; column-gap: 28px; }
}
.dish-article .dish-body{
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 18px;
  row-gap: 10px;
  min-width: 0;
}
.dish-thumb{
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, var(--rose-soft) 0%, var(--paper-2) 100%);
  border: 1px solid var(--line);
  /* tipped-in photo: thin paper shadow + inner highlight ring */
  box-shadow:
    0 1px 1px rgba(74, 20, 36, .08),
    0 14px 28px -18px rgba(74, 20, 36, .35),
    inset 0 0 0 1px rgba(255, 245, 240, .22);
}
/* legacy direct-img rule kept as fallback for any non-photo-wrap host */
.dish-thumb > img:not(.photo-wrap img){
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(.74) contrast(1.12) brightness(1.04) sepia(.18) hue-rotate(-8deg);
  mix-blend-mode: multiply;
}
.dish-thumb::before{
  /* paper grain bonded onto the photo */
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  opacity: .50; mix-blend-mode: multiply;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='gn'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch' seed='5'/><feColorMatrix values='0 0 0 0 0.40  0 0 0 0 0.10  0 0 0 0 0.20  0 0 0 0.22 0'/></filter><rect width='100%25' height='100%25' filter='url(%23gn)'/></svg>");
}
.dish-thumb::after{
  /* soft vignette + warm overlay so the photo sits on the page */
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 3;
  background:
    radial-gradient(ellipse 110% 110% at 50% 50%, transparent 55%, rgba(74,20,36,.22) 100%),
    linear-gradient(180deg, transparent 55%, rgba(74,20,36,.18) 100%),
    linear-gradient(0deg, rgba(247,216,225,.08), rgba(247,216,225,.08));
}
.dish-article.has-photo:nth-child(odd) .dish-thumb{ transform: rotate(-.4deg); }
.dish-article.has-photo:nth-child(even) .dish-thumb{ transform: rotate(.35deg); }
.dish-article.has-photo:hover .dish-thumb img{
  transform: scale(1.05);
  filter: saturate(1) contrast(1.08) brightness(1.04) sepia(.02);
  mix-blend-mode: normal;
}
.dish-article.has-photo .dish-no,
.dish-article.has-photo .dish-lede,
.dish-article.has-photo .dish-foot{ grid-column: 1 / -1; }
.dish-no{
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 2px;
}
.dish-no .sig{
  margin-left: 8px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--rose-deep);
  letter-spacing: 0;
  text-transform: none;
  background: linear-gradient(96deg, var(--rose-deep) 0%, #c98a72 28%, #ead4a0 48%, #c98a72 68%, var(--rose-deep) 100%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: foil 8s ease-in-out infinite;
}
@keyframes foil{ 0%,100%{ background-position: 0% 50%; } 50%{ background-position: 100% 50%; } }
.dish-headline{
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 32px);
  color: var(--garnet);
  letter-spacing: -.5px;
  line-height: 1;
  margin-right: 12px;
}
.dish-headline em{ font-style: italic; font-weight: 400; color: var(--rose-deep); }
.dish-pricetag{
  font-family: var(--display);
  font-size: 26px;
  color: var(--garnet);
  white-space: nowrap;
  align-self: start;
}
.dish-pricetag span{ font-family: var(--mono); font-size: 10px; color: var(--ink-s); margin-left: 4px; letter-spacing: 1.5px; }
.dish-lede{
  grid-column: 1 / -1;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-m);
  margin-top: 8px;
  text-wrap: pretty;
  max-width: 50ch;
}
.dish-foot{
  grid-column: 1 / -1;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-s);
  flex-wrap: wrap;
}
.dish-foot .pair{
  color: var(--rose);
}
.dish-foot .pair em{
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--rose-deep);
  margin-left: 4px;
}
.dish-foot .arrow{
  margin-left: auto;
  color: var(--rose);
  transition: transform .25s, color .25s;
}
.dish-article:hover .arrow{ transform: translateX(4px); color: var(--rose-deep); }

/* drop cap on first dish lede per spread */
.spread .dish-article:first-of-type .dish-lede::first-letter{
  font-family: var(--display);
  font-style: italic;
  font-size: 56px;
  line-height: .8;
  float: left;
  padding: 4px 12px 0 0;
  color: var(--rose-deep);
  font-weight: 400;
}

/* ════════════════ BAR FEATURE ════════════════ */
.bar-feature{
  padding: 60px 28px 80px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.bar-feature::before{
  /* faint card ruling — like a printed price list */
  content: ""; position: absolute; inset: 30px 0;
  background:
    repeating-linear-gradient(0deg,
      transparent 0, transparent 35px,
      rgba(139, 58, 82, 0.04) 35px, rgba(139, 58, 82, 0.04) 36px);
  pointer-events: none; z-index: 0;
}
.bar-feature > *{ position: relative; z-index: 1; }
.bar-cat-head{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--rose-deep);
  padding-bottom: 12px;
  margin: 40px 0 20px;
}
.bar-cat-title{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--garnet);
  letter-spacing: -.5px;
}
.bar-cat-title em{ font-style: italic; color: var(--rose-deep); }
.bar-cat-note{
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-s);
}
.bar-items{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 760px){
  .bar-items{ grid-template-columns: 1fr 1fr; column-gap: 50px; }
}
.bar-line{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.bar-line-name{
  font-family: var(--display);
  font-size: 18px;
  color: var(--garnet);
  font-weight: 400;
}
.bar-line-sub{
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-s);
  margin-top: 2px;
  font-weight: 300;
}
.bar-line-price{
  font-family: var(--display);
  font-size: 17px;
  color: var(--garnet);
  white-space: nowrap;
}
.bar-line-price span{ font-family: var(--mono); font-size: 9px; color: var(--ink-s); margin-left: 3px; letter-spacing: 1.2px; }

/* ════════════════ MASTHEAD CLOSE ════════════════ */
.colophon{
  background: var(--garnet);
  color: var(--rose-soft);
  padding: 80px 28px 60px;
  text-align: center;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
/* colophon paper texture — gold-dust speckle on the garnet ground */
.colophon::before{
  content:""; position: absolute; inset: 0; pointer-events: none;
  opacity: .12;
  background-image:
    radial-gradient(rgba(247, 216, 225, 0.8) 0.8px, transparent 1px),
    radial-gradient(rgba(255, 220, 180, 0.6) 0.6px, transparent 1px);
  background-size: 18px 18px, 7px 7px;
}
.colophon > *{ position: relative; z-index: 1; }
.colophon-eyebrow{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 24px;
}
.colophon-zola{
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(70px, 14vw, 160px);
  line-height: .85;
  letter-spacing: -.05em;
  color: var(--rose-soft);
  margin-bottom: 24px;
}
.colophon-rule{
  width: 60px; height: 1px;
  background: var(--rose);
  margin: 0 auto 30px;
}
.colophon-info{
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.7;
  color: var(--rose-soft);
  max-width: 480px;
  margin: 0 auto;
  opacity: .85;
}
.colophon-tel{
  display: inline-block;
  margin-top: 30px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 6px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 216, 225, .3);
  padding-bottom: 4px;
}
.colophon-creds{
  margin-top: 50px;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247, 216, 225, .45);
  line-height: 2;
}

/* ════════════════ DETAIL SHEET ════════════════ */
.detail-bg{
  position: fixed; inset: 0; z-index: 90;
  background: rgba(74,20,36,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.detail-bg[data-open="true"]{ opacity: 1; pointer-events: auto; }
.detail{
  position: fixed; bottom: 0; left: 0; right: 0;
  max-height: 92vh; overflow-y: auto;
  background: var(--paper);
  z-index: 91;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.2,.85,.2,1);
  box-shadow: 0 -20px 60px -10px rgba(74,20,36,.4);
}
.detail[data-open="true"]{ transform: translateY(0); }
@media (min-width: 900px){
  .detail{ max-width: 900px; left: 50%; transform: translateX(-50%) translateY(100%); }
  .detail[data-open="true"]{ transform: translateX(-50%) translateY(0); }
}

.detail-close{
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer; color: var(--garnet);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.detail-grab{
  width: 40px; height: 4px;
  background: var(--ink-s);
  margin: 12px auto 0;
  opacity: .35;
}
.detail-plate{
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--paper-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.detail-plate svg{ width: 50%; height: auto; max-height: 80%; }
.detail-plate.has-photo{ aspect-ratio: 4/3; }
@media (min-width: 760px){ .detail-plate.has-photo{ aspect-ratio: 16/9; } }
.detail-plate-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter:
    saturate(.74)
    contrast(1.14)
    brightness(1.04)
    sepia(.18)
    hue-rotate(-8deg);
}
.detail-plate.has-photo::before{
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: .42; 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='dp'><feTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='3' stitchTiles='stitch' seed='13'/><feColorMatrix values='0 0 0 0 0.40  0 0 0 0 0.10  0 0 0 0 0.20  0 0 0 0.28 0'/></filter><rect width='100%25' height='100%25' filter='url(%23dp)'/></svg>");
}
.detail-plate.has-photo::after{
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    radial-gradient(ellipse 120% 110% at 50% 40%, transparent 55%, rgba(74,20,36,.30) 100%),
    linear-gradient(180deg, transparent 55%, rgba(74,20,36,.42) 100%),
    linear-gradient(135deg, rgba(247,216,225,.18), rgba(247,216,225,0) 40%);
}
.detail-plate.has-photo .detail-plate-no{ color: var(--rose-soft); opacity: 1; z-index: 3; mix-blend-mode: normal; }
.detail-plate-no{
  position: absolute;
  top: 18px; left: 22px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--garnet);
  opacity: .65;
}
.detail-body{ padding: 36px 32px 44px; }
@media (min-width: 760px){
  .detail-body{ padding: 44px 56px 52px; }
}
.detail-eyebrow{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.detail-title{
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 64px);
  line-height: .95;
  letter-spacing: -.04em;
  color: var(--garnet);
  margin-bottom: 22px;
  text-wrap: balance;
}
.detail-title em{ font-style: italic; font-weight: 400; color: var(--rose-deep); }
.detail-pricing{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--rose);
  border-bottom: 1px solid var(--rose);
  margin-bottom: 28px;
}
.detail-price{
  font-family: var(--display);
  font-size: 44px;
  color: var(--garnet);
  letter-spacing: -1px;
}
.detail-price span{ font-family: var(--mono); font-size: 11px; color: var(--ink-s); margin-left: 6px; letter-spacing: 2px; }
.detail-pair{
  text-align: right;
}
.detail-pair-lbl{
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-s);
}
.detail-pair-val{
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--rose-deep);
  margin-top: 4px;
}
.detail-desc{
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 28px;
  text-wrap: pretty;
  max-width: 56ch;
}
.detail-section{
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}
.detail-section-lbl{
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}
.detail-gramaj{
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-m);
}
.detail-nutri{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.nu-cell{
  text-align: center;
  padding: 14px 6px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.nu-val{ font-family: var(--display); font-size: 22px; color: var(--garnet); }
.nu-key{ font-family: var(--mono); font-size: 8px; color: var(--ink-s); letter-spacing: 1.2px; text-transform: uppercase; margin-top: 4px; }
.detail-allergens{
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-m);
  line-height: 1.6;
}
.detail-allergens b{
  font-family: var(--mono);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-s);
  margin-right: 8px;
  font-weight: 500;
}
.detail-actions{
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.btn-share, .btn-tell{
  flex: 1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  padding: 16px 18px;
  border: 1px solid var(--garnet);
  background: transparent;
  color: var(--garnet);
  cursor: pointer;
  transition: all .2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-tell{ background: var(--garnet); color: var(--rose-soft); }
.btn-tell:hover{ background: var(--ink); border-color: var(--ink); }
.btn-share:hover{ background: var(--rose-soft); }

/* ════════════════ SIDE NAV ════════════════ */
.sidenav{
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.sn-dot{
  width: 6px; height: 6px;
  background: var(--ink-xs, var(--rose-soft));
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  transition: background .25s, transform .25s, width .25s;
  border: 0; padding: 0;
}
.sn-dot:hover{ background: var(--rose); transform: scale(1.4); }
.sn-dot[data-active="true"]{
  background: var(--rose-deep);
  width: 6px; height: 22px;
  border-radius: 3px;
}
@media (max-width: 700px){ .sidenav{ display: none; } }

/* ════════════════ FOLIO ════════════════ */
.folio2{
  position: fixed; z-index: 55;
  bottom: 18px; left: 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--garnet);
  background: rgba(246, 239, 232, .85);
  padding: 8px 14px;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; gap: 12px;
  pointer-events: none;
  backdrop-filter: blur(6px);
}
.folio2 em{
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--rose-deep);
  letter-spacing: 0;
  text-transform: none;
}

/* ════════════════ REVEAL ════════════════ */
.reveal{ opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.85,.2,1); }
.reveal[data-in="1"]{ opacity: 1; transform: none; }

/* ════════════════ PHOTO WRAPPER (blur-up + vellum + zoom) ════════════════ */
.photo-wrap{
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  cursor: zoom-in;
  /* vellum mask — photo edges fade gently into paper */
  -webkit-mask-image:
    radial-gradient(ellipse 95% 96% at 50% 50%, #000 62%, rgba(0,0,0,.85) 78%, transparent 100%);
          mask-image:
    radial-gradient(ellipse 95% 96% at 50% 50%, #000 62%, rgba(0,0,0,.85) 78%, transparent 100%);
}
.photo-wrap > img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.04);
  filter: blur(14px) saturate(.7) brightness(1.1);
  transition:
    opacity 1.1s ease,
    transform 1.6s cubic-bezier(.2,.85,.2,1),
    filter 1.1s ease;
  transition-delay: var(--photo-stagger, 0ms);
}
.photo-wrap.is-loaded > img{
  opacity: 1;
  transform: scale(1);
  /* arrive at the magazine-plate print treatment */
  filter:
    blur(0)
    saturate(.74)
    contrast(1.12)
    brightness(1.04)
    sepia(.18)
    hue-rotate(-8deg);
}
.dish-thumb .photo-wrap.is-loaded > img,
.detail-plate .photo-wrap.is-loaded > img,
.feature-plate .photo-wrap.is-loaded > img{
  /* feature plates lean a touch heavier on the print look */
}
.feature-plate .photo-wrap.is-loaded > img{
  filter:
    blur(0)
    saturate(.72)
    contrast(1.15)
    brightness(1.04)
    sepia(.20)
    hue-rotate(-8deg);
}
.photo-wrap .photo-skel{
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg,
      rgba(247, 216, 225, .55) 0%,
      rgba(247, 216, 225, .85) 35%,
      rgba(255, 235, 240, .95) 50%,
      rgba(247, 216, 225, .85) 65%,
      rgba(247, 216, 225, .55) 100%),
    linear-gradient(160deg, var(--rose-soft) 0%, var(--paper-2) 100%);
  background-size: 220% 100%, 100% 100%;
  animation: skel-shimmer 1.6s linear infinite;
  opacity: 1;
  transition: opacity .6s ease;
  transition-delay: var(--photo-stagger, 0ms);
}
.photo-wrap.is-loaded .photo-skel{ opacity: 0; }
@keyframes skel-shimmer{
  0%   { background-position: 100% 0, 0 0; }
  100% { background-position: -100% 0, 0 0; }
}
@media (prefers-reduced-motion: reduce){
  .photo-wrap > img{ transition: opacity .35s ease; transform: none; filter: none; }
  .photo-wrap .photo-skel{ animation: none; }
}

/* dish-thumb hosts the photo-wrap */
.dish-thumb .photo-wrap{ position: absolute; inset: 0; }
/* feature-plate hosts a photo-wrap with parallax */
.feature-plate .photo-wrap.feature-plate-photo{
  position: absolute; inset: -6% -2%;     /* over-bleed for parallax travel */
  transform: translateY(var(--py, 0));
  transition: transform .15s linear;
  z-index: 0;
}
/* detail-plate hosts a photo-wrap */
.detail-plate .photo-wrap.detail-plate-photo{ position: absolute; inset: 0; z-index: 0; }

/* ════════════════ LIGHTBOX ════════════════ */
.lightbox{
  position: fixed; inset: 0; z-index: 200;
  background: rgba(26, 14, 18, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease, background .4s ease, backdrop-filter .4s ease;
}
.lightbox[data-open="true"]{
  opacity: 1; pointer-events: auto;
  background: rgba(26, 14, 18, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: zoom-out;
}
.lightbox-img{
  max-width: 92vw; max-height: 86vh;
  display: block;
  cursor: default;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, .8),
    0 0 0 1px rgba(247, 216, 225, .12);
  transform: scale(.96);
  transition: transform .45s cubic-bezier(.2,.85,.2,1);
}
.lightbox[data-open="true"] .lightbox-img{ transform: scale(1); }
.lightbox-close{
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px;
  background: rgba(247, 216, 225, .14);
  border: 1px solid rgba(247, 216, 225, .25);
  color: var(--rose-soft);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background .2s, transform .2s;
}
.lightbox-close:hover{ background: rgba(247, 216, 225, .26); transform: rotate(90deg); }
.lightbox-cap{
  position: absolute; bottom: 28px; left: 0; right: 0;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--rose-soft);
  letter-spacing: 0;
  opacity: .8;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
@media (max-width: 600px){
  .lightbox-img{ max-width: 96vw; max-height: 78vh; }
  .lightbox-cap{ font-size: 15px; bottom: 18px; }
}

/* ════════════════ TILE-GRID VARIANT (mag-tile) ════════════════ */
.mag-tile .spread{ display: none; }
.tile-grid{
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 28px 70px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px){ .tile-grid{ grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (min-width: 1024px){ .tile-grid{ grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.dish-card{
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow:
    0 1px 1px rgba(74,20,36,.06),
    0 22px 40px -28px rgba(74, 20, 36, .35);
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.85,.2,1), box-shadow .35s ease;
  overflow: hidden;
}
.dish-card:hover{
  transform: translateY(-6px);
  box-shadow:
    0 1px 1px rgba(74,20,36,.08),
    0 36px 60px -32px rgba(74, 20, 36, .45);
}
.dish-card-plate{
  position: relative;
  aspect-ratio: 4 / 3.2;
  overflow: hidden;
  background: linear-gradient(160deg, var(--rose-soft) 0%, var(--paper-2) 100%);
}
.dish-card-plate .photo-wrap{ position: absolute; inset: 0; }
.dish-card-plate.plate-bloom{
  display: flex; align-items: center; justify-content: center;
}
.dish-card-plate.plate-bloom svg{ width: 55%; max-width: 220px; height: auto; }
.dish-card-plate::after{
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(180deg, transparent 65%, rgba(74,20,36,.18) 100%);
}
.dish-card.is-signature .dish-card-plate::before{
  content: "signature"; position: absolute; top: 14px; left: 14px; z-index: 3;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--paper);
  background: rgba(74, 20, 36, .82);
  padding: 4px 12px;
  backdrop-filter: blur(4px);
}
.dish-card-body{
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.dish-card-no{
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--rose);
}
.dish-card-no .sig{
  margin-left: 6px;
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  color: var(--rose-deep);
  letter-spacing: 0;
  text-transform: none;
}
.dish-card-name{
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 26px);
  color: var(--garnet);
  letter-spacing: -.5px;
  line-height: 1.05;
}
.dish-card-name em{ font-style: italic; font-weight: 400; color: var(--rose-deep); }
.dish-card-lede{
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-m);
  flex: 1;
}
.dish-card-foot{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.dish-card-price{
  font-family: var(--display);
  font-size: 22px;
  color: var(--garnet);
  letter-spacing: -.5px;
  text-transform: none;
}
.dish-card-price span{
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--ink-s);
  margin-left: 4px;
}
.dish-card-pair{
  color: var(--rose);
  text-align: right;
}
.dish-card-pair em{
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--rose-deep);
  margin-top: 2px;
  max-width: 140px;
}

/* ════════════════ UTIL ════════════════ */
.rotate-90{
  position: absolute;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
}
