/* ============================================================
   VILLA MARIE — Une Saison en Toscane
   Immersive one-page experience.
   Type: Italiana (display) · Cormorant Garamond (serif) · Jost (labels)
   ============================================================ */

:root {
  --night:  #15170f;
  --night2: #1d2016;
  --ivory:  #f2ecdf;
  --ivory2: #eae2d0;
  --bone:   #faf6ec;
  --gold:   #c2a472;
  --gold2:  #9a7c4e;
  --terra:  #b06a48;
  --ink:    #23261b;
  --ash:    rgba(242, 236, 223, .62);
  --rule-d: rgba(242, 236, 223, .14);
  --rule-l: rgba(35, 38, 27, .14);

  --disp:  "Italiana", serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", sans-serif;

  --pad: clamp(1.4rem, 5vw, 5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--night);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.lock { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--night); }

/* custom cursor active on fine pointers */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
}

/* ---------------------------------------------------- grain + vignette */

.grain {
  position: fixed;
  inset: -100px;
  z-index: 90;
  pointer-events: none;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  animation: grainShift 1.2s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); }
  25% { transform: translate(-30px,20px); }
  50% { transform: translate(20px,-25px); }
  75% { transform: translate(-15px,-10px); }
  100% { transform: translate(0,0); }
}

/* -------------------------------------------------------- preloader */

.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--night);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: transform 1.1s cubic-bezier(.76, 0, .24, 1);
}
body.loaded .loader { transform: translateY(-101%); }
.loader .l-mark {
  font-family: var(--disp);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: .3em;
  text-indent: .3em;
  text-transform: uppercase;
  color: var(--ivory);
  animation: loaderIn 1.4s cubic-bezier(.2,.6,.2,1) both;
}
.loader .l-sub {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 300;
  letter-spacing: .55em;
  text-indent: .55em;
  text-transform: uppercase;
  color: var(--gold);
  animation: loaderIn 1.4s .2s cubic-bezier(.2,.6,.2,1) both;
}
.loader .l-line {
  width: min(280px, 50vw);
  height: 1px;
  background: var(--rule-d);
  overflow: hidden;
}
.loader .l-line i {
  display: block;
  height: 100%;
  background: var(--gold);
  animation: loadbar 2s cubic-bezier(.4,0,.2,1) both;
}
@keyframes loadbar { from { width: 0 } to { width: 100% } }
@keyframes loaderIn {
  from { opacity: 0; transform: translateY(24px); letter-spacing: .6em; }
  to   { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------ cursor */

.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  z-index: 280;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot, .cursor-ring { display: block; }
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--gold);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(194, 164, 114, .65);
  transition: width .35s ease, height .35s ease, background .35s ease, border-color .35s;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: .55rem;
  letter-spacing: .26em;
  text-indent: .26em;
  text-transform: uppercase;
  color: var(--night);
}
@media (hover: hover) and (pointer: fine) { .cursor-ring { display: flex; } }
.cursor-ring span { opacity: 0; transition: opacity .25s; }
.cursor-ring.is-link { width: 64px; height: 64px; background: rgba(194,164,114,.18); }
.cursor-ring.is-view { width: 84px; height: 84px; background: var(--gold); border-color: var(--gold); }
.cursor-ring.is-view span { opacity: 1; }

/* --------------------------------------------------------- top bar */

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem var(--pad);
  mix-blend-mode: difference; /* stays legible over light & dark */
}
.topbar .t-mark {
  font-family: var(--disp);
  font-size: 1.35rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: #fff;
}
.topbar .t-right {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.topbar .t-book,
.topbar .t-menu {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 300;
  letter-spacing: .34em;
  text-indent: .34em;
  text-transform: uppercase;
  color: #fff;
  background: none;
  border: 0;
  position: relative;
  padding-bottom: .4rem;
}
.topbar .t-book::after,
.topbar .t-menu::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s ease;
}
.topbar .t-book:hover::after,
.topbar .t-menu:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 640px) { .topbar .t-book { display: none; } }

