:root {
  --night: #0c0b09;
  --night-soft: #141210;
  --olive: #1c1e16;
  --ivory: #efe6d8;
  --ivory-dim: #b8ad9c;
  --ivory-faint: #8a8072;
  --parchment: #f3ebe0;
  --ink: #161310;
  --ink-soft: #3c342c;
  --brass: #a88854;
  --brass-deep: #8a6a38;
  --brass-soft: rgba(168, 136, 84, 0.28);
  --line: rgba(239, 230, 216, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --wrap: 90rem;
  --inset: max(var(--pad), calc((100% - var(--wrap)) / 2));
  --header: 5.25rem;
  --header-compact: 4.15rem;
  --space-section: clamp(4.25rem, 10vw, 8rem);
  --space-block: clamp(2.5rem, 6vw, 5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-compact) + 0.75rem);
  color-scheme: dark;
}

html,
body {
  background: var(--night);
  color: var(--ivory);
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

:focus-visible {
  outline: 1px solid var(--brass);
  outline-offset: 3px;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.visually-hidden,
.skip:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 80;
  padding: 0.6rem 0.9rem;
  background: var(--ivory);
  color: var(--night);
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}

.crumbs {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}

.crumbs li {
  display: inline-flex;
  align-items: center;
}

.crumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 0.7em;
  color: var(--brass);
  letter-spacing: 0;
  font-weight: 400;
}

.crumbs a {
  color: var(--ivory-dim);
  transition: color 0.3s var(--ease);
}

.crumbs a:hover {
  color: var(--ivory);
}

