:root {
  --paper: #f4efe4;
  --paper-deep: #ebe4d3;
  --ink: #1a2114;
  --ink-60: color-mix(in oklab, var(--ink) 62%, transparent);
  --ink-28: color-mix(in oklab, var(--ink) 28%, transparent);
  --hair: color-mix(in oklab, var(--ink) 12%, transparent);
  --leaf: #5d7c2c;
  --basil: #99bd56;
  --night: #14180f;
  --night-milk: #f4efe4;
  --night-60: color-mix(in oklab, var(--night-milk) 62%, transparent);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --pad: clamp(1.15rem, 3.2vw, 2.75rem);
  --wrap: 72rem;
  --edge: max(var(--pad), calc((100% - var(--wrap)) / 2 + var(--pad)));
  --bar: 4.25rem;
  --bar-compact: 3.15rem;
}

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

html {
  background: var(--paper);
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 40% at 50% -8%, color-mix(in oklab, var(--basil) 14%, transparent), transparent 58%),
    var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-nav-open,
body.is-promo-open { overflow: hidden; }

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

img { max-width: 100%; height: auto; }
a { color: var(--leaf); }

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  padding: 0.65rem 0.9rem;
  background: var(--leaf);
  color: var(--ink);
  font: 600 0.8rem/1 var(--sans);
  text-decoration: none;
}

.skip:focus { top: 1rem; }

.shell {
  width: min(100% - var(--pad) * 2, var(--wrap));
  margin-inline: auto;
}

/* ——— Header ——— */

.bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--bar);
  padding: 0 var(--edge);
  border-bottom: 1px solid var(--hair);
  background: color-mix(in oklab, var(--paper) 88%, transparent);
  backdrop-filter: blur(22px) saturate(1.2);
  transition: height 0.45s var(--ease);
}

body.is-compact .bar { height: var(--bar-compact); }

.mark {
  display: flex;
  align-items: center;
  height: 100%;
}

.mark img {
  display: block;
  width: 11.2rem;
  max-height: calc(var(--bar) - 0.55rem);
  height: auto;
  object-fit: contain;
  object-position: left center;
  transition: width 0.45s var(--ease), max-height 0.45s var(--ease);
}

body.is-compact .mark img {
  width: 8.8rem;
  max-height: calc(var(--bar-compact) - 0.4rem);
}

.rail {
  display: flex;
  justify-content: center;
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.rail a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.rail a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 1px;
  background: var(--leaf);
  transition: width 0.45s var(--ease);
}

.rail a:hover::after,
.rail a[aria-current="page"]::after { width: 100%; }

.rail a[aria-current="page"] { color: var(--leaf); }

.rail-meta { display: none; }

.call {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--leaf);
  padding-bottom: 0.15rem;
}

.call:hover { color: var(--leaf); }

.nav-toggle {
  display: none;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle i {
  display: block;
  width: 1.2rem;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: background 0.25s ease;
}

.nav-toggle i::before,
.nav-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.4s var(--ease);
}

.nav-toggle i::before { transform: translateY(-6px); }
.nav-toggle i::after { transform: translateY(6px); }

body.is-nav-open .nav-toggle i { background: transparent; }
body.is-nav-open .nav-toggle i::before { transform: rotate(45deg); }
body.is-nav-open .nav-toggle i::after { transform: rotate(-45deg); }

/* ——— Home stage ——— */

.stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  width: 100%;
  min-height: calc(100dvh - var(--bar));
  margin-inline: 0;
  padding: clamp(2rem, 6vh, 4rem) var(--edge) clamp(1.6rem, 4vh, 2.4rem);
  overflow: hidden;
  color: var(--night-milk);
  background: var(--night);
}

.stage-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stage-slides,
.stage-slides figure,
.stage-veil {
  position: absolute;
  inset: 0;
  margin: 0;
}

.stage-slides figure {
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}

.stage-slides figure.is-on { opacity: 1; }