/* --------------------------------------------------- overlay menu */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--night);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s;
}
body.menu-open .menu-overlay { opacity: 1; visibility: visible; }
.menu-overlay .m-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad);
}
.menu-overlay .m-item {
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
  padding: .45rem 0;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
body.menu-open .m-item { opacity: 1; transform: none; }
body.menu-open .m-item:nth-child(2) { transition-delay: .06s }
body.menu-open .m-item:nth-child(3) { transition-delay: .12s }
body.menu-open .m-item:nth-child(4) { transition-delay: .18s }
body.menu-open .m-item:nth-child(5) { transition-delay: .24s }
body.menu-open .m-item:nth-child(6) { transition-delay: .3s }
body.menu-open .m-item:nth-child(7) { transition-delay: .36s }
.menu-overlay .m-num {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .3em;
  color: var(--gold);
  width: 2.6rem;
  flex: none;
}
.menu-overlay .m-link {
  font-family: var(--disp);
  font-size: clamp(2rem, 5.4vh, 3.4rem);
  letter-spacing: .04em;
  color: var(--ivory);
  line-height: 1.15;
  transition: color .3s, letter-spacing .45s ease;
}
.menu-overlay .m-item:hover .m-link { color: var(--gold); letter-spacing: .09em; }
.menu-overlay .m-right {
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--rule-d);
}
.menu-overlay .m-right img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease, transform .8s ease;
  transform: scale(1.06);
}
.menu-overlay .m-right img.show { opacity: .85; transform: scale(1); }
.menu-overlay .m-close {
  position: absolute;
  top: 1.7rem;
  right: var(--pad);
  z-index: 2;
  background: none; border: 0;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .34em;
  text-indent: .34em;
  text-transform: uppercase;
  color: var(--ivory);
}
.menu-overlay .m-foot {
  position: absolute;
  bottom: 2rem;
  left: var(--pad);
  font-family: var(--sans);
  font-weight: 300;
  font-size: .68rem;
  letter-spacing: .22em;
  color: var(--ash);
}
@media (max-width: 860px) {
  .menu-overlay { grid-template-columns: 1fr; }
  .menu-overlay .m-right { display: none; }
}

/* ---------------------------------------------------- chapter rail */

.rail {
  position: fixed;
  right: clamp(.9rem, 2.4vw, 2.4rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  mix-blend-mode: difference;
}
.rail a {
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .18em;
  color: rgba(255,255,255,.4);
  transition: color .3s, letter-spacing .3s;
  writing-mode: vertical-rl;
}
.rail a.on { color: #fff; }
@media (max-width: 860px) { .rail { display: none; } }

/* ------------------------------------------------------------ hero */

.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero video, .hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 10%, rgba(21,23,15,0) 40%, rgba(21,23,15,.55) 100%),
    linear-gradient(180deg, rgba(21,23,15,.35), rgba(21,23,15,.05) 40%, rgba(21,23,15,.75));
}
.hero .h-inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) clamp(2.2rem, 6vh, 4.5rem);
}
.hero .h-eyebrow {
  font-family: var(--sans);
  font-weight: 300;
  font-size: .7rem;
  letter-spacing: .5em;
  text-indent: .5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: clamp(4.6rem, 16.5vw, 15rem);
  line-height: .88;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ivory);
}
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ch {
  display: inline-block;
  transform: translateY(110%) rotate(4deg);
  animation: chIn 1s cubic-bezier(.2,.65,.2,1) forwards;
  animation-delay: calc(1.15s + var(--i) * .045s);
}
@keyframes chIn { to { transform: none; } }
.hero h1 .ln:nth-child(2) { margin-left: clamp(2rem, 14vw, 14rem); }
.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold);
}
.hero .h-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-top: clamp(1.8rem, 4vh, 3rem);
  font-family: var(--sans);
  font-weight: 300;
  font-size: .66rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ash);
}
.hero .h-foot .gps { display: flex; flex-direction: column; gap: .3rem; }
.hero .h-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: .02em;
  text-transform: none;
  color: var(--ivory);
}
.hero .h-scroll {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero .h-scroll::after {
  content: "";
  width: 5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleX(.3); transform-origin: left; opacity: .4 }
  50% { transform: scaleX(1); opacity: 1 }
}
@media (max-width: 640px) { .hero .h-foot .gps { display: none } }

/* ------------------------------------------------ generic chapter */

.chapter { position: relative; }
.ch-head {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 0 var(--pad);
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.ch-head .ch-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--gold);
  flex: none;
}
.ch-head .ch-rule { flex: 1; height: 1px; background: currentColor; opacity: .14; }
.ch-head .ch-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: .68rem;
  letter-spacing: .44em;
  text-indent: .44em;
  text-transform: uppercase;
  opacity: .65;
}