.crumbs [aria-current="page"] {
  color: var(--brass);
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.display em,
.hero__line--italic {
  font-style: italic;
  font-weight: 400;
  color: var(--ivory-dim);
}

.display--crop {
  font-size: clamp(5rem, 16vw, 13rem);
  line-height: 0.8;
  letter-spacing: -0.045em;
}

.display--mid {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.display--light em {
  color: var(--ivory);
}

.lede {
  max-width: 28ch;
  color: var(--ivory-dim);
  font-size: 1.15rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.lede--wide {
  max-width: 36ch;
  margin-top: 1.5rem;
}

.text-link,
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-link {
  margin-top: 2rem;
  color: var(--ivory);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 0.2rem;
  width: fit-content;
  background-image: linear-gradient(var(--brass), var(--brass));
  background-size: 0 1px;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  transition: color 0.35s var(--ease), background-size 0.45s var(--ease), background-position 0.45s var(--ease);
}

.text-link:hover {
  color: var(--brass);
  background-size: 100% 1px;
  background-position: 0 100%;
}

.btn--book,
.btn--ghost,
.btn--light {
  min-height: 44px;
  padding: 0 0.1rem;
}

.btn--book {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(239, 230, 216, 0.9);
  border-bottom: 1px solid transparent;
}

.btn--book:hover {
  border-bottom-color: var(--brass);
}

.btn--ghost,
.btn--light {
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--brass-soft);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn--ghost:hover,
.btn--light:hover {
  background: var(--ivory);
  color: var(--night);
  border-color: var(--ivory);
}

.btn--light {
  color: var(--ivory);
  border-color: rgba(239, 230, 216, 0.28);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 0 var(--inset);
  mix-blend-mode: normal;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
body:not(.page-home) .site-header {
  background: rgba(12, 11, 9, 0.9);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

body.page-home .site-header:not(.is-scrolled) .nav-desktop > a,
body.page-home .site-header:not(.is-scrolled) .nav-drop__btn,
body.page-home .site-header:not(.is-scrolled) .btn--book {
  text-shadow: 0 1px 14px rgba(12, 11, 9, 0.55);
}

.site-header__bar {
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  transition: height 0.4s var(--ease);
}

.site-header.is-scrolled .site-header__bar {
  height: var(--header-compact);
}

.wordmark {
  display: block;
  justify-self: start;
  line-height: 0;
}

.logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.logo--nav {
  height: 2.35rem;
  width: auto;
  transition: height 0.4s var(--ease);
}

.site-header.is-scrolled .logo--nav {
  height: 1.95rem;
}

.logo--panel {
  width: min(11.5rem, 70vw);
  height: auto;
  margin-bottom: 2.4rem;
}

.logo--intro {
  width: min(16rem, 72vw);
  height: auto;
  overflow: visible;
}

.logo--footer {
  width: min(22rem, 78vw);
  height: auto;
}

.nav-desktop {
  display: flex;
  align-items: baseline;
  gap: 2rem;
}

.nav-desktop > a,
.nav-drop__btn {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(239, 230, 216, 0.9);
  padding-bottom: 0.2em;
  transition: color 0.3s var(--ease);
}

.nav-drop__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: none;
  border: 0;
  padding: 0 0 0.2em;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: inherit;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-desktop > a::after,
.nav-drop__btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav-desktop > a:hover,
.nav-desktop > a[aria-current="page"],
.nav-drop:hover .nav-drop__btn,
.nav-drop:focus-within .nav-drop__btn,
.nav-drop.is-open .nav-drop__btn,
.nav-drop.is-current .nav-drop__btn {
  color: var(--ivory);
}

.nav-desktop > a:hover::after,
.nav-desktop > a[aria-current="page"]::after,
.nav-drop:hover .nav-drop__btn::after,
.nav-drop:focus-within .nav-drop__btn::after,
.nav-drop.is-open .nav-drop__btn::after,
.nav-drop.is-current .nav-drop__btn::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-drop {
  position: relative;
}

.nav-drop__arrow {
  display: block;
  flex: 0 0 0.34em;
  width: 0.34em;
  height: 0.34em;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  pointer-events: none;
  transition: transform 0.3s var(--ease);
}

.nav-drop:hover .nav-drop__arrow,
.nav-drop:focus-within .nav-drop__arrow,
.nav-drop.is-open .nav-drop__arrow {
  transform: rotate(225deg);
}

.nav-drop__menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  z-index: 5;
  min-width: 11.5rem;
  padding: 0.55rem 0;
  background: rgba(12, 11, 9, 0.96);
  border: 1px solid var(--line);
  transform: translateX(-50%) translateY(0.35rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s var(--ease);
}

.nav-drop__menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.95rem;
}

.nav-drop:hover .nav-drop__menu,
.nav-drop:focus-within .nav-drop__menu,
.nav-drop.is-open .nav-drop__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-drop__menu a {
  display: block;
  padding: 0.55rem 1.15rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}

.nav-drop__menu a:hover,
.nav-drop__menu a[aria-current="page"] {
  color: var(--ivory);
}

.site-header__end {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
}

.nav-toggle__lines,
.nav-toggle__lines::before {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.35s var(--ease);
}

.nav-toggle__lines {
  position: relative;
  margin-left: auto;
}

.nav-toggle__lines::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-6px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines::before {
  transform: rotate(-90deg);
}

.nav-panel {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: var(--night);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
}

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

.nav-panel__links {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.nav-panel__links a {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 10vw, 3.6rem);
  line-height: 1;
}

.nav-panel__meta {
  margin-top: 3rem;
  color: var(--ivory-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

body.nav-open {
  overflow: hidden;
}

/* Intro */
.intro {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--night);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.intro.is-out {
  animation: intro-out 0.85s var(--ease) forwards;
}

.intro .logo-letter,
.intro .logo-sub {
  opacity: 0;
  transform: translateY(14px);
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: intro-letter 0.65s var(--ease) forwards;
}

.intro .logo-letter--1 { animation-delay: 0.08s; }
.intro .logo-letter--2 { animation-delay: 0.2s; }
.intro .logo-letter--3 { animation-delay: 0.32s; }
.intro .logo-letter--4 { animation-delay: 0.44s; }
.intro .logo-letter--5 { animation-delay: 0.56s; }
.intro .logo-letter--6 { animation-delay: 0.68s; }
.intro .logo-sub { animation-delay: 0.92s; }

@keyframes intro-out {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes intro-letter {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header) + 2rem) var(--pad) 3.5rem;
  overflow: hidden;
}

.hero__media,
.finale__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__media picture,
.hero__slide picture,
.finale__media picture {
  width: 100%;
  height: 100%;
}

.hero__slide img,
.finale__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.finale__media img {
  object-position: center 40%;
  transform: scale(1.06);
  transform-origin: center 40%;
}

.hero__slide img {
  object-position: center center;
  transform-origin: center center;
  will-change: transform;
  animation: hero-breathe 28s ease-in-out infinite;
}

@keyframes hero-breathe {
  0%,
  100% { transform: scale(1.04); }
  50% { transform: scale(1.14); }
}

.hero__media .hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 86% 76% at 50% 46%,
      rgba(12, 11, 9, 0) 0%,
      rgba(12, 11, 9, 0.1) 58%,
      rgba(12, 11, 9, 0.28) 84%,
      rgba(12, 11, 9, 0.42) 100%
    ),
    linear-gradient(180deg,
      rgba(12, 11, 9, 0.42) 0%,
      rgba(12, 11, 9, 0.12) 30%,
      rgba(12, 11, 9, 0.08) 52%,
      rgba(12, 11, 9, 0.36) 84%,
      rgba(12, 11, 9, 0.52) 100%
    );
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 1.4rem;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.8rem, 11vw, 9.4rem);
  line-height: 0.86;
  letter-spacing: -0.035em;
}

.hero__line {
  display: block;
}

.hero__open {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 3.5rem;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  writing-mode: vertical-rl;
}

/* Chapter */
.chapter {
  position: relative;
  padding: var(--space-section) var(--inset);
  overflow: hidden;
}

.chapter__mark {
  position: absolute;
  left: var(--inset);
  top: clamp(1.4rem, 3.2vw, 2.6rem);
  font-family: var(--serif);
  font-size: clamp(7rem, 16vw, 13rem);
  line-height: 0.75;
  letter-spacing: -0.04em;
  color: rgba(239, 230, 216, 0.07);
  pointer-events: none;
  user-select: none;
}

.chapter__body {
  position: relative;
  max-width: 38rem;
  padding-top: 0.2rem;
}

.chapter .display {
  margin: 1rem 0 1.35rem;
}

.chapter__text {
  max-width: 34ch;
  color: var(--ivory-dim);
  font-size: 1.12rem;
  line-height: 1.6;
  text-wrap: pretty;
}

/* Spread */
.spread {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  padding: 0 var(--inset) var(--space-section);
  align-items: start;
}

.spread__portrait {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  clip-path: inset(14% 0 0 0);
}

.spread__portrait img {
  object-position: 72% 42%;
}

.spread__portrait--offset {
  margin-top: 14vh;
}

.spread__portrait--offset img {
  object-position: 28% 48%;
}

.spread__caption {
  grid-column: 1 / -1;
  padding-top: 0.5rem;
}

.spread__caption p + p {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  margin-top: 0.4rem;
  color: var(--ivory-dim);
}

.bleed {
  width: min(var(--wrap), calc(100% - var(--inset) * 2));
  margin-inline: auto;
  height: min(72vh, 760px);
  overflow: hidden;
  clip-path: inset(12% 0 0 0);
}

.bleed img {
  object-position: 45% 40%;
}

.bleed__img,
.bleed picture,
.bleed img {
  width: 100%;
  height: 100%;
}

.glass {
  padding: 0 var(--inset) var(--space-section);
}

.glass__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.glass__media video,
.glass__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.glass__copy {
  margin-top: 1.75rem;
}

.glass__copy .display {
  margin: 0.55rem 0 0.75rem;
}

.glass__copy p:not(.eyebrow) {
  max-width: 28ch;
  color: var(--ivory-dim);
}

.menu-stills {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 0.85rem;
  align-items: end;
  padding: 0 var(--inset) clamp(2.75rem, 6vw, 4.5rem);
}

.menu-stills__wide {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.menu-stills__tall {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.menu-stills img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Menu preview — parchment insert */
.menu-preview {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding: var(--space-section) var(--inset);
  align-items: end;
  background: var(--parchment);
  color: var(--ink);
  border-block: 1px solid rgba(138, 106, 56, 0.18);
}

.menu-preview .eyebrow {
  color: var(--brass-deep);
}

.menu-preview .display {
  margin: 0.7rem 0 1.25rem;
  color: var(--ink);
}

.menu-preview .lede {
  color: var(--ink-soft);
}

.menu-preview .text-link + .text-link {
  margin-top: 0.85rem;
}

.menu-preview .text-link {
  color: var(--ink);
  border-bottom-color: var(--brass-deep);
  background-image: linear-gradient(var(--brass-deep), var(--brass-deep));
}

.menu-preview .text-link:hover {
  color: var(--brass-deep);
}

.menu-preview__date {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  border-top: 1px solid rgba(22, 19, 16, 0.14);
  padding-top: 0.85rem;
}

.menu-preview__note {
  margin-top: 0.85rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink-soft);
}

/* Experience */
.experience {
  padding: var(--space-section) var(--inset);
}

.experience__head {
  margin-bottom: var(--space-block);
}

.experience__head .display {
  margin-top: 0.85rem;
}

.exp-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.35rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2.75rem, 6.5vw, 5.5rem);
}

.exp-row:last-child {
  margin-bottom: 0;
}

.exp-row--flip {
  grid-template-columns: 0.85fr 1.15fr;
}

.exp-row--flip .exp-row__copy {
  order: -1;
}

.exp-row__media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  clip-path: inset(10% 0 0 0);
}