.stage-slides img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stage-veil {
  pointer-events: none;
  background:
    linear-gradient(90deg, color-mix(in oklab, var(--night) 62%, transparent) 0%, color-mix(in oklab, var(--night) 42%, transparent) 36%, color-mix(in oklab, var(--night) 14%, transparent) 62%, transparent 88%),
    linear-gradient(180deg, color-mix(in oklab, var(--night) 32%, transparent), transparent 24%, transparent 66%, color-mix(in oklab, var(--night) 72%, transparent) 100%);
}

.stage-slider-ui {
  position: absolute;
  right: var(--pad);
  bottom: clamp(4.8rem, 12vh, 7.2rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--night-milk);
}

.stage-slider-ui button {
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 1px solid color-mix(in oklab, var(--night-milk) 28%, transparent);
  border-radius: 50%;
  background: color-mix(in oklab, var(--night) 35%, transparent);
  color: inherit;
  cursor: pointer;
}

.stage-slider-ui button::before {
  content: "";
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  margin: 0 auto;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.stage-slider-ui button[data-slider-next]::before { transform: rotate(-135deg); }

.stage-slider-ui button:hover {
  border-color: var(--basil);
  color: var(--basil);
}

.stage-slider-count {
  margin: 0;
  min-width: 4.2rem;
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
}

.stage-copy,
.stage-greek,
.stage-floor {
  position: relative;
  z-index: 2;
}

.stage-copy { max-width: 42rem; }

.meta {
  margin: 0 0 1.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--leaf);
}

.stage h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(4.2rem, 13vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: -0.045em;
}

.stage h1 em {
  display: block;
  font-style: italic;
  color: color-mix(in oklab, var(--night-milk) 78%, var(--basil));
}

.stage-lead {
  max-width: 26rem;
  margin: 1.6rem 0 0;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--night-60);
}

.stage-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem 2rem;
  margin-top: 2.4rem;
}

.stage .link-line { color: var(--night-milk); }

.link-line {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--leaf);
  padding-bottom: 0.2rem;
}

.link-line:hover { color: var(--leaf); }

.delivery {
  display: flex;
  gap: 0.55rem;
}

.delivery a {
  display: block;
  width: 3.4rem;
  height: 3.5rem;
  border-radius: 0.45rem;
  overflow: hidden;
}

.delivery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-greek {
  align-self: start;
  margin: 1rem 0 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  line-height: 1;
  color: color-mix(in oklab, var(--basil) 28%, transparent);
  pointer-events: none;
  user-select: none;
}

.stage-floor {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 8vh, 5rem);
  padding-top: 1.1rem;
  border-top: 1px solid color-mix(in oklab, var(--night-milk) 14%, transparent);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--night-60);
}

.status { display: inline-flex; align-items: center; gap: 0.5rem; margin: 0; }
.status-dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: color-mix(in oklab, var(--night-milk) 28%, transparent);
}
.status.is-open .status-dot {
  background: var(--basil);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--basil) 18%, transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
.status.is-closed .status-dot { background: #c47a3a; }

.stage-floor a { color: inherit; text-decoration: none; }
.stage-floor a:hover { color: var(--leaf); }

/* ——— Chapters ——— */

.chapter {
  display: grid;
  grid-template-columns: 8rem 1fr minmax(0, 28rem);
  gap: 0 3rem;
  padding: clamp(4.5rem, 12vh, 8rem) var(--edge);
  border-top: 1px solid var(--hair);
}

.chapter-no {
  margin: 0.35rem 0 0;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  color: var(--leaf);
}

.chapter h2 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.chapter-body {
  font-weight: 300;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink-60);
}

.chapter-body p { margin: 0 0 1.05rem; }
.chapter-body p:last-child { margin-bottom: 0; }

.quote {
  padding: clamp(5rem, 14vh, 9rem) var(--edge);
  border-top: 1px solid var(--hair);
  text-align: left;
}