.t-display {
  font-family: var(--disp);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.t-display em {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  color: var(--gold);
  letter-spacing: 0;
}
.t-lead {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.5;
}
.t-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: .66rem;
  letter-spacing: .4em;
  text-indent: .4em;
  text-transform: uppercase;
  color: var(--gold);
}
.t-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: .98rem;
  line-height: 1.85;
  letter-spacing: .01em;
}

.light { background: var(--ivory); color: var(--ink); }
.light .t-body { color: rgba(35,38,27,.78); }
.light .ch-head .ch-label { opacity: .55; }
.cream { background: var(--ivory2); color: var(--ink); }

/* reveal */
.rv { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(.2,.6,.2,1), transform 1s cubic-bezier(.2,.6,.2,1); }
.rv.in { opacity: 1; transform: none; }
.rv[data-d="1"] { transition-delay: .1s } .rv[data-d="2"] { transition-delay: .2s } .rv[data-d="3"] { transition-delay: .3s }

/* parallax media */
.px-wrap { overflow: hidden; position: relative; }
.px-wrap img { width: 100%; height: 115%; object-fit: cover; will-change: transform; }

/* ---------------------------------------------------- chapter I — estate */

.estate { padding: clamp(5rem, 11vw, 9rem) 0 0; }
.estate .e-statement {
  padding: 0 var(--pad);
  max-width: 1200px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.45;
  font-weight: 400;
}
.estate .e-statement .w-img {
  display: inline-block;
  width: clamp(3.2rem, 7vw, 6rem);
  height: clamp(2rem, 4.4vw, 3.6rem);
  border-radius: 99px;
  overflow: hidden;
  vertical-align: middle;
  margin: 0 .35em;
  transform: translateY(-.1em);
}
.estate .e-statement .w-img img { width: 100%; height: 100%; object-fit: cover; }
.estate .e-statement em { font-style: italic; color: var(--gold2); }

.estate .e-collage {
  position: relative;
  margin-top: clamp(4rem, 9vw, 7rem);
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.4rem;
  align-items: start;
}
.estate .e-collage figure { position: relative; }
.estate .e-collage figcaption {
  margin-top: .8rem;
  font-family: var(--sans);
  font-weight: 300;
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(35,38,27,.5);
  display: flex;
  gap: .8rem;
  align-items: center;
}
.estate .e-collage figcaption::before { content: ""; width: 1.6rem; height: 1px; background: var(--gold); }
.estate .c1 { grid-column: 1 / 6; }
.estate .c2 { grid-column: 7 / 13; margin-top: clamp(3rem, 9vw, 8rem); }
.estate .c3 { grid-column: 3 / 9; margin-top: clamp(2rem, 6vw, 5rem); }
.estate .c1 .px-wrap { aspect-ratio: 4 / 5; }
.estate .c2 .px-wrap { aspect-ratio: 16 / 11; }
.estate .c3 .px-wrap { aspect-ratio: 16 / 9; }
@media (max-width: 760px) {
  .estate .c1, .estate .c2, .estate .c3 { grid-column: 1 / -1; margin-top: 0; }
}

/* history strip */
.history {
  margin-top: clamp(5rem, 10vw, 8rem);
  border-top: 1px solid var(--rule-l);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.history .h-text { padding: clamp(3rem, 6vw, 5rem) var(--pad); }
.history .h-text .t-body { max-width: 34rem; margin-top: 1.6rem; }
.history .h-years {
  border-left: 1px solid var(--rule-l);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.history .y-row {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1.6rem var(--pad);
  border-bottom: 1px solid var(--rule-l);
}
.history .y-row:first-child { border-top: 1px solid var(--rule-l); }
.history .y-num {
  font-family: var(--disp);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  color: var(--gold2);
  flex: none;
  width: 7rem;
}
.history .y-row p { font-family: var(--sans); font-weight: 300; font-size: .92rem; color: rgba(35,38,27,.72); }
@media (max-width: 860px) {
  .history { grid-template-columns: 1fr; }
  .history .h-years { border-left: 0; }
}

/* numbers band */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule-l);
}
.numbers .n {
  padding: clamp(2.4rem, 5vw, 4rem) 1.4rem;
  text-align: center;
  border-right: 1px solid var(--rule-l);
}
.numbers .n:last-child { border-right: 0; }
.numbers .n b {
  display: block;
  font-family: var(--disp);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  color: var(--ink);
}
.numbers .n b sup { font-size: .4em; color: var(--gold2); }
.numbers .n span {
  display: block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-weight: 300;
  font-size: .62rem;
  letter-spacing: .34em;
  text-indent: .34em;
  text-transform: uppercase;
  color: rgba(35,38,27,.55);
}
@media (max-width: 760px) {
  .numbers { grid-template-columns: 1fr 1fr; }
  .numbers .n:nth-child(2n) { border-right: 0; }
  .numbers .n:nth-child(-n+2) { border-bottom: 1px solid var(--rule-l); }
}