.exp-row__media img {
  object-position: 78% 42%;
}

.exp-row--flip .exp-row__media {
  aspect-ratio: 4 / 5;
}

.exp-row--flip .exp-row__media img {
  object-position: 40% 35%;
}

.exp-row:last-child .exp-row__media {
  aspect-ratio: 5 / 4;
}

.exp-row:last-child .exp-row__media img {
  object-position: 50% 45%;
}

.exp-row__num {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--brass);
  margin-bottom: 0.65rem;
}

.exp-row h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.3rem, 3.8vw, 3.4rem);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.exp-row__copy p:last-child {
  max-width: 28ch;
  color: var(--ivory-dim);
  text-wrap: pretty;
}

/* Track */
.track-wrap {
  padding: 1.5rem 0 var(--space-section);
}

.track-wrap__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 var(--inset) 1.15rem;
  color: var(--ivory-dim);
}

.track-wrap__cue {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

.track-wrap__cue span {
  color: var(--brass);
}

a.track-wrap__cue:hover {
  color: var(--ivory);
}

.track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0 0 0 var(--inset);
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--inset);
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}

.track::after {
  content: "";
  flex: 0 0 var(--inset);
}

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

.track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.track__item {
  flex: 0 0 min(62vw, 440px);
  aspect-ratio: 4 / 5;
  scroll-snap-align: start;
  overflow: hidden;
}

