@font-face {
  font-family: "Cormorant Local";
  src: url("assets/cormorant-garamond-normal.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Local";
  src: url("assets/cormorant-garamond-italic.woff2") format("woff2");
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #f3ecdf;
  --paper-bright: #fbf7ef;
  --paper-deep: #e5d7c4;
  --ink: #171714;
  --ink-soft: #554c43;
  --terracotta: #a54622;
  --terracotta-bright: #c45e31;
  --olive: #46503a;
  --night: #181714;
  --line: rgba(61, 45, 32, 0.2);
  --rail-width: 138px;
  --page-pad: clamp(34px, 5.5vw, 88px);
  --ease-roman: cubic-bezier(0.22, 1, 0.36, 1);
  --rail-progress: 0;
  --wolf-y: 0px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(54, 39, 28, 0.015) 0 1px, transparent 1px 4px);
  content: "";
  pointer-events: none;
  mix-blend-mode: multiply;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  color: inherit;
}

::selection {
  background: var(--terracotta);
  color: var(--paper-bright);
}

:focus-visible {
  outline: 3px solid rgba(190, 82, 38, 0.52);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 16px;
  background: var(--night);
  color: var(--paper-bright);
  text-decoration: none;
}

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

.page-shell {
  padding-left: var(--rail-width);
}

.chapter {
  position: relative;
  scroll-margin-top: 0;
}

.chapter-rail {
  position: fixed;
  z-index: 60;
  inset: 0 auto 0 0;
  display: flex;
  width: var(--rail-width);
  flex-direction: column;
  border-right: 1px solid rgba(61, 45, 32, 0.18);
  background: rgba(248, 243, 234, 0.94);
  box-shadow: 12px 0 42px rgba(66, 47, 31, 0.06);
  backdrop-filter: blur(16px);
}

.rail-brand {
  display: grid;
  min-height: 132px;
  place-content: center;
  font: 600 29px/0.73 "Cormorant Local", Georgia, serif;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.rail-brand span:last-child {
  color: var(--terracotta);
}

.rail-journey {
  position: relative;
  min-height: 360px;
  flex: 1;
  margin: 14px 0;
}

.rail-track {
  position: absolute;
  z-index: 0;
  top: 10%;
  bottom: 10%;
  left: 20px;
  width: 1px;
}

.rail-track__base,
.rail-track__fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1px;
}

.rail-track__base {
  height: 100%;
  background: rgba(55, 42, 31, 0.2);
}

.rail-track__fill {
  height: calc(var(--rail-progress) * 100%);
  background: var(--terracotta);
  box-shadow: 0 0 9px rgba(165, 70, 34, 0.24);
}

.rail-track__marker {
  position: absolute;
  top: calc(var(--rail-progress) * 100%);
  left: 0;
  width: 11px;
  height: 11px;
  transform: translate(-5px, -5px);
  border: 2px solid var(--paper-bright);
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 1px var(--terracotta), 0 0 13px rgba(165, 70, 34, 0.35);
}

.rail-nav {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
}

.rail-link {
  position: relative;
  display: grid;
  min-height: 48px;
  align-content: center;
  gap: 3px;
  padding: 0 8px 0 30px;
  color: rgba(23, 23, 20, 0.46);
  text-decoration: none;
  transition: color 220ms ease;
}

.rail-link__dot {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border: 1px solid var(--paper-bright);
  border-radius: 50%;
  background: #aaa092;
  box-shadow: 0 0 0 1px rgba(44, 35, 28, 0.35);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.rail-link__number {
  color: var(--terracotta);
  font: italic 13px/1 "Cormorant Local", Georgia, serif;
}

.rail-link__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rail-link.is-active {
  color: var(--ink);
}

.rail-link.is-active .rail-link__dot {
  background: #aaa092;
  box-shadow: 0 0 0 1px rgba(44, 35, 28, 0.35);
}

.rail-foot {
  display: grid;
  min-height: 132px;
  place-content: center;
  gap: 6px;
  text-align: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.23em;
}

.rail-foot__leaf {
  color: var(--olive);
  font: 27px/1 Georgia, serif;
}

.mobile-header {
  display: none;
}

.hero {
  z-index: 1;
  height: clamp(850px, 69.45vw, 1000px);
  min-height: 850px;
  overflow: hidden;
  background: var(--paper) url("assets/home-scene-4b-v4.png") center top / cover no-repeat;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 246, 238, 0.32) 0, transparent 43%), linear-gradient(180deg, transparent 72%, rgba(70, 39, 23, 0.06));
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 6;
  top: clamp(36px, 4.4vw, 66px);
  left: clamp(52px, 6vw, 92px);
  width: min(44vw, 590px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 31px;
  height: 1px;
  flex: none;
  background: var(--terracotta);
}

.eyebrow--light {
  color: rgba(251, 247, 239, 0.72);
}

.eyebrow--light > span {
  background: var(--terracotta-bright);
}

.wordmark {
  margin: 0 0 4px;
  font: 500 clamp(84px, 8.5vw, 134px) / 0.82 "Cormorant Local", Georgia, serif;
  letter-spacing: -0.065em;
}

.wordmark span {
  margin-left: 0.08em;
  color: var(--terracotta);
}

.hero-statement {
  margin: 0 0 18px;
  font: 400 clamp(50px, 5vw, 76px) / 1 "Cormorant Local", Georgia, serif;
  letter-spacing: -0.04em;
}