/* ------------------------------------------------- chapter II — villa */

.villa { background: var(--night); color: var(--ivory); }
.villa .ch-head { padding-top: clamp(5rem, 10vw, 8rem); }
.villa .v-intro {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: clamp(3rem, 7vw, 6rem);
}
.villa .v-intro .t-body { color: var(--ash); margin-top: 1.6rem; max-width: 30rem; }
@media (max-width: 860px) { .villa .v-intro { grid-template-columns: 1fr; } }

/* horizontal scroll track */
.hscroll { position: relative; }
.hscroll .hs-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hscroll .hs-track {
  display: flex;
  gap: clamp(1.6rem, 4vw, 4rem);
  padding: 0 var(--pad);
  will-change: transform;
}
.slide {
  position: relative;
  flex: none;
  width: min(78vw, 880px);
  display: grid;
  grid-template-columns: 1fr;
}
.slide .s-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.slide .s-media img { width: 100%; height: 100%; object-fit: cover; }
.slide .s-word {
  position: absolute;
  top: 50%;
  left: -0.6em;
  transform: translateY(-50%);
  font-family: var(--disp);
  font-size: clamp(3.4rem, 9vw, 8rem);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ivory);
  mix-blend-mode: difference;
  pointer-events: none;
  white-space: nowrap;
}
.slide .s-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .6rem 2.4rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--rule-d);
  font-family: var(--sans);
  font-weight: 300;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ash);
}
.slide .s-meta .s-name { color: var(--gold); }
.slide.s-final {
  width: min(60vw, 560px);
  align-self: stretch;
  display: flex;
}
.slide.s-final a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.6rem;
  border: 1px solid var(--rule-d);
  padding: clamp(2rem, 4vw, 4rem);
  transition: border-color .4s, background .4s;
}
.slide.s-final a:hover { border-color: var(--gold); background: rgba(194,164,114,.05); }
.hs-progress {
  position: absolute;
  left: var(--pad); right: var(--pad);
  bottom: clamp(1.6rem, 4vh, 3rem);
  height: 1px;
  background: var(--rule-d);
}
.hs-progress i { display: block; height: 100%; width: 0; background: var(--gold); }

/* mobile: vertical fallback */
@media (max-width: 760px), (prefers-reduced-motion: reduce) {
  .hscroll { height: auto !important; }
  .hscroll .hs-sticky { position: static; height: auto; overflow: visible; }
  .hscroll .hs-track { flex-direction: column; transform: none !important; }
  .slide, .slide.s-final { width: 100%; }
  .hs-progress { display: none; }
}

/* ---------------------------------------------- chapter III — gardens */

.gardens { background: var(--ivory); color: var(--ink); padding-bottom: clamp(5rem, 10vw, 8rem); }
.gardens .ch-head { padding-top: clamp(5rem, 10vw, 8rem); }
.g-feature {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.4rem;
  padding: 0 var(--pad);
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.g-feature .g-media { grid-column: 1 / 8; }
.g-feature .g-text { grid-column: 9 / 13; }
.g-feature.rev .g-media { grid-column: 6 / 13; order: 2; }
.g-feature.rev .g-text { grid-column: 1 / 5; order: 1; }
.g-feature .px-wrap { aspect-ratio: 16 / 10; }
.g-feature h3 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.1;
  margin: 1rem 0 1.2rem;
}
.g-feature h3 em { font-family: var(--serif); font-style: italic; text-transform: none; color: var(--gold2); }
@media (max-width: 860px) {
  .g-feature .g-media, .g-feature .g-text,
  .g-feature.rev .g-media, .g-feature.rev .g-text { grid-column: 1 / -1; order: 0; }
}