.quote blockquote {
  margin: 0;
  max-width: 18ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* ——— Google reviews ——— */

.voices {
  padding: clamp(2.5rem, 6vh, 4rem) 0 2.4rem;
  background: var(--night);
  color: var(--night-milk);
}

.page-home .voices { padding-bottom: 4.2rem; }

.voices-inner {
  padding: 0 var(--edge);
}

.voices-head {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.voices-mark {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.12rem;
  margin: 0;
}

.stars i {
  display: block;
  width: 1.9rem;
  height: 1.9rem;
  background: url("/assets/img/reviews/star.svg?v=2") center / contain no-repeat;
}

.voices-count {
  margin: 0.1rem 0 0;
  font-size: 0.88rem;
  color: color-mix(in oklab, var(--night-milk) 78%, transparent);
}

.voices-count a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.voices-count a:hover { color: var(--basil); }

.voices-google {
  display: block;
  width: 7.2rem;
  height: auto;
  margin-top: 0.4rem;
}

.voices-add {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  margin-top: 0.45rem;
  color: var(--night-milk);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--basil);
  padding-bottom: 0.15rem;
}

.voices-add svg {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
}

.voices-add:hover { color: var(--basil); }

.voices-slider {
  display: grid;
  gap: 1rem;
}

.voices-nav {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.voices-move {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--night-milk);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.voices-move:hover { color: var(--basil); }

.voices-move svg {
  display: block;
  width: 0.95rem;
  height: 0.95rem;
}

.voices-window {
  overflow: hidden;
}

.voices-track {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.voices-track::-webkit-scrollbar { display: none; }

.voice {
  flex: 0 0 calc((100% - 1.6rem) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.05rem 1.1rem 1.1rem;
  border-radius: 0.35rem;
  border: 1px solid color-mix(in oklab, var(--night-milk) 12%, transparent);
  background: #1f2619;
}

.voice-top {
  display: grid;
  grid-template-columns: 2.45rem 1fr auto;
  gap: 0.7rem;
  align-items: center;
}

.voice-ava {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--night);
  background: var(--basil);
}

.voice-ava[data-tone="2"] { background: #c4d48a; }
.voice-ava[data-tone="3"] { background: #8aa35a; color: var(--night-milk); }
.voice-ava[data-tone="4"] { background: #d8c48a; }
.voice-ava[data-tone="5"] { background: #99bd56; }

.voice-who {
  min-width: 0;
}

.voice-who strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.voice-who time {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.74rem;
  color: color-mix(in oklab, var(--night-milk) 64%, transparent);
}

.voice-g {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
}

.voice-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.voice .stars {
  justify-content: flex-start;
}

.voice .stars i {
  width: 1.22rem;
  height: 1.22rem;
}

.voice-verified {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
}

.voice-body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
  color: color-mix(in oklab, var(--night-milk) 90%, transparent);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.voice-body.is-open {
  display: block;
  overflow: visible;
}

.voice-more {
  align-self: start;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--basil);
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.voice-more:hover { color: var(--night-milk); }

.sigs {
  padding: clamp(4rem, 10vh, 7rem) var(--edge);
  border-top: 1px solid var(--hair);
}

.sigs-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.sigs-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.sig {
  display: grid;
  grid-template-columns: 4rem 1fr minmax(0, 26rem);
  gap: 1rem 2rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--hair);
}

.sig:last-child { border-bottom: 1px solid var(--hair); }

.sig b {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--leaf);
}

.sig h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-style: italic;
}

.sig p {
  margin: 0;
  color: var(--ink-60);
  line-height: 1.6;
}

.offer {
  padding: clamp(4rem, 10vh, 7rem) var(--edge);
  border-top: 1px solid var(--hair);
}

.offer-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  margin: 0.35rem 0 1.1rem;
}

.offer h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.offer-price {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--leaf);
}

.offer > p {
  margin: 0 0 1.4rem;
  max-width: 36rem;
  color: var(--ink-60);
  line-height: 1.65;
}

.offer .link-line + .link-line {
  margin-left: 1.5rem;
}

.hygiene {
  padding: 0 var(--edge) clamp(2.6rem, 6vh, 4rem);
}

.page-home .hygiene {
  margin-top: -1.5rem;
}

.hygiene-panel {
  display: grid;
  grid-template-columns: minmax(0, 18.125rem) minmax(0, 1fr);
  gap: 1.8rem 2.6rem;
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1.4rem, 3vw, 2.3rem);
  background: var(--paper);
  border: 1px solid var(--hair);
}

.hygiene-badge {
  min-width: 0;
  width: 100%;
  max-width: 18.125rem;
}

.hygiene-badge a {
  display: block;
  max-width: 100%;
}

.hygiene-badge img {
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-width: 0 !important;
  height: auto !important;
}

.hygiene-copy {
  min-width: 0;
}

.hygiene-copy .meta { margin-bottom: 0.45rem; }

.hygiene h2 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  line-height: 0.95;
}