.track__item img {
  object-position: 50% 40%;
}

.track__item--tall {
  flex-basis: min(48vw, 360px);
  aspect-ratio: 3 / 4;
}

.track__item--wide {
  flex-basis: min(78vw, 640px);
  aspect-ratio: 16 / 10;
}

/* Visit home */
.visit-home {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(14rem, 0.8fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: end;
  padding: var(--space-section) var(--inset);
  border-top: 1px solid var(--line);
}

.visit-home .display {
  margin: 0.9rem 0 1.5rem;
}

.visit-home__addr {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  line-height: 1.35;
  color: var(--ivory-dim);
}

.visit-home__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.visit-home__links a {
  width: fit-content;
  border-bottom: 1px solid var(--brass-soft);
  padding-bottom: 0.15rem;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.visit-home__links a:hover {
  color: var(--ivory);
  border-bottom-color: var(--brass);
}

.visit-home__aside {
  border-left: 1px solid var(--line);
  padding: 0.2rem 0 0.2rem clamp(1.4rem, 3vw, 2.6rem);
}

.visit-home__place {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.2;
}

.visit-home__geo {
  margin-top: 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  font-variant-numeric: tabular-nums;
}

.visit-home__facts {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin: 1.75rem 0 0.4rem;
}

.visit-home__facts dt {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.3rem;
}

.visit-home__facts dd {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ivory);
}

/* Finale */
.finale {
  position: relative;
  min-height: 53svh;
  display: flex;
  align-items: flex-end;
  padding: 4rem var(--pad) 3.25rem;
  overflow: hidden;
}

.finale__media .finale__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 70% at 50% 42%,
      rgba(12, 11, 9, 0.06) 0%,
      rgba(12, 11, 9, 0.22) 55%,
      rgba(12, 11, 9, 0.5) 82%,
      rgba(12, 11, 9, 0.66) 100%
    ),
    linear-gradient(180deg,
      rgba(12, 11, 9, 0.38) 0%,
      rgba(12, 11, 9, 0.2) 36%,
      rgba(12, 11, 9, 0.55) 78%,
      rgba(12, 11, 9, 0.78) 100%
    );
}