/* marquee separator */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--rule-l);
  border-bottom: 1px solid var(--rule-l);
  padding: 1.1rem 0;
  margin: 0 0 clamp(4rem, 8vw, 7rem);
  white-space: nowrap;
}
.marquee .mq-inner {
  display: inline-flex;
  gap: 3.4rem;
  padding-right: 3.4rem;
  animation: mq 38s linear infinite;
}
.marquee .mq-inner span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(35,38,27,.65);
  display: inline-flex;
  align-items: center;
  gap: 3.4rem;
}
.marquee .mq-inner span::after { content: "✦"; font-size: .7rem; color: var(--gold); font-style: normal; }
@keyframes mq { to { transform: translateX(-50%); } }

.dark .marquee { border-color: var(--rule-d); }
.dark .marquee .mq-inner span { color: var(--ash); }

/* ---------------------------------------------- chapter IV — spa (dark) */

.spa { background: var(--night2); color: var(--ivory); padding-bottom: clamp(5rem, 10vw, 8rem); }
.spa .ch-head { padding-top: clamp(5rem, 10vw, 8rem); }
.spa .s-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.4rem;
  padding: 0 var(--pad);
  align-items: end;
}
.spa .s-big { grid-column: 1 / 8; }
.spa .s-big .px-wrap { aspect-ratio: 4 / 3; }
.spa .s-side { grid-column: 9 / 13; display: flex; flex-direction: column; gap: 1.4rem; }
.spa .s-side .px-wrap { aspect-ratio: 4 / 3; }
.spa .s-list { padding: 0 var(--pad); margin-top: clamp(3rem, 6vw, 5rem); }
.spa .s-list li {
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule-d);
  transition: padding-left .4s ease;
}
.spa .s-list li:first-child { border-top: 1px solid var(--rule-d); }
.spa .s-list li:hover { padding-left: 1rem; }
.spa .s-list .li-name {
  font-family: var(--disp);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.spa .s-list .li-note {
  font-family: var(--sans);
  font-weight: 300;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: right;
}
@media (max-width: 860px) {
  .spa .s-big, .spa .s-side { grid-column: 1 / -1; }
}

/* ---------------------------------------------- chapter V — tavola */

.tavola { background: var(--bone); color: var(--ink); padding-bottom: clamp(5rem, 10vw, 8rem); }
.tavola .ch-head { padding-top: clamp(5rem, 10vw, 8rem); }
.tavola .t-quote {
  padding: 0 var(--pad);
  max-width: 1100px;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

/* photo marquees */
.food-rows { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: clamp(4rem, 8vw, 6rem); }
.food-row { overflow: hidden; }
.food-row .fr-inner {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: mq 46s linear infinite;
}
.food-row.reverse .fr-inner { animation-direction: reverse; }
.food-row:hover .fr-inner { animation-play-state: paused; }
.food-row img {
  height: clamp(170px, 26vw, 300px);
  width: auto;
  flex: none;
}

/* index list with floating preview */
.dine-index { padding: 0 var(--pad); position: relative; }
.dine-index a {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  align-items: baseline;
  gap: 2rem;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--rule-l);
  position: relative;
}
.dine-index a:first-child { border-top: 1px solid var(--rule-l); }
.dine-index .di-num { font-family: var(--serif); font-style: italic; color: var(--gold2); }
.dine-index .di-name {
  font-family: var(--disp);
  font-size: clamp(1.8rem, 4.4vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: .03em;
  transition: letter-spacing .45s ease, color .3s;
}
.dine-index a:hover .di-name { letter-spacing: .07em; color: var(--gold2); }
.dine-index .di-note {
  font-family: var(--sans);
  font-weight: 300;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(35,38,27,.5);
}
.dine-preview {
  position: fixed;
  z-index: 60;
  width: 270px;
  aspect-ratio: 3 / 4;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transform: scale(.92) rotate(2deg);
  transition: opacity .35s ease, transform .45s ease;
}
.dine-preview img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .3s; }
.dine-preview img.show { opacity: 1; }
.dine-preview.on { opacity: 1; transform: none; }
@media (hover: none) { .dine-preview { display: none; } }

/* ---------------------------------------------- chapter VI — feste */

.feste { position: relative; isolation: isolate; color: var(--ivory); }
.feste .f-band {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.feste .f-band > .px-wrap { position: absolute; inset: 0; z-index: -1; }
.feste .f-band > .px-wrap img { height: 120%; }
.feste .f-band::after {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(21,23,15,.25), rgba(21,23,15,.05) 40%, rgba(21,23,15,.8));
}
.feste .f-content { position: relative; z-index: 1; padding: 0 var(--pad) clamp(2.5rem, 6vw, 5rem); width: 100%; }
.feste .f-content .t-body { max-width: 30rem; color: var(--ash); margin-top: 1.4rem; }
.feste .f-cards {
  position: relative;
  z-index: 1;
  background: var(--night);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feste .f-cards a {
  padding: clamp(1.8rem, 3.5vw, 3rem) clamp(1.2rem, 2.4vw, 2.4rem);
  border-right: 1px solid var(--rule-d);
  border-top: 1px solid var(--rule-d);
  transition: background .4s;
}
.feste .f-cards a:last-child { border-right: 0; }
.feste .f-cards a:hover { background: var(--night2); }
.feste .f-cards .fc-num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: .95rem; }
.feste .f-cards h3 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: .8rem 0 .6rem;
}
.feste .f-cards p { font-family: var(--sans); font-weight: 300; font-size: .85rem; line-height: 1.7; color: var(--ash); }
@media (max-width: 860px) {
  .feste .f-cards { grid-template-columns: 1fr 1fr; }
  .feste .f-cards a:nth-child(2n) { border-right: 0; }
}
@media (max-width: 520px) { .feste .f-cards { grid-template-columns: 1fr; } .feste .f-cards a { border-right: 0; } }