.hygiene p {
  margin: 0 0 1.15rem;
  max-width: 34rem;
  color: var(--ink-60);
  line-height: 1.65;
}

/* ——— Inner pages ——— */

.mast {
  padding: clamp(3.2rem, 10vh, 6.5rem) var(--edge) clamp(2rem, 5vh, 3.2rem);
}

.mast h1 {
  margin: 0.4rem 0 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.8;
  letter-spacing: -0.045em;
}

.mast h1 em { font-style: italic; }

.mast-lead {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  color: var(--ink-60);
  font-weight: 300;
  line-height: 1.65;
}

.mast-lead a {
  color: inherit;
  text-underline-offset: 0.18em;
}

.mast-lead a:hover { color: var(--leaf); }

.chapters-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  margin-top: 2.2rem;
}

.chapters-jump a {
  color: var(--ink-60);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chapters-jump a:hover { color: var(--leaf); }

/* Menu as a wine list */

.carte {
  width: min(100% - var(--pad) * 2, 46rem);
  margin-inline: auto;
  padding: 0 0 5rem;
}

.carte-block {
  padding: 3.2rem 0 1.2rem;
}

.carte-block h2 {
  margin: 0 0 1.6rem;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.note {
  margin: -0.8rem 0 1.4rem;
  color: var(--leaf);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.allergen {
  margin: 0 0 2.5rem;
  max-width: 40rem;
  color: var(--ink-60);
  font-size: 0.92rem;
  line-height: 1.6;
}

.plate {
  padding: 0.95rem 0 1rem;
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
}

.carte-block .plate:last-child {
  border-bottom: none;
}

.plate-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 0.8rem;
}

.plate h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.leaders {
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--hair) 0 3px,
    transparent 3px 7px
  );
  transform: translateY(-0.35rem);
}

.gbp {
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: var(--leaf);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.plate p {
  max-width: 38rem;
  margin: 0.28rem 0 0;
  color: var(--ink-60);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* About signatures as a long list already uses .sig */

.story {
  display: grid;
  grid-template-columns: 1fr minmax(0, 34rem);
  gap: 3rem;
  padding: 0 var(--edge) clamp(4rem, 10vh, 7rem);
}

.story h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}

.story p {
  margin: 0 0 1.1rem;
  color: var(--ink-60);
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.75;
}

/* Contact */

.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 0 var(--edge) 3rem;
  border-top: 1px solid var(--hair);
  padding-top: clamp(2.5rem, 7vh, 4rem);
}

.addr {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

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

.addr a:hover { color: var(--leaf); }

.facts {
  display: grid;
  gap: 1.4rem;
  align-content: start;
  padding-top: 0.4rem;
}

.facts dt {
  margin: 0 0 0.25rem;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--leaf);
}

.facts dd { margin: 0; }

.facts a {
  color: var(--ink);
  text-decoration: none;
}

.facts a:hover { color: var(--leaf); }