.finale__copy {
  position: relative;
  z-index: 2;
}

.finale .display {
  margin: 0.9rem 0 1.4rem;
}

.finale__note {
  color: var(--ivory-dim);
  margin-bottom: 1.8rem;
}

/* Footer */
.site-footer {
  padding: clamp(3.75rem, 8vw, 6.5rem) var(--inset) 1.75rem;
  border-top: 1px solid var(--line);
}

.site-footer__stage {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.site-footer__brand {
  margin: 0;
  line-height: 0;
}

.site-footer__reserve {
  margin-top: 0;
  margin-bottom: 0.55em;
  flex-shrink: 0;
}

.site-footer__line {
  margin: 1.6rem 0 0;
  color: var(--ivory-faint);
}

.site-footer__colophon {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 0.9rem;
  margin-top: 2.75rem;
  padding-bottom: 2.75rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--ivory-dim);
}

.site-footer__colophon a:hover {
  color: var(--ivory);
}

.site-footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--ivory-faint);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.site-footer__nav {
  display: flex;
  gap: 1.4rem;
}

.site-footer__nav a:hover {
  color: var(--ivory);
}

.crafted {
  margin-top: 1.15rem;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

.crafted a {
  color: var(--ivory-faint);
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.crafted a:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
}

/* Subpages */
.subpage {
  padding-top: calc(var(--header) + 3rem);
}

.sub-hero {
  padding: 0 var(--inset) clamp(3rem, 8vw, 6rem);
}

.sub-hero .display {
  margin-top: 1.15rem;
}

.sub-hero .display--crop {
  margin-top: 1.4rem;
  padding-top: 0.15em;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 0 var(--inset) clamp(4rem, 8vw, 7rem);
  align-items: center;
}

.story-grid__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  clip-path: inset(12% 0 0 0);
}

.masonry {
  columns: 3;
  column-gap: 0.85rem;
  padding: 0 var(--inset) var(--space-section);
}

.masonry__item {
  break-inside: avoid;
  margin: 0 0 0.85rem;
  overflow: hidden;
}

.masonry__item img,
.masonry__item video {
  width: 100%;
  height: auto;
  display: block;
}

.menu-jump {
  display: flex;
  gap: 1.6rem;
  margin-top: 2rem;
}

.menu-jump a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 0.2rem;
}

.menu-jump a:hover {
  color: var(--ivory);
}

.menu-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 0 var(--inset) var(--space-section);
}