/* ---------------------------------------------- chapter VII — finale */

.finale { background: var(--night); color: var(--ivory); padding-bottom: 3rem; }
.finale .ch-head { padding-top: clamp(5rem, 10vw, 8rem); }
.finale .f-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(3rem, 7vw, 7rem);
  padding: 0 var(--pad);
}
.finale .t-display { margin-bottom: 1.6rem; }
.finale .f-info { margin-top: 2.4rem; }
.finale .f-info li {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule-d);
  font-family: var(--sans);
  font-weight: 300;
  font-size: .9rem;
  color: var(--ash);
}
.finale .f-info .label {
  flex: none;
  width: 8rem;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.finale .f-info a { color: var(--ivory); border-bottom: 1px solid var(--gold2); }

/* letter-style form */
.form-letter .fl-row { position: relative; margin-bottom: 2.2rem; }
.form-letter label {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: .6rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.form-letter input, .form-letter select, .form-letter textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-d);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.25rem;
  padding: .5rem 0 .8rem;
  outline: none;
  border-radius: 0;
  transition: border-color .35s;
}
.form-letter select { appearance: none; -webkit-appearance: none; }
.form-letter select option { color: var(--ink); background: var(--ivory); }
.form-letter textarea { min-height: 6.5rem; resize: vertical; }
.form-letter input:focus, .form-letter select:focus, .form-letter textarea:focus { border-color: var(--gold); }
.form-letter ::placeholder { color: rgba(242,236,223,.32); font-style: italic; }
.form-letter .fl-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.btn-send {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: none;
  border: 1px solid var(--gold);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: .68rem;
  letter-spacing: .34em;
  text-indent: .34em;
  text-transform: uppercase;
  padding: 1.2rem 2.8rem;
  transition: background .4s, color .4s;
}
.btn-send:hover { background: var(--gold); color: var(--night); }
.form-note { font-family: var(--sans); font-weight: 300; font-size: .8rem; color: var(--ash); margin-top: 1.2rem; }
.form-note a { border-bottom: 1px solid var(--gold2); }
@media (max-width: 860px) {
  .finale .f-grid { grid-template-columns: 1fr; }
  .form-letter .fl-cols { grid-template-columns: 1fr; gap: 0; }
}

/* footer */
.v-footer {
  margin-top: clamp(4rem, 9vw, 7rem);
  border-top: 1px solid var(--rule-d);
  padding: 2.2rem var(--pad) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2.4rem;
  font-family: var(--sans);
  font-weight: 300;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(242,236,223,.45);
}
.v-footer .links { display: flex; gap: 1.8rem; }
.v-footer a:hover { color: var(--gold); }
.v-footer .big-mark {
  width: 100%;
  text-align: center;
  font-family: var(--disp);
  font-size: clamp(3.4rem, 13vw, 11rem);
  letter-spacing: .14em;
  text-indent: .14em;
  text-transform: uppercase;
  color: rgba(242,236,223,.08);
  line-height: 1;
  margin-top: 2rem;
  user-select: none;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .hero h1 .ch { animation: none; transform: none; }
  .grain, .marquee .mq-inner, .food-row .fr-inner { animation: none; }
  html { scroll-behavior: auto; }
}