.form {
  display: grid;
  gap: 1.15rem;
  scroll-margin-top: calc(var(--bar) + 1.2rem);
}

.form h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 2.2rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf);
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 1px solid var(--hair);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: 400 1.05rem/1.4 var(--sans);
}

.form textarea { min-height: 8rem; resize: vertical; }

.form input:focus,
.form textarea:focus {
  outline: none;
  border-bottom-color: var(--leaf);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form button {
  justify-self: start;
  margin-top: 0.4rem;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--leaf);
  background: none;
  color: var(--ink);
  font: 500 0.75rem/1.4 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.form button:hover { color: var(--leaf); }

.form-status { margin: 0; font-size: 0.95rem; }
.form-status.is-ok { color: var(--leaf); }
.form-status.is-err { color: #9a4a1e; }

.map {
  width: min(100% - var(--pad) * 2, var(--wrap));
  height: min(52vh, 28rem);
  margin: 0 auto 4rem;
  border-top: 1px solid var(--hair);
  background: var(--paper-deep);
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) saturate(0.9);
}

/* ——— Photographs ——— */

.bleed,
.duo {
  width: min(100% - var(--pad) * 2, var(--wrap));
  margin-inline: auto;
}

.carte .bleed,
.carte .divider {
  margin-left: 0;
  margin-right: 0;
}

.divider {
  margin: 0;
}

.divider img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  vertical-align: middle;
}

.bleed img,
.duo img,
.inset img {
  display: block;
  width: 100%;
  height: min(78vh, 46rem);
  object-fit: cover;
  background: var(--paper-deep);
}

.duo {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.7rem;
}

.duo img {
  height: min(58vh, 36rem);
}

.inset {
  width: min(100% - var(--pad) * 2, var(--wrap));
  margin: 0 auto;
}

.inset img {
  height: min(52vh, 32rem);
}

.portrait {
  width: min(100% - var(--pad) * 2, var(--wrap));
  margin: 0 auto;
}

.carte .portrait {
  margin: 2.4rem 0 0;
}

.carte .photo-note {
  margin-left: 0;
  margin-right: 0;
}

.portrait img {
  display: block;
  width: min(100%, 28rem);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  background: var(--paper-deep);
}

.photo-note {
  width: min(100% - var(--pad) * 2, var(--wrap));
  margin: 0.65rem auto 1.1rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-28);
}

main > .photo-note:last-child {
  margin-bottom: 3.5rem;
}

/* ——— Footer ——— */

footer { border-top: 1px solid var(--hair); }

.foot-inner {
  padding: 1.7rem var(--edge) 1.15rem;
}

.foot-mark {
  display: block;
  width: max-content;
  padding: 0 0 1.15rem;
}

.foot-mark img {
  display: block;
  width: 9.4rem;
  height: auto;
}

.colophon {
  display: grid;
  grid-template-columns: 1.35fr 1.15fr 0.9fr 0.7fr;
  gap: 1.15rem 1.6rem;
  padding: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--ink);
}

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

.colophon a:hover { color: var(--leaf); }

.colophon span {
  display: block;
  margin-bottom: 0.32rem;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf);
}

.socials {
  display: grid;
  gap: 0.28rem;
  align-content: start;
}

.socials a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.86rem;
}

.socials a:hover { color: var(--leaf); }

.credit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.45rem 1.5rem;
  margin: 0;
  padding: 0.75rem var(--edge) calc(0.95rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--hair);
  font-size: 0.75rem;
  color: var(--ink-60);
}

.credit a { color: var(--leaf); text-decoration: none; font-weight: 500; }
.credit a:hover { text-decoration: underline; text-underline-offset: 0.18em; }

.heart {
  display: inline-flex;
  margin: 0 0.2em;
  color: var(--leaf);
  animation: beat 2.6s ease-in-out infinite;
  vertical-align: -0.15em;
}

.heart svg { width: 0.82rem; height: 0.82rem; display: block; }

/* ——— Mega Grill popup ——— */