.menu-index__card {
  display: grid;
  align-content: start;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.menu-index__card .eyebrow {
  margin-bottom: 0.55rem;
}

.menu-index__card .display {
  margin: 0 0 0.7rem;
}

.menu-index__card p:not(.eyebrow) {
  max-width: 28ch;
  color: var(--ivory-dim);
}

.menu-index__card .text-link {
  margin-top: 1.25rem;
}

.menu-index__card--hold {
  cursor: default;
}

.menu-index__card--hold .display {
  color: var(--ivory-dim);
}

.subpage--menu .sub-hero,
.subpage--menu .menu-text {
  width: 100%;
  max-width: calc(52rem + var(--pad) * 2);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.menu-text {
  padding: 0 var(--pad) var(--space-section);
}

.menu-text__head {
  margin-bottom: 2.5rem;
}

.menu-text__head .display {
  margin: 0.7rem 0 0;
}

.menu-cat {
  margin-bottom: 2.75rem;
}

.menu-cat h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  margin-bottom: 0.45rem;
}

.menu-cat__note {
  color: var(--ivory-dim);
  font-size: 0.98rem;
  max-width: 42ch;
  margin-bottom: 0.85rem;
}

.menu-list {
  border-top: 1px solid var(--line);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 1.25rem;
  row-gap: 0.55rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-item__copy {
  min-width: 0;
  padding-right: 0.25rem;
}

.menu-item__copy h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.28rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.menu-item__mark {
  margin-left: 0.35rem;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--brass);
  vertical-align: 0.15em;
}

.menu-key {
  margin-top: 1.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

.menu-item__copy p {
  margin-top: 0.3rem;
  color: var(--ivory-dim);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 44ch;
}

.menu-item__tariffs {
  display: flex;
  justify-content: flex-end;
  align-items: start;
  gap: 1.15rem;
  flex-shrink: 0;
}

.menu-tariff {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 3.1rem;
}

.menu-tariff__size {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.menu-tariff__price {
  margin-top: 0.15rem;
  font-family: var(--sans);
  font-weight: 500;
  font-style: normal;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--brass);
  font-variant-numeric: tabular-nums;
}

.menu-key + .menu-legal {
  margin-top: 0.65rem;
}

.menu-legal {
  margin-top: 0.5rem;
  color: var(--ivory-faint);
  font-size: 0.88rem;
  max-width: 48ch;
}

.story-grid__copy p + p,
.story-pull {
  margin-top: 1.2rem;
}

.story-grid__copy {
  max-width: 34ch;
  color: var(--ivory-dim);
  font-size: 1.15rem;
}

.story-pull {
  padding: 0 var(--inset) clamp(4rem, 8vw, 7rem);
}


.visit-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  padding: 0 var(--inset) clamp(4rem, 8vw, 7rem);
}

.visit-page__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  clip-path: inset(12% 0 0 0);
}

.visit-page__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.visit-page__copy .display {
  margin: 0.85rem 0 2.25rem;
}

.visit-facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 28rem;
}

.visit-facts__row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  align-items: start;
}

.visit-facts dt {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  padding-top: 0.45em;
}

.visit-facts dd {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.4;
  color: var(--ivory);
  overflow-wrap: anywhere;
}

.visit-facts .text-link {
  margin-top: 0.7rem;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem var(--inset);
  border-top: 1px solid var(--line);
  color: var(--ivory-dim);
}

.book-page {
  min-height: 100svh;
  padding-bottom: 4rem;
}

.book-panel {
  width: min(560px, calc(100% - var(--pad) * 2));
  margin-inline: auto;
  background: transparent;
}

#tablego-booking {
  width: 100% !important;
  max-width: none;
  min-width: 0 !important;
  min-height: 460px;
  display: block;
  border: 0;
  background: transparent;
  color-scheme: normal;
}

/* Motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), clip-path 1.15s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.finale__media img,
.spread__portrait img,
.exp-row__media img,
.bleed img,
.track__item img {
  transition: transform 1.6s var(--ease), filter 1.2s var(--ease);
}

.grade {
  position: relative;
}

.spread__portrait.is-in,
.exp-row__media.is-in,
.bleed.is-in,
.story-grid__media.is-in,
.visit-page__media.is-in {
  clip-path: inset(0);
}

.spread__portrait.is-in img,
.exp-row__media.is-in img,
.bleed.is-in img {
  transform: scale(1.04);
}

@media (max-width: 980px) {
  .site-header__bar {
    grid-template-columns: 1fr auto;
  }

  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .chapter,
  .spread,
  .menu-preview,
  .exp-row,
  .exp-row--flip,
  .story-grid,
  .menu-index,
  .menu-stills,
  .masonry,
  .visit-page,
  .visit-home {
    grid-template-columns: 1fr;
  }

  .exp-row--flip .exp-row__copy {
    order: 0;
  }

  .spread__portrait--offset {
    margin-top: 0;
  }

  .spread__caption {
    padding-top: 0.25rem;
  }

  .chapter__mark {
    font-size: clamp(5.2rem, 26vw, 7.5rem);
    top: 0.85rem;
  }

  .visit-home__aside {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 1.75rem 0 0;
  }

  .menu-preview {
    align-items: start;
  }

  .glass__media {
    aspect-ratio: 4 / 3;
  }

  .menu-stills__tall {
    aspect-ratio: 4 / 3;
  }

  .masonry {
    columns: 2;
  }

  .hero__title {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  .display--crop {
    font-size: clamp(3.6rem, 16vw, 5.4rem);
    line-height: 0.92;
  }

  .cta-band,
  .site-footer__stage,
  .site-footer__base {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__scroll {
    display: none;
  }

  .exp-row__media,
  .exp-row--flip .exp-row__media,
  .exp-row:last-child .exp-row__media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .masonry {
    columns: 1;
  }

  .visit-facts__row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  body {
    font-size: 1rem;
  }

  .logo--nav,
  .site-header.is-scrolled .logo--nav {
    height: 1.9rem;
  }

  .site-header__bar,
  .site-header.is-scrolled .site-header__bar {
    height: 4.35rem;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding-bottom: 2.75rem;
  }

  .hero__media .hero__veil {
    background:
      radial-gradient(ellipse 92% 78% at 50% 42%,
        rgba(12, 11, 9, 0) 0%,
        rgba(12, 11, 9, 0.14) 58%,
        rgba(12, 11, 9, 0.36) 100%
      ),
      linear-gradient(180deg,
        rgba(12, 11, 9, 0.44) 0%,
        rgba(12, 11, 9, 0.1) 38%,
        rgba(12, 11, 9, 0.46) 100%
      );
  }

  .hero__kicker {
    max-width: 22ch;
  }

  .track__item,
  .track__item--tall,
  .track__item--wide {
    flex-basis: 78vw;
  }

  .track__item--wide {
    aspect-ratio: 5 / 4;
  }

  .display {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .chapter .display {
    font-size: clamp(2.9rem, 13vw, 4.2rem);
  }

  .visit-home .display {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .menu-item--tariffs {
    grid-template-columns: 1fr;
  }

  .menu-item--tariffs .menu-item__tariffs {
    justify-content: flex-start;
    gap: 0.95rem;
  }

  .menu-item--tariffs .menu-tariff {
    align-items: flex-start;
  }

  .crumbs {
    line-height: 1.45;
    letter-spacing: 0.14em;
  }

  .subpage--menu .sub-hero,
  .subpage--menu .menu-text {
    padding-inline: 1.25rem;
  }
}

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

  .intro,
  .logo--intro,
  .nav-toggle__lines,
  .nav-toggle__lines::before,
  [data-reveal],
  .hero__slide img,
  .finale__media img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .intro {
    display: none;
  }

  .hero__slide:not(.is-active) {
    opacity: 0 !important;
  }

  .spread__portrait,
  .exp-row__media,
  .bleed,
  .story-grid__media,
  .visit-page__media {
    clip-path: none;
  }

}