.hero-location {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-location svg {
  width: 17px;
  fill: var(--terracotta);
}

.hero-actions {
  display: flex;
  max-width: 590px;
  align-items: stretch;
  gap: 22px;
}

.roman-cta {
  position: relative;
  display: grid;
  width: min(340px, 58%);
  min-height: 72px;
  grid-template-columns: 1fr 72px;
  overflow: hidden;
  border: 1px solid rgba(77, 30, 15, 0.5);
  clip-path: polygon(0 13px, 13px 0, calc(100% - 15px) 0, 100% 15px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 12px 100%, 0 calc(100% - 12px));
  background: #a74422;
  box-shadow: inset 0 0 0 3px rgba(240, 191, 151, 0.18), 0 14px 30px rgba(92, 39, 18, 0.14);
  color: var(--paper-bright);
  text-decoration: none;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.roman-cta--hero {
  width: min(326px, 58%);
  grid-template-columns: 1fr;
}

.roman-cta:hover,
.roman-cta:focus-visible {
  transform: translateY(-2px);
  background: #b44c25;
  box-shadow: inset 0 0 0 3px rgba(249, 214, 181, 0.24), 0 18px 36px rgba(92, 39, 18, 0.19);
}

.roman-cta__edge {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  background: repeating-linear-gradient(180deg, #171714 0 7px, #e7dac8 7px 14px, #b95129 14px 21px);
}

.roman-cta__label {
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 10px 20px 10px 28px;
}

.roman-cta__label small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.roman-cta__label strong {
  font: 600 25px/1 "Cormorant Local", Georgia, serif;
}

.roman-cta__seal {
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(252, 241, 227, 0.26);
}

.roman-cta__seal svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  transition: transform 220ms ease;
}

.roman-cta:hover .roman-cta__seal svg,
.roman-cta:focus-visible .roman-cta__seal svg {
  transform: translateX(4px);
}

.menu-cta {
  position: relative;
  display: grid;
  width: min(230px, 42%);
  min-height: 72px;
  grid-template-columns: 46px 1fr;
  align-items: center;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  text-decoration: none;
  transition: transform 220ms ease, color 220ms ease;
}

.menu-cta::after {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 46px;
  height: 1px;
  transform: scaleX(0.42);
  transform-origin: left;
  background: var(--terracotta);
  content: "";
  transition: transform 220ms ease;
}

.menu-cta:hover,
.menu-cta:focus-visible {
  transform: translateY(-2px);
  color: var(--terracotta);
}

.menu-cta:hover::after,
.menu-cta:focus-visible::after {
  transform: scaleX(1);
}

.menu-cta__index {
  display: grid;
  height: 100%;
  place-items: center;
  border-right: 1px solid rgba(44, 33, 25, 0.18);
  color: var(--terracotta);
  font: italic 20px/1 "Cormorant Local", Georgia, serif;
}

.menu-cta > span:nth-child(2) {
  display: grid;
  gap: 3px;
  padding-left: 13px;
}

.menu-cta small {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.menu-cta strong {
  font: 600 18px/1 "Cormorant Local", Georgia, serif;
}

.hero-review-proof {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: baseline;
  gap: 0 9px;
  margin-top: 16px;
  padding-top: 11px;
  border-top: 1px solid rgba(61, 45, 32, 0.22);
  color: var(--ink);
  text-decoration: none;
}

.hero-review-proof strong {
  color: var(--terracotta);
  font: 600 23px/1 "Cormorant Local", Georgia, serif;
}

.hero-review-proof__stars {
  color: #a74422;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.hero-review-proof > span:nth-of-type(2) {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-review-proof small {
  grid-column: 2 / -1;
  color: var(--ink-soft);
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.hero-review-proof:hover small,
.hero-review-proof:focus-visible small {
  color: var(--terracotta);
}

.wolf-stage {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  width: min(58vw, 870px);
  margin: 0;
  overflow: clip;
  pointer-events: none;
}

.wolf-parallax {
  transform: translate3d(0, var(--wolf-y), 0);
}

.wolf-art {
  position: relative;
  overflow: hidden;
  animation: wolf-breathe 7s ease-in-out 1.8s infinite;
}

.wolf-image {
  width: 100%;
  height: auto;
  filter: saturate(0.94) contrast(1.03);
}

.wolf-shimmer {
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(108deg, transparent 40%, rgba(255, 232, 196, 0.17) 49%, transparent 58%);
  mix-blend-mode: screen;
  animation: wolf-shimmer 6.8s ease-in-out 2.5s infinite;
}

.tessera-field,
.tessera-field i {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tessera-field i {
  top: var(--y);
  left: var(--x);
  width: var(--size);
  height: var(--size);
  opacity: 0;
  transform: translate(var(--dx), var(--dy)) rotate(var(--spin));
  border-radius: 2px;
  background: var(--tile);
  animation: tessera-arrive 950ms var(--ease-roman) var(--delay) forwards;
}

.wolf-stage figcaption {
  position: absolute;
  right: 6%;
  bottom: 2%;
  display: grid;
  gap: 2px;
  text-align: right;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.wolf-stage figcaption span:last-child {
  color: var(--terracotta);
}

.dishes {
  z-index: 8;
  display: flex;
  min-height: 0;
  flex-direction: column;
  margin-top: -31vw;
  overflow: visible;
  padding-bottom: clamp(80px, 8vw, 130px);
  background: transparent;
}

.niche-gallery {
  display: grid;
  width: 100%;
  height: 31vw;
  min-height: 370px;
  max-height: 500px;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 32px);
}

.dish-niche {
  min-width: 0;
  height: 100%;
}

.niche-shell {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 48% 48% 3px 3px;
}

.niche-shell::before {
  position: absolute;
  z-index: 2;
  inset: 2px;
  border: 1px solid rgba(153, 77, 40, 0.15);
  border-radius: inherit;
  box-shadow: inset 0 0 44px rgba(165, 74, 32, 0.08), 0 0 22px rgba(192, 99, 48, 0.05);
  content: "";
  pointer-events: none;
  transition: border-color 800ms ease, box-shadow 900ms ease;
}

.dish-niche.is-lit .niche-shell::before {
  border-color: rgba(194, 92, 43, 0.28);
  box-shadow: inset 0 0 50px rgba(174, 76, 35, 0.12), 0 0 28px rgba(194, 92, 43, 0.1);
}

.niche-glow {
  position: absolute;
  z-index: 1;
  inset: 5%;
  border-radius: inherit;
  background: radial-gradient(circle at 52% 70%, rgba(209, 118, 65, 0.11), transparent 58%);
  pointer-events: none;
}

.niche-inscription {
  position: absolute;
  z-index: 4;
  top: 14%;
  left: 17%;
  display: grid;
  min-width: 142px;
  gap: 2px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(42, 29, 21, 0.94);
  filter: none;
  text-shadow: none;
  text-transform: uppercase;
}

.niche-inscription::after {
  width: 32px;
  height: 1px;
  margin-top: 7px;
  background: var(--terracotta);
  content: "";
  box-shadow: none;
}

.niche-inscription small {
  color: #8f3d21;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.niche-inscription strong {
  color: #30231b;
  font: 500 15px/1.05 "Cormorant Local", Georgia, serif;
  letter-spacing: 0.12em;
}

.cucina-heading {
  display: grid;
  align-items: end;
  gap: 38px;
  padding: clamp(46px, 5.5vw, 82px) var(--page-pad);
  border-top: 1px solid rgba(61, 45, 32, 0.16);
  border-bottom: 1px solid rgba(61, 45, 32, 0.13);
  background: var(--paper-bright);
}

.cucina-heading > div {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  align-items: end;
  gap: 60px;
}

.cucina-heading h2,
.menu-heading h2,
.story h2,
.reviews h2,
.booking h2,
dialog h2 {
  margin: 0;
  font: 500 clamp(56px, 6.5vw, 98px) / 0.88 "Cormorant Local", Georgia, serif;
  letter-spacing: -0.045em;
}

.cucina-heading h2 em,
.menu-heading h2 em,
.story h2 em,
.reviews h2 em,
.booking h2 em {
  color: var(--terracotta);
  font-weight: 400;
}

.cucina-heading p:last-child,
.menu-heading > p:last-child,
.story-copy > p,
.reviews-copy > p,
.booking-intro > p {
  margin: 0;
  color: var(--ink-soft);
  font: 400 19px/1.55 "Cormorant Local", Georgia, serif;
}

.menu-section {
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(90px, 9vw, 145px) var(--page-pad) clamp(88px, 8vw, 130px);
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(214, 194, 166, 0.055) 48% 48.3%, transparent 48.3%),
    radial-gradient(circle at 88% 10%, rgba(167, 72, 32, 0.2), transparent 24%),
    var(--night);
  color: var(--paper-bright);
}

.menu-section::after {
  position: absolute;
  inset: auto 0 0;
  height: 13px;
  background: repeating-linear-gradient(90deg, var(--terracotta) 0 9px, var(--paper-deep) 9px 18px, #2a2925 18px 27px);
  content: "";
}

.menu-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
  gap: 60px;
  align-items: end;
}

.menu-heading .eyebrow,
.menu-heading h2 {
  grid-column: 1;
}

.menu-heading h2 {
  font-size: clamp(62px, 7vw, 110px);
}

.menu-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: rgba(251, 247, 239, 0.67);
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: clamp(48px, 6vw, 84px) 0 38px;
}

.menu-filter {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(241, 225, 205, 0.24);
  background: transparent;
  color: rgba(251, 247, 239, 0.7);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.menu-filter span {
  margin-left: 11px;
  color: var(--terracotta-bright);
  font: italic 13px/1 "Cormorant Local", Georgia, serif;
}

.menu-filter:hover,
.menu-filter:focus-visible,
.menu-filter.is-active {
  border-color: var(--terracotta-bright);
  background: rgba(165, 70, 34, 0.16);
  color: var(--paper-bright);
}

.full-menu {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(241, 225, 205, 0.2);
  counter-reset: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(38px, 6vw, 96px);
  list-style: none;
}

.menu-item {
  display: grid;
  min-height: 100px;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(241, 225, 205, 0.18);
}

.menu-item[hidden] {
  display: none;
}

.menu-item__number {
  color: var(--terracotta-bright);
  font: italic 15px/1 "Cormorant Local", Georgia, serif;
}

.menu-item > div {
  display: grid;
  gap: 6px;
}

.menu-item strong {
  font: 500 clamp(22px, 2.2vw, 31px) / 1.05 "Cormorant Local", Georgia, serif;
}

.menu-item small {
  color: rgba(251, 247, 239, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-closing {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: rgba(251, 247, 239, 0.47);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stone-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 30px;
  padding: 0 4px;
  border-bottom: 1px solid rgba(72, 52, 38, 0.36);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.stone-link i {
  color: var(--terracotta);
  font-size: 18px;
  font-style: normal;
  transition: transform 180ms ease;
}

.stone-link:hover i,
.stone-link:focus-visible i {
  transform: translateX(4px);
}

.stone-link--light {
  border-color: rgba(251, 247, 239, 0.4);
  color: var(--paper-bright);
}

.story {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  overflow: hidden;
  padding: clamp(90px, 10vw, 155px) var(--page-pad);
  background:
    linear-gradient(28deg, transparent 0 49.7%, rgba(106, 82, 61, 0.11) 49.8% 50%, transparent 50.1%),
    linear-gradient(151deg, transparent 0 62%, rgba(106, 82, 61, 0.09) 62.1% 62.3%, transparent 62.4%),
    var(--paper-bright);
}

.story-route {
  position: absolute;
  inset: 8% -10% auto auto;
  width: 56vw;
  height: 56vw;
  border: 1px solid rgba(165, 70, 34, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.story-route::before,
.story-route::after {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(165, 70, 34, 0.09);
  border-radius: inherit;
  content: "";
}

.story-route::after {
  inset: 28%;
}

.story-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.story h2 {
  margin-bottom: 38px;
}

.story-copy > p {
  max-width: 630px;
  margin-bottom: 20px;
}

.story-copy .story-lead {
  color: var(--ink);
  font-size: 23px;
}

.story-copy .stone-link {
  margin-top: 16px;
}

.story-emblem {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 490px;
  justify-self: end;
  margin: 0;
  gap: 20px;
}

.story-emblem__disc {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(72, 52, 38, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 238, 225, 0.98) 0 56%, rgba(222, 202, 178, 0.72) 56.5% 57.5%, transparent 58%), repeating-linear-gradient(45deg, rgba(165, 70, 34, 0.06) 0 4px, transparent 4px 10px);
  box-shadow: inset 0 0 55px rgba(109, 72, 43, 0.1), 0 30px 70px rgba(86, 57, 35, 0.11);
}

.story-emblem img {
  width: 88%;
  height: auto;
  filter: grayscale(1) sepia(0.28) contrast(0.85);
  opacity: 0.72;
}

.story-emblem figcaption {
  display: flex;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.reviews {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(310px, 0.74fr) minmax(0, 1.26fr);
  align-items: center;
  gap: clamp(55px, 9vw, 150px);
  overflow: hidden;
  padding: clamp(88px, 9vw, 145px) var(--page-pad);
  background:
    radial-gradient(circle at 18% 50%, rgba(239, 197, 155, 0.12), transparent 28%),
    linear-gradient(120deg, transparent 0 68%, rgba(253, 232, 209, 0.05) 68.1% 68.3%, transparent 68.4%),
    #733017;
  color: var(--paper-bright);
}

.reviews::before {
  position: absolute;
  top: 0;
  right: -8%;
  width: 58%;
  height: 100%;
  border-left: 1px solid rgba(253, 232, 209, 0.13);
  border-radius: 50% 0 0 50%;
  content: "";
}

.reviews-score {
  position: relative;
  z-index: 2;
  display: grid;
  aspect-ratio: 1;
  max-width: 390px;
  place-content: center;
  justify-self: center;
  gap: 12px;
  border: 1px solid rgba(253, 232, 209, 0.34);
  border-radius: 50%;
  background: rgba(29, 21, 17, 0.13);
  box-shadow: inset 0 0 0 10px rgba(253, 232, 209, 0.035), 0 30px 70px rgba(37, 15, 8, 0.18);
  text-align: center;
}

.reviews-score::before {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(253, 232, 209, 0.22);
  border-radius: 50%;
  content: "";
}

.reviews-score__number {
  font: 500 clamp(92px, 10vw, 142px) / 0.72 "Cormorant Local", Georgia, serif;
}

.reviews-score__stars {
  color: #f1c08a;
  font-size: 14px;
  letter-spacing: 0.25em;
}

.reviews-score__stars i {
  color: rgba(241, 192, 138, 0.42);
  font-style: normal;
}

.reviews-score strong {
  font: 500 24px/1 "Cormorant Local", Georgia, serif;
}

.reviews-score small {
  color: rgba(251, 247, 239, 0.55);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-copy {
  position: relative;
  z-index: 2;
}

.reviews-copy > p {
  max-width: 600px;
  margin: 30px 0;
  color: rgba(251, 247, 239, 0.72);
}

.review-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.review-themes span {
  padding: 11px 14px;
  border: 1px solid rgba(253, 232, 209, 0.28);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking {
  display: grid;
  min-height: 950px;
  grid-template-columns: minmax(300px, 0.75fr) minmax(540px, 1.25fr);
  align-items: start;
  gap: clamp(50px, 7vw, 112px);
  padding: clamp(88px, 9vw, 145px) var(--page-pad);
  background:
    radial-gradient(circle at 78% 28%, transparent 0 23%, rgba(117, 88, 63, 0.08) 23.2% 23.4%, transparent 23.6% 31%, rgba(117, 88, 63, 0.06) 31.2% 31.4%, transparent 31.6%),
    var(--paper-bright);
}

.booking-intro {
  position: sticky;
  top: 50px;
}

.booking-intro > p {
  margin: 30px 0 38px;
}

.contact-ledger {
  margin: 0;
  border-top: 1px solid var(--line);
}

.contact-ledger div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-ledger dt {
  color: var(--terracotta);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-ledger dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink-soft);
  font: 500 16px/1.35 "Cormorant Local", Georgia, serif;
}

.travel-links {
  display: flex;
  gap: 22px;
  padding: 18px 0 24px;
}

.travel-links a {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.map-consent {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(232, 218, 199, 0.45);
}

.map-consent[hidden] {
  display: none;
}

.map-consent > div {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 5px 10px;
}

.map-consent__pin {
  grid-row: span 2;
  width: 16px;
  height: 20px;
  border: 2px solid var(--terracotta);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-consent strong {
  font: 600 18px/1 "Cormorant Local", Georgia, serif;
}

.map-consent small {
  color: var(--ink-soft);
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.map-consent button {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--terracotta);
  background: transparent;
  cursor: pointer;
  color: var(--terracotta);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-frame {
  height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.booking-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: clamp(28px, 3.6vw, 52px);
  border: 1px solid rgba(65, 46, 33, 0.18);
  border-top: 5px solid var(--terracotta);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 36%),
    #f3e9dc;
  box-shadow: 0 30px 80px rgba(75, 49, 30, 0.13);
}

.booking-form::before,
.booking-form::after {
  position: absolute;
  top: 0;
  width: 42px;
  height: 5px;
  background: repeating-linear-gradient(90deg, #171714 0 6px, #e7dac8 6px 12px, #b95129 12px 18px);
  content: "";
  pointer-events: none;
}

.booking-form::before {
  left: 0;
}

.booking-form::after {
  right: 0;
}

.form-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 28px;
}

.form-heading > span,
.field label,
.field-label {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-heading > span {
  color: var(--terracotta);
}

.form-heading strong {
  font: 600 clamp(34px, 3.5vw, 49px) / 0.96 "Cormorant Local", Georgia, serif;
}

.form-heading small {
  color: var(--ink-soft);
  font: italic 16px/1.3 "Cormorant Local", Georgia, serif;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 4px 0 12px;
}

.booking-step > span {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--paper-bright);
  font: italic 13px/1 "Cormorant Local", Georgia, serif;
}

.booking-step > div {
  display: grid;
  gap: 1px;
}

.booking-step strong {
  font: 600 21px/1 "Cormorant Local", Georgia, serif;
}

.booking-step small {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 32px;
  padding: 6px;
  background: #28201a;
  box-shadow: 0 15px 34px rgba(49, 33, 23, 0.16);
}

.booking-picker .field--choice {
  min-height: 99px;
  align-content: center;
  gap: 5px;
  padding: 17px 16px 10px;
  border-right: 1px solid rgba(252, 240, 223, 0.16);
}

.booking-picker .field--choice:last-child {
  border-right: 0;
}

.booking-picker .field-label {
  color: rgba(252, 240, 223, 0.58);
}

.booking-picker .select-trigger,
.booking-picker .date-trigger {
  min-height: 44px;
  border-bottom-color: rgba(252, 240, 223, 0.28);
  color: var(--paper-bright);
  font-size: 20px;
}

.booking-picker .select-trigger i {
  border-color: #e2a37e;
}

.booking-picker .date-trigger i {
  border-color: #e2a37e;
}

.booking-picker .date-trigger i::before,
.booking-picker .date-trigger i::after {
  border-color: #e2a37e;
}

.booking-picker .field-error {
  color: #f0a47e;
}

.guest-fields {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.guest-fields .field,
.booking-notes {
  align-content: start;
  padding: 14px 15px 7px;
  border: 1px solid rgba(65, 46, 33, 0.14);
  background: rgba(255, 252, 247, 0.62);
}

.guest-fields .field:focus-within,
.booking-notes:focus-within {
  border-color: rgba(167, 68, 34, 0.48);
  background: rgba(255, 252, 247, 0.9);
}

.booking-notes {
  margin-bottom: 17px;
}

.field {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 8px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field input,
.field textarea,
.select-trigger,
.date-trigger {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-bottom: 1px solid rgba(56, 43, 33, 0.34);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.field input,
.field textarea {
  padding: 10px 4px;
  font: 500 18px/1.2 "Cormorant Local", Georgia, serif;
}

.field textarea {
  min-height: 66px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.select-trigger:focus-visible,
.custom-select.is-open .select-trigger,
.date-trigger:focus-visible,
.date-picker.is-open .date-trigger {
  border-bottom-color: var(--terracotta);
  background: rgba(229, 215, 196, 0.18);
}

.field.is-invalid input,
.field.is-invalid .select-trigger,
.field.is-invalid .date-trigger {
  border-bottom-color: #a02c1e;
}

.field-error {
  min-height: 12px;
  color: #982b1f;
  font-size: 9px;
}

.select-trigger,
.date-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  cursor: pointer;
  text-align: left;
  font: 500 18px/1 "Cormorant Local", Georgia, serif;
}

.select-trigger i {
  width: 9px;
  height: 9px;
  transform: rotate(45deg) translateY(-3px);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: transform 180ms ease;
}

.custom-select.is-open .select-trigger i {
  transform: rotate(225deg) translate(-2px, -1px);
}

.date-trigger i {
  position: relative;
  width: 15px;
  height: 14px;
  flex: 0 0 auto;
  border: 1px solid var(--terracotta);
}

.date-trigger i::before,
.date-trigger i::after {
  position: absolute;
  content: "";
}

.date-trigger i::before {
  top: 3px;
  right: 0;
  left: 0;
  border-top: 1px solid var(--terracotta);
}

.date-trigger i::after {
  top: -3px;
  left: 3px;
  width: 7px;
  height: 4px;
  border-right: 1px solid var(--terracotta);
  border-left: 1px solid var(--terracotta);
}

.select-options {
  position: absolute;
  z-index: 30;
  top: calc(100% - 11px);
  right: 0;
  left: 0;
  max-height: 250px;
  margin: 0;
  padding: 8px;
  overflow-y: auto;
  border: 1px solid rgba(64, 47, 34, 0.3);
  background: #f8f1e6;
  box-shadow: 0 22px 42px rgba(62, 43, 29, 0.18);
  list-style: none;
}

.select-options[hidden] {
  display: none;
}

.select-options li {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  cursor: pointer;
  font: 500 16px/1 "Cormorant Local", Georgia, serif;
}

.select-options li:hover,
.select-options li:focus,
.select-options li[aria-selected="true"] {
  outline: 0;
  background: var(--terracotta);
  color: var(--paper-bright);
}

.date-picker {
  position: relative;
}

.date-panel {
  position: absolute;
  z-index: 35;
  top: calc(100% - 11px);
  right: 0;
  width: min(330px, calc(100vw - 46px));
  padding: 12px;
  border: 1px solid rgba(64, 47, 34, 0.3);
  background: #f8f1e6;
  box-shadow: 0 22px 42px rgba(62, 43, 29, 0.2);
}

.date-panel[hidden] { display: none; }

.date-panel__head {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  margin-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.date-panel__head strong {
  text-align: center;
  font: 600 17px/1 "Cormorant Local", Georgia, serif;
  text-transform: capitalize;
}

.date-panel__head button {
  min-height: 38px;
  border: 0;
  background: transparent;
  color: var(--terracotta);
  cursor: pointer;
  font-size: 16px;
}

.date-panel__head button:hover:not(:disabled),
.date-panel__head button:focus-visible {
  outline: 0;
  background: var(--terracotta);
  color: white;
}

.date-panel__head button:disabled { opacity: 0.2; cursor: not-allowed; }

.date-weekdays,
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.date-weekdays span {
  padding: 7px 0;
  color: var(--ink-soft);
  text-align: center;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.date-grid button,
.date-grid__blank {
  min-width: 0;
  aspect-ratio: 1;
}

.date-grid button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 600 14px/1 "Cormorant Local", Georgia, serif;
}

.date-grid button:hover:not(:disabled),
.date-grid button:focus-visible,
.date-grid button.is-selected {
  outline: 0;
  background: var(--terracotta);
  color: white;
}

.date-grid button:disabled {
  color: rgba(46, 38, 31, 0.22);
  cursor: not-allowed;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 11px;
  margin: 4px 0 0;
  cursor: pointer;
}

.consent input {
  position: absolute;
  opacity: 0;
}

.consent > span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(55, 42, 31, 0.45);
  background: transparent;
}

.consent input:checked + span {
  border-color: var(--terracotta);
  background: var(--terracotta);
}

.consent input:checked + span::after {
  width: 5px;
  height: 9px;
  transform: translateY(-1px) rotate(45deg);
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  content: "";
}

.consent input:focus-visible + span {
  outline: 3px solid rgba(190, 82, 38, 0.42);
  outline-offset: 3px;
}

.consent small {
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.45;
}

.field-error--consent {
  grid-column: 1 / -1;
  margin: 3px 0 8px;
  padding-left: 33px;
}

.roman-cta--submit {
  width: 100%;
  min-height: 78px;
  border: 0;
  cursor: pointer;
}

.roman-cta--submit .roman-cta__seal {
  color: rgba(255, 244, 232, 0.76);
  font: 600 11px/1 "Cormorant Local", Georgia, serif;
  letter-spacing: 0.13em;
}

.roman-cta--submit .roman-cta__label strong {
  font-size: clamp(21px, 2.4vw, 29px);
}

.form-status {
  min-height: 18px;
  margin: -4px 0 0;
  color: #982b1f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.65fr;
  gap: clamp(30px, 5vw, 80px);
  padding: 72px var(--page-pad) 44px;
  background: var(--night);
  color: var(--paper-bright);
}

.site-footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--terracotta) 0 8px, var(--paper-deep) 8px 16px, #2a2925 16px 24px);
  content: "";
}

.site-footer > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-brand {
  font: 600 42px/1 "Cormorant Local", Georgia, serif;
  text-decoration: none;
}

.site-footer p,
.site-footer a,
.site-footer span,
.site-footer button {
  margin: 0;
  border: 0;
  background: transparent;
  color: rgba(251, 247, 239, 0.66);
  font-size: 11px;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
}

.site-footer button {
  min-height: 30px;
  padding: 0;
  cursor: pointer;
}

.site-footer strong {
  margin-bottom: 5px;
  color: var(--paper-bright);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer > small {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 247, 239, 0.15);
  color: rgba(251, 247, 239, 0.4);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-book {
  position: fixed;
  z-index: 55;
  right: 24px;
  bottom: 24px;
  display: none;
  min-width: 138px;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: var(--terracotta);
  box-shadow: 0 12px 30px rgba(76, 32, 15, 0.25);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 220ms var(--ease-roman);
}

.floating-book.is-hidden {
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
}

.floating-book i {
  font-size: 18px;
  font-style: normal;
}

.cookie-trigger {
  position: fixed;
  z-index: 58;
  right: 20px;
  bottom: 20px;
  display: flex;
  min-width: 94px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(248, 236, 219, 0.28);
  background: rgba(23, 23, 20, 0.93);
  color: white;
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cookie-trigger span {
  width: 14px;
  height: 14px;
  border: 1px dashed var(--terracotta-bright);
  border-radius: 50%;
}

dialog {
  width: min(680px, calc(100% - 36px));
  max-height: calc(100vh - 40px);
  padding: clamp(30px, 5vw, 58px);
  overflow: auto;
  border: 1px solid rgba(58, 43, 31, 0.28);
  background: var(--paper-bright);
  box-shadow: 0 40px 100px rgba(32, 23, 17, 0.3);
  color: var(--ink);
}

dialog::backdrop {
  background: rgba(20, 18, 15, 0.68);
  backdrop-filter: blur(6px);
}

dialog h2 {
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 70px);
}

dialog > p:not(.eyebrow) {
  color: var(--ink-soft);
  font: 400 17px/1.55 "Cormorant Local", Georgia, serif;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: 300 30px/1 Arial, sans-serif;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.dialog-action {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--terracotta);
  background: var(--terracotta);
  color: white;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dialog-action--ghost {
  background: transparent;
  color: var(--terracotta);
}

.booking-dialog {
  width: min(820px, calc(100% - 36px));
}

.booking-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 18px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.booking-summary > div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-summary span {
  color: var(--terracotta);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-summary strong {
  font: 600 17px/1.2 "Cormorant Local", Georgia, serif;
}

.dialog-note {
  font-size: 14px !important;
}

.booking-methods {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.booking-method {
  display: grid;
  min-height: 90px;
  align-content: center;
  gap: 3px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  background: rgba(231, 216, 195, 0.22);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.booking-method:hover,
.booking-method:focus-visible {
  transform: translateX(4px);
  border-color: var(--terracotta);
}

.booking-method--primary {
  border-color: #773018;
  background: #773018;
  color: white;
}

.booking-method span,
.booking-method small {
  color: var(--terracotta);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-method--primary span,
.booking-method--primary small {
  color: rgba(255, 240, 221, 0.72);
}

.booking-method strong {
  font: 600 24px/1 "Cormorant Local", Georgia, serif;
}

.local-toast {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 82px;
  max-width: min(340px, calc(100% - 44px));
  transform: translateY(14px);
  padding: 15px 18px;
  background: var(--night);
  color: white;
  opacity: 0;
  pointer-events: none;
  font-size: 10px;
  line-height: 1.4;
  transition: opacity 180ms ease, transform 260ms var(--ease-roman);
}

.local-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 720ms ease, transform 900ms var(--ease-roman);
}

.reveal.is-visible {
  transform: none;
  opacity: 1;
}

@keyframes tessera-arrive {
  to { transform: translate(0, 0) rotate(0); opacity: 0.72; }
}

@keyframes wolf-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes wolf-shimmer {
  0%, 28% { transform: translateX(-120%); }
  58%, 100% { transform: translateX(120%); }
}

@media (max-width: 1220px) and (min-width: 901px) {
  .hero-copy { left: 48px; width: 47vw; }
  .wordmark { font-size: 92px; }
  .hero-statement { font-size: 54px; }
  .hero-actions { max-width: 510px; }
  .roman-cta { width: 55%; }
  .roman-cta--hero { grid-template-columns: 1fr; }
  .menu-cta { width: 45%; }
  .booking { grid-template-columns: minmax(280px, 0.72fr) minmax(500px, 1.28fr); gap: 44px; }
}

@media (max-width: 900px) {
  :root { --page-pad: clamp(23px, 6vw, 42px); }
  html { scroll-padding-top: 78px; }
  .page-shell { padding-left: 0; }
  .chapter-rail { display: none; }

  .mobile-header {
    position: fixed;
    z-index: 70;
    top: 10px;
    right: 10px;
    left: 10px;
    display: grid;
    min-height: 62px;
    grid-template-columns: 1fr auto 52px;
    align-items: center;
    border: 1px solid rgba(61, 45, 32, 0.2);
    background: rgba(249, 244, 235, 0.92);
    box-shadow: 0 14px 40px rgba(64, 44, 29, 0.08);
    backdrop-filter: blur(16px);
  }

  .mobile-brand {
    padding-left: 18px;
    font: 600 23px/1 "Cormorant Local", Georgia, serif;
    text-decoration: none;
  }

  .mobile-book {
    display: grid;
    min-height: 44px;
    place-items: center;
    padding: 0 14px;
    color: var(--terracotta);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-menu-toggle {
    display: grid;
    width: 52px;
    height: 60px;
    place-content: center;
    gap: 6px;
    border: 0;
    border-left: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .mobile-menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    z-index: -1;
    inset: -10px;
    display: grid;
    align-content: center;
    gap: 0;
    padding: 100px 38px 42px;
    background: rgba(247, 239, 228, 0.985);
  }

  .mobile-menu[hidden] { display: none; }

  .mobile-menu a {
    display: flex;
    min-height: 63px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font: 500 31px/1 "Cormorant Local", Georgia, serif;
    text-decoration: none;
  }

  .mobile-menu a::after { color: var(--terracotta); content: "→"; }

  .hero {
    height: auto;
    min-height: 900px;
    padding: 120px var(--page-pad) 32px;
    background:
      linear-gradient(rgba(250, 246, 238, 0.84), rgba(242, 232, 218, 0.9)),
      url("assets/home-architecture-empty-4b-v2.png") 62% top / auto 100% no-repeat;
  }

  .hero::after { display: none; }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  .wordmark { font-size: clamp(74px, 22vw, 116px); }
  .hero-statement { font-size: clamp(45px, 13vw, 69px); }

  .hero-actions {
    display: grid;
    max-width: 520px;
    grid-template-columns: 1fr;
  }

  .roman-cta,
  .menu-cta {
    width: 100%;
    max-width: 470px;
  }

  .roman-cta--hero { grid-template-columns: 1fr; }
  .menu-cta { max-width: 260px; grid-template-columns: 54px 1fr; }

  .hero-review-proof {
    margin-top: 14px;
  }

  .wolf-stage {
    position: relative;
    top: auto;
    right: auto;
    width: 108%;
    margin: 34px -4% -18px;
  }

  .wolf-stage figcaption { display: none; }

  .dishes {
    margin-top: 0;
    padding: 64px var(--page-pad) 90px;
    background: var(--paper-bright);
  }

  .niche-gallery {
    height: auto;
    min-height: 0;
    max-height: none;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .niche-shell {
    min-height: min(122vw, 520px);
    border: 1px solid rgba(73, 52, 37, 0.16);
    border-radius: 48vw 48vw 4px 4px;
    background-image: url("assets/home-scene-4b-v4.png");
    background-repeat: no-repeat;
    background-size: 345% auto;
    box-shadow: 0 24px 58px rgba(74, 47, 29, 0.11);
  }

  .dish-niche:nth-child(1) .niche-shell { background-position: 11% bottom; }
  .dish-niche:nth-child(2) .niche-shell { background-position: 51% bottom; }
  .dish-niche:nth-child(3) .niche-shell { background-position: 93% bottom; }

  .niche-inscription {
    top: 10%;
    left: 12%;
    min-width: 150px;
    padding: 0;
  }

  .niche-inscription small { font-size: 8px; }
  .niche-inscription strong { font-size: 15px; }

  .cucina-heading {
    margin: 38px calc(var(--page-pad) * -1) -90px;
    padding: 62px var(--page-pad) 78px;
  }

  .cucina-heading > div { grid-template-columns: 1fr; gap: 24px; }
  .cucina-heading h2 { font-size: clamp(54px, 16vw, 82px); }

  .menu-section { padding-top: 86px; }
  .menu-heading { grid-template-columns: 1fr; gap: 24px; }
  .menu-heading .eyebrow,
  .menu-heading h2,
  .menu-heading > p:last-child { grid-column: auto; grid-row: auto; }
  .menu-heading h2 { font-size: clamp(57px, 16vw, 84px); }
  .menu-filters { flex-wrap: nowrap; margin-right: calc(var(--page-pad) * -1); padding-right: var(--page-pad); overflow-x: auto; scrollbar-width: none; }
  .menu-filter { flex: none; }
  .full-menu { grid-template-columns: 1fr; }
  .menu-item { min-height: 90px; }
  .menu-item strong { font-size: 25px; }
  .menu-closing { align-items: flex-start; flex-direction: column; padding-top: 25px; }

  .story {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 100px;
  }

  .story h2,
  .reviews h2,
  .booking h2 { font-size: clamp(53px, 15vw, 82px); }
  .story-emblem { width: min(100%, 440px); justify-self: center; }

  .reviews {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 90px;
  }

  .reviews-score { width: min(82vw, 390px); }

  .booking {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 96px;
  }

  .booking-intro { position: relative; top: auto; }
  .booking-form { max-width: 680px; }

  .site-footer { grid-template-columns: repeat(2, 1fr); }
  .floating-book { display: flex; }
  .cookie-trigger { right: auto; bottom: 12px; left: 12px; min-width: 48px; padding: 0 12px; }
  .cookie-trigger:not(:focus) { font-size: 0; }
}

@media (max-width: 700px) {
  .booking-picker,
  .guest-fields { grid-template-columns: 1fr; }
  .booking-picker .field--choice { min-height: 84px; border-right: 0; border-bottom: 1px solid rgba(252, 240, 223, 0.16); }
  .booking-picker .field--choice:last-child { border-bottom: 0; }
}

@media (max-width: 560px) {
  .mobile-book { display: none; }
  .mobile-header { grid-template-columns: 1fr 52px; }
  .hero { min-height: 870px; }
  .hero-location { font-size: 8px; }
  .roman-cta { grid-template-columns: 1fr 66px; }
  .roman-cta--hero { grid-template-columns: 1fr; }
  .roman-cta__label strong { font-size: 23px; }
  .menu-cta small { font-size: 6.5px; }
  .niche-shell { min-height: min(124vw, 485px); }
  .cucina-heading > div p { font-size: 17px; }
  .menu-section,
  .story,
  .booking { padding-right: 23px; padding-left: 23px; }
  .menu-heading > p:last-child,
  .story-copy > p,
  .booking-intro > p { font-size: 17px; }
  .booking-form { grid-template-columns: 1fr; padding: 34px 18px 28px; }
  .booking-picker,
  .guest-fields { grid-template-columns: 1fr; }
  .booking-picker .field--choice { min-height: 84px; border-right: 0; border-bottom: 1px solid rgba(252, 240, 223, 0.16); }
  .booking-picker .field--choice:last-child { border-bottom: 0; }
  .booking-step small { font-size: 7px; letter-spacing: 0.09em; }
  .guest-fields { gap: 8px; }
  .roman-cta--submit { grid-template-columns: 1fr 55px; }
  .roman-cta--submit .roman-cta__seal { font-size: 9px; }
  .field--wide { grid-column: auto; }
  .field-error--consent { grid-column: auto; }
  .contact-ledger div { grid-template-columns: 72px 1fr; }
  .map-consent { align-items: stretch; flex-direction: column; }
  .map-consent button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; padding: 62px 23px 110px; }
  .site-footer > small { grid-column: auto; }
  .booking-summary { grid-template-columns: 1fr; }
}

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

@media (forced-colors: active) {
  .hero { background-image: none; }
  .niche-shell { border: 2px solid CanvasText; background-image: none; }
  .roman-cta,
  .menu-cta,
  .menu-filter,
  .booking-method { border: 2px solid CanvasText; clip-path: none; }
  .rail-track__fill,
  .rail-track__marker { background: Highlight; }
}

/* Final production pass: loading, bilingual controls, light menu and live-booking states. */
body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  background:
    radial-gradient(circle at 50% 44%, rgba(184, 89, 43, 0.1), transparent 29%),
    linear-gradient(115deg, rgba(99, 66, 42, 0.025), transparent 35% 65%, rgba(99, 66, 42, 0.025)),
    var(--paper-bright);
  color: var(--ink);
  opacity: 1;
  visibility: visible;
  transition: opacity 620ms var(--ease-roman), visibility 620ms;
}

.site-loader::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(84, 56, 37, 0.12);
  content: "";
}

.site-loader__mark {
  display: grid;
  width: 54px;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  transform: rotate(45deg);
}

.site-loader__mark span {
  aspect-ratio: 1;
  background: var(--terracotta);
  opacity: 0;
  transform: scale(0.2) rotate(-45deg);
  animation: loader-tessera 1.15s var(--ease-roman) infinite alternate;
}

.site-loader__mark span:nth-child(2),
.site-loader__mark span:nth-child(4) { animation-delay: 90ms; background: #d4b99b; }
.site-loader__mark span:nth-child(3),
.site-loader__mark span:nth-child(7) { animation-delay: 180ms; background: var(--ink); }
.site-loader__mark span:nth-child(5) { animation-delay: 270ms; background: var(--terracotta-bright); }
.site-loader__mark span:nth-child(6),
.site-loader__mark span:nth-child(8) { animation-delay: 360ms; background: #78604c; }
.site-loader__mark span:nth-child(9) { animation-delay: 450ms; }

.site-loader > strong {
  margin-top: 10px;
  font: 600 34px/1 "Cormorant Local", Georgia, serif;
  letter-spacing: -0.035em;
}

.site-loader > strong em {
  color: var(--terracotta);
  font-style: normal;
}

.site-loader > small {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-loader > i {
  position: relative;
  width: 118px;
  height: 1px;
  margin-top: 7px;
  overflow: hidden;
  background: rgba(91, 62, 42, 0.15);
}

.site-loader > i::after {
  position: absolute;
  inset: 0;
  background: var(--terracotta);
  content: "";
  transform: translateX(-100%);
  animation: loader-line 1.3s var(--ease-roman) infinite;
}

body.is-ready .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.language-toggle {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(23, 23, 20, 0.42);
  cursor: pointer;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.language-toggle span {
  transition: color 180ms ease, transform 180ms ease;
}

.language-toggle .is-current {
  color: var(--terracotta);
  transform: translateY(-1px);
}

.language-toggle i {
  color: rgba(23, 23, 20, 0.2);
  font-style: normal;
}

.rail-foot .language-toggle {
  margin-bottom: 9px;
}

.language-toggle--mobile {
  display: none;
  width: 56px;
  align-self: stretch;
  border-left: 1px solid var(--line);
}

.eyebrow b,
.stone-link b,
.menu-filter b {
  font: inherit;
}

.menu-section {
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(90px, 9vw, 145px) var(--page-pad) clamp(88px, 8vw, 130px);
  background:
    radial-gradient(circle at 87% 6%, rgba(170, 79, 36, 0.1), transparent 24%),
    radial-gradient(circle at 8% 72%, rgba(113, 87, 60, 0.06), transparent 20%),
    linear-gradient(112deg, transparent 0 49.8%, rgba(75, 53, 36, 0.04) 49.8% 50%, transparent 50%),
    #f7f0e5;
  color: var(--ink);
}

.menu-section::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: radial-gradient(rgba(91, 68, 49, 0.09) 0.55px, transparent 0.55px);
  background-size: 7px 7px;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.menu-section > * {
  position: relative;
  z-index: 1;
}

.menu-heading > p:last-child {
  color: var(--ink-soft);
}

.menu-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.25vw, 18px);
  margin: clamp(52px, 6vw, 86px) 0 clamp(48px, 5vw, 72px);
}

.menu-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(70, 47, 31, 0.16);
  background: #e9ddcc;
  box-shadow: 0 18px 42px rgba(77, 52, 34, 0.11);
}

.menu-photo--wide {
  grid-column: auto;
}

.menu-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.012);
  transition: transform 900ms var(--ease-roman), filter 350ms ease;
}

.menu-photo--wide img {
  aspect-ratio: 4 / 3;
}

.menu-photo:hover img {
  transform: scale(1.045);
  filter: saturate(1.035) contrast(1.015);
}

.menu-photo figcaption {
  display: grid;
  min-height: 82px;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  background: rgba(252, 247, 239, 0.96);
}

.menu-photo figcaption > span {
  color: var(--terracotta);
  font: italic 14px/1 "Cormorant Local", Georgia, serif;
}

.menu-photo figcaption div {
  display: grid;
  gap: 4px;
}

.menu-photo figcaption strong {
  font: 600 clamp(18px, 1.7vw, 25px) / 1 "Cormorant Local", Georgia, serif;
}

.menu-photo figcaption small {
  color: var(--ink-soft);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-filters {
  margin-top: 0;
}

.menu-filter {
  border-color: rgba(72, 52, 38, 0.22);
  color: rgba(23, 23, 20, 0.64);
}

.menu-filter:hover,
.menu-filter:focus-visible,
.menu-filter.is-active {
  border-color: var(--terracotta);
  background: rgba(165, 70, 34, 0.09);
  color: var(--ink);
}

.full-menu {
  border-top-color: rgba(72, 52, 38, 0.2);
}

.menu-item {
  border-bottom-color: rgba(72, 52, 38, 0.17);
}

.menu-item small {
  color: rgba(23, 23, 20, 0.46);
}

.menu-closing {
  color: rgba(23, 23, 20, 0.48);
}

.stone-link--light {
  border-color: rgba(72, 52, 38, 0.36);
  color: var(--ink);
}

.availability-status {
  display: grid;
  min-height: 82px;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 15px;
  margin: -18px 0 28px;
  padding: 15px 18px;
  border: 1px solid rgba(69, 50, 36, 0.13);
  background: rgba(255, 252, 247, 0.55);
  transition: border-color 220ms ease, background-color 220ms ease;
}

.availability-status__pulse {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9b8d7e;
}

.availability-status__pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: #9b8d7e;
  content: "";
  opacity: 0.35;
}

.availability-status > div {
  display: grid;
  gap: 2px;
}

.availability-status small {
  color: var(--terracotta);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.availability-status strong {
  font: 600 19px/1.1 "Cormorant Local", Georgia, serif;
}

.availability-status p {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.4;
}

.availability-status[data-state="loading"] .availability-status__pulse {
  background: #d38a54;
  animation: availability-pulse 900ms ease infinite;
}

.availability-status[data-state="available"] {
  border-color: rgba(70, 92, 52, 0.3);
  background: rgba(230, 237, 221, 0.62);
}

.availability-status[data-state="available"] .availability-status__pulse {
  background: #52663e;
}

.availability-status[data-state="unavailable"],
.availability-status[data-state="offline"] {
  border-color: rgba(165, 70, 34, 0.3);
  background: rgba(247, 229, 216, 0.72);
}

.availability-status[data-state="unavailable"] .availability-status__pulse,
.availability-status[data-state="offline"] .availability-status__pulse {
  background: var(--terracotta);
}

.booking-picker .select-trigger:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.roman-cta--submit:disabled {
  cursor: not-allowed;
  filter: grayscale(0.2);
  opacity: 0.48;
}

.booking-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-confirmation {
  display: grid;
  gap: 6px;
  margin: 22px 0 6px;
  padding: 18px;
  border: 1px solid rgba(71, 88, 52, 0.26);
  background: rgba(226, 235, 216, 0.72);
}

.booking-confirmation[hidden],
.booking-methods--fallback[hidden] {
  display: none;
}

.booking-confirmation small {
  color: var(--ink-soft);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.booking-confirmation strong {
  color: var(--olive);
  font: 600 29px/1 "Cormorant Local", Georgia, serif;
  letter-spacing: 0.04em;
}

.site-footer > small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer > small > span + span::before {
  margin: 0 8px;
  content: "·";
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  text-transform: none;
}

.powered-by img {
  width: 112px;
  height: auto;
  opacity: 0.86;
}

@keyframes loader-tessera {
  to { opacity: 1; transform: scale(1) rotate(-45deg); }
}

@keyframes loader-line {
  0% { transform: translateX(-100%); }
  52%, 100% { transform: translateX(100%); }
}

@keyframes availability-pulse {
  50% { box-shadow: 0 0 0 8px rgba(211, 138, 84, 0.12); }
}

@media (max-width: 1100px) {
  .menu-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-photo--wide { grid-column: auto; }
}

@media (max-width: 900px) {
  .mobile-header { grid-template-columns: 1fr 56px auto 52px; }
  .language-toggle--mobile { display: inline-flex; }

  .dishes {
    padding-right: 0;
    padding-left: 0;
  }

  .niche-gallery {
    display: grid;
    width: 100%;
    grid-auto-columns: minmax(260px, 72vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    padding: 0 var(--page-pad) 20px;
    overflow-x: auto;
    scroll-padding-inline: var(--page-pad);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .niche-gallery::-webkit-scrollbar,
  .menu-gallery::-webkit-scrollbar { display: none; }

  .dish-niche {
    height: 390px;
    scroll-snap-align: start;
  }

  .niche-shell {
    min-height: 0;
    height: 100%;
    border-radius: 180px 180px 4px 4px;
  }

  .niche-inscription {
    top: 10%;
    left: 11%;
    min-width: 0;
  }

  .niche-inscription small { font-size: 7px; }
  .niche-inscription strong { font-size: 14px; }

  .cucina-heading {
    margin: 26px 0 -90px;
  }

  .menu-gallery {
    display: grid;
    margin-right: calc(var(--page-pad) * -1);
    grid-auto-columns: minmax(245px, 72vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    padding-right: var(--page-pad);
    overflow-x: auto;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .menu-photo,
  .menu-photo--wide {
    grid-column: auto;
    scroll-snap-align: start;
  }

  .menu-photo img,
  .menu-photo--wide img { aspect-ratio: 4 / 3; }

  .site-footer > small {
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .mobile-header { grid-template-columns: 1fr 56px 52px; }
  .dish-niche { height: 326px; }
  .niche-gallery { grid-auto-columns: 78vw; }
  .niche-shell { border-radius: 150px 150px 4px 4px; }
  .menu-gallery { grid-auto-columns: 78vw; margin-top: 40px; }
  .menu-photo figcaption { min-height: 72px; }
  .menu-photo figcaption strong { font-size: 20px; }
  .availability-status { margin-top: -18px; grid-template-columns: 18px 1fr; padding: 14px; }
  .site-footer > small { display: grid; justify-items: start; }
  .site-footer > small > span + span::before { margin-left: 0; }
  .powered-by { margin: 8px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader__mark span,
  .site-loader > i::after,
  .availability-status__pulse { animation: none !important; }
  .site-loader__mark span { opacity: 1; transform: scale(1) rotate(-45deg); }
}

/* V9 — one unified, photographic menu. The original 3:2 framing is preserved. */
.menu-section .menu-filters {
  margin: clamp(44px, 5vw, 72px) 0 28px;
}

.menu-section .full-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  border: 0;
}

.menu-section .menu-item {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(72, 52, 38, 0.17);
  background: rgba(255, 252, 246, 0.76);
  box-shadow: 0 16px 38px rgba(79, 55, 35, 0.08);
  transition: border-color 260ms ease, box-shadow 450ms ease, transform 450ms var(--ease-roman);
}

.menu-section .menu-item:hover {
  border-color: rgba(165, 70, 34, 0.34);
  box-shadow: 0 22px 52px rgba(79, 55, 35, 0.13);
  transform: translateY(-4px);
}

.menu-section .menu-item[hidden] {
  display: none;
}

.menu-item__media,
.menu-item__mosaic {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(72, 52, 38, 0.16);
  background: #d8c4a9;
}

.menu-item__media {
  padding: clamp(7px, 0.75vw, 11px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.16), transparent 22% 78%, rgba(66,42,24,.08)),
    repeating-linear-gradient(90deg, #c39a70 0 7px, #ead7bd 7px 14px, #7f3e27 14px 21px, #d8b68f 21px 28px);
}

.menu-item__media::after {
  position: absolute;
  inset: clamp(7px, 0.75vw, 11px);
  border: 1px solid rgba(255, 248, 235, 0.42);
  box-shadow: inset 0 0 28px rgba(255, 221, 175, 0.09);
  content: "";
  pointer-events: none;
}

.menu-item__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: saturate(0.99) contrast(1.01);
  transition: filter 380ms ease;
}

.menu-item:hover .menu-item__media img {
  transform: none;
  filter: saturate(1.025) contrast(1.025);
}

.menu-item__mosaic {
  display: grid !important;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 30%, rgba(255,255,255,.28) 30.4% 30.9%, transparent 31.2%),
    repeating-conic-gradient(from 45deg at 50% 50%, #d9bb94 0 11.25deg, #c9956e 11.25deg 22.5deg, #ead9bd 22.5deg 33.75deg, #985037 33.75deg 45deg);
}

.menu-item__mosaic::before {
  position: absolute;
  inset: clamp(15px, 1.8vw, 25px);
  border: 1px solid rgba(255, 248, 235, 0.6);
  outline: 7px solid rgba(75, 45, 27, 0.13);
  background: rgba(245, 230, 207, 0.88);
  box-shadow: inset 0 0 0 1px rgba(98, 57, 32, 0.18), 0 14px 36px rgba(77, 48, 29, 0.13);
  content: "";
}

.menu-item__mosaic span {
  position: relative;
  z-index: 1;
  color: rgba(121, 57, 35, 0.72);
  font: 500 clamp(44px, 5vw, 78px)/1 "Cormorant Local", Georgia, serif;
  letter-spacing: 0.03em;
}

.menu-section .menu-item__copy {
  display: grid;
  min-height: 102px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
}

.menu-section .menu-item__copy > div {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.menu-section .menu-item__copy strong {
  font: 600 clamp(21px, 1.85vw, 28px)/0.98 "Cormorant Local", Georgia, serif;
}

.menu-section .menu-item__copy small {
  color: rgba(23, 23, 20, 0.5);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.menu-section .menu-item__number {
  color: var(--terracotta);
  font: italic 15px/1 "Cormorant Local", Georgia, serif;
}

@media (max-width: 1050px) {
  .menu-section .full-menu { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .menu-section .menu-filters {
    flex-wrap: nowrap;
    margin-right: calc(var(--page-pad) * -1);
    padding-right: var(--page-pad);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .menu-section .menu-filters::-webkit-scrollbar { display: none; }
  .menu-section .menu-filter { flex: 0 0 auto; }
  .menu-section .full-menu { gap: 10px; }
  .menu-section .menu-item__copy {
    min-height: 92px;
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 7px;
    padding: 12px 10px;
  }
  .menu-section .menu-item__copy strong { font-size: clamp(17px, 5.1vw, 22px); }
  .menu-section .menu-item__copy small { font-size: 6px; letter-spacing: 0.09em; }
  .menu-item__media { padding: 5px; }
  .menu-item__media::after { inset: 5px; }
  .menu-item__mosaic::before { inset: 12px; outline-width: 4px; }
  .menu-item__mosaic span { font-size: clamp(35px, 12vw, 58px); }
  .menu-section .menu-item:hover { transform: none; }
}

@media (max-width: 370px) {
  .menu-section .full-menu { grid-template-columns: 1fr; }
  .menu-section .menu-item__copy strong { font-size: 22px; }
}