.promo {
  width: min(62rem, calc(100vw - 1.6rem));
  max-height: calc(100dvh - 1.6rem);
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.promo::backdrop {
  background: color-mix(in oklab, var(--night) 74%, transparent);
  backdrop-filter: blur(16px) saturate(1.05);
}

.promo[open] {
  animation: promoIn 0.55s var(--ease);
}

.promo[open]::backdrop {
  animation: promoVeil 0.45s ease;
}

.promo-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(17rem, 1fr);
  max-height: calc(100dvh - 1.6rem);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid color-mix(in oklab, var(--ink) 16%, transparent);
  box-shadow: 0 1.8rem 4rem color-mix(in oklab, var(--night) 28%, transparent);
}

.promo-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: color-mix(in oklab, var(--paper) 88%, transparent);
  color: var(--ink);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.promo-close span,
.promo-close span::before,
.promo-close span::after {
  display: block;
  width: 1.05rem;
  height: 1.5px;
  background: currentColor;
}

.promo-close span {
  position: relative;
  background: transparent;
}

.promo-close span::before,
.promo-close span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

.promo-close span::before { transform: rotate(45deg); }
.promo-close span::after { transform: rotate(-45deg); }

.promo-close:hover { color: var(--leaf); }

.promo-poster {
  margin: 0;
  min-height: 0;
  height: 100%;
  background: var(--night);
}

.promo-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.promo-copy {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: auto;
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.3rem, 3vw, 2.3rem) 1.7rem;
}

.promo-copy .meta { margin-bottom: 0.7rem; }

.promo-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.promo-price {
  margin: 0.7rem 0 1.15rem;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 1.7rem;
  color: var(--leaf);
}

.promo-includes {
  list-style: none;
  margin: 0;
  padding: 0;
}

.promo-includes li {
  padding: 0.42rem 0;
  border-top: 1px solid var(--hair);
  font-size: 0.95rem;
  line-height: 1.35;
}

.promo-includes li span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf);
}

.promo-platter {
  margin: 0.95rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-60);
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.6rem;
  margin-top: auto;
  padding-top: 1.4rem;
}

@keyframes promoIn {
  from { opacity: 0; transform: translateY(0.7rem) scale(0.985); }
  to { opacity: 1; transform: none; }
}

@keyframes promoVeil {
  from { opacity: 0; }
  to { opacity: 1; }
}

[data-in] {
  opacity: 0;
  transform: translateY(1.35rem);
}

[data-in].is-in {
  animation: rise 1.15s var(--ease) both;
  animation-delay: var(--d, 0s);
}

[data-in="photo"] {
  transform: translateY(1.1rem) scale(1.02);
}

[data-in="photo"].is-in {
  animation-name: rise-photo;
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@keyframes rise-photo {
  to { opacity: 1; transform: none; }
}

@keyframes railIn {
  from { opacity: 0; transform: translateY(0.7rem); }
  to { opacity: 1; transform: none; }
}

.stage-copy > *,
.stage-floor,
.stage-greek {
  animation: rise 1.2s var(--ease) both;
}

.stage-copy .meta { animation-delay: 0.08s; }
.stage-copy h1 { animation-delay: 0.2s; }
.stage-copy .stage-lead { animation-delay: 0.38s; }
.stage-copy .stage-actions { animation-delay: 0.52s; }
.stage-greek { animation-delay: 0.45s; }
.stage-floor { animation-delay: 0.7s; }

.mast > * {
  animation: rise 1.05s var(--ease) both;
}
.mast .meta { animation-delay: 0.06s; }
.mast h1 { animation-delay: 0.16s; }
.mast .mast-lead { animation-delay: 0.3s; }
.mast .chapters-jump { animation-delay: 0.42s; }

@keyframes pulse {
  50% { opacity: 0.45; }
}

@keyframes beat {
  45% {
    transform: scale(1.14);
    filter: drop-shadow(0 0 8px color-mix(in oklab, var(--basil) 45%, transparent));
  }
}

@media (max-width: 980px) {
  .stage { grid-template-columns: 1fr; }
  .stage-slider-ui {
    right: auto;
    left: var(--pad);
    bottom: clamp(7.2rem, 20vh, 10.5rem);
  }
  .stage-greek {
    position: absolute;
    right: var(--pad);
    top: 1.2rem;
    font-size: 3.4rem;
  }
  .chapter,
  .sig,
  .story,
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .colophon {
    grid-template-columns: 1fr 1fr;
  }
  .hygiene-panel {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1.35rem;
  }
  .chapter-no { margin-bottom: 0.8rem; }
  .sigs-head { flex-direction: column; }
  .duo { grid-template-columns: 1fr; }
  .voice { flex-basis: calc((100% - 0.8rem) / 2); }
}

@media (max-width: 760px) {
  .bar {
    grid-template-columns: 1fr auto;
    overflow: visible;
    backdrop-filter: none;
    background: var(--paper);
  }
  .call { display: none; }
  .nav-toggle { display: grid; place-items: center; justify-self: end; }
  .rail {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 25;
    height: calc(100dvh - var(--bar));
    transition: height 0.45s var(--ease);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 0.85rem var(--pad) calc(1.6rem + env(safe-area-inset-bottom));
    background:
      radial-gradient(ellipse 80% 28% at 50% -8%, color-mix(in oklab, var(--basil) 16%, transparent), transparent 70%),
      var(--paper);
  }
  body.is-nav-open .rail { display: flex; }
  body.is-compact .rail { height: calc(100dvh - var(--bar-compact)); }
  .rail a::after { display: none; }
  .rail > a {
    width: 100%;
    border-bottom: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
    font-family: var(--serif);
    font-weight: 500;
    font-style: italic;
    font-size: clamp(1.55rem, 7vw, 2.15rem);
    letter-spacing: -0.02em;
    text-transform: none;
    animation: railIn 0.7s var(--ease) both;
  }
  .rail > a:nth-of-type(1) { padding: 0.85rem 0 1.05rem; animation-delay: 0.05s; }
  .rail > a:nth-of-type(2) { padding: 1.1rem 0 1.3rem; animation-delay: 0.12s; }
  .rail > a:nth-of-type(3) { padding: 1.35rem 0 1.5rem; animation-delay: 0.19s; }
  .rail > a:nth-of-type(4) { padding: 1.55rem 0 1.75rem; animation-delay: 0.26s; }
  .rail > a[aria-current="page"] {
    color: var(--leaf);
    box-shadow: none;
    padding-left: 0;
  }
  .rail-meta {
    display: grid;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 1.6rem;
    border-top: 1px solid var(--hair);
    animation: railIn 0.75s var(--ease) 0.32s both;
  }
  .rail-meta .meta { margin: 0; }
  .rail-meta p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--ink-60);
  }
  .rail-meta a {
    width: auto;
    padding: 0;
    border: 0;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: none;
    color: var(--ink);
  }
  .rail-meta a:hover { color: var(--leaf); }
  .rail-meta .delivery { margin-top: 0.2rem; }
  .stage-floor { flex-direction: column; }
  .plate-top { grid-template-columns: 1fr auto; }
  .leaders { display: none; }
  .hygiene-panel {
    grid-template-columns: 1fr;
    padding: 1.4rem 1.15rem 1.5rem;
  }
  .colophon {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }
  .credit {
    flex-direction: column;
    gap: 0.35rem;
  }
  .voice {
    flex-basis: 100%;
  }
  .promo {
    width: calc(100vw - 1rem);
    max-height: calc(100dvh - 1rem);
  }
  .promo-card {
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 1rem);
    overflow: auto;
  }
  .promo-poster {
    max-height: 38vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-in],
  .stage-copy > *,
  .stage-floor,
  .stage-greek,
  .mast > * { opacity: 1; transform: none; animation: none !important; }
}
