@font-face {
  font-family: "Arzen Serif";
  src: url("assets/fonts/minion-pro-regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Arzen Script";
  src: url("assets/fonts/coronet-regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --active-bg: #f3eee6;
  --ink: #282521;
  --soft-ink: rgba(40, 37, 33, 0.7);
  --paper: #f6f1e8;
  --paper-deep: #e6ded1;
  --olive: #bfc088;
  --blue: #627c8c;
  --wood: #d9cbb8;
  --white-glass: rgba(249, 246, 239, 0.78);
  --progress: 0;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--active-bg);
  color: var(--ink);
  font-family:
    "Arzen Serif", Georgia, "Times New Roman", serif;
  transition: background-color 520ms ease;
}

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

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

button {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 3px;
  background: rgba(40, 37, 33, 0.12);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 100%;
  background: #7a7650;
  transition: width 100ms linear;
}

.site-chrome {
  position: fixed;
  z-index: 40;
  top: clamp(14px, 2vw, 24px);
  left: clamp(14px, 2vw, 26px);
  right: clamp(14px, 2vw, 26px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  pointer-events: none;
}

.brand,
.main-nav,
.chrome-actions {
  pointer-events: auto;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(55, 48, 38, 0.18);
  background: var(--white-glass);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.brand-logo {
  width: clamp(102px, 9vw, 132px);
  height: 24px;
  object-fit: contain;
}

.brand-place {
  color: var(--soft-ink);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(55, 48, 38, 0.14);
  background: rgba(249, 246, 239, 0.62);
  backdrop-filter: blur(18px);
}

.main-nav a {
  position: relative;
  color: rgba(40, 37, 33, 0.76);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.main-nav a.is-active::after,
.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.chrome-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chapter-count {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 74px;
  height: 42px;
  border: 1px solid rgba(55, 48, 38, 0.16);
  background: var(--white-glass);
  color: rgba(40, 37, 33, 0.78);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  backdrop-filter: blur(18px);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(55, 48, 38, 0.16);
  border-radius: 50%;
  background: var(--white-glass);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.icon-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
}

.icon-button:disabled {
  opacity: 0.36;
  cursor: default;
}

.icon-button svg {
  width: 19px;
  height: 19px;
}

.icon-button path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand:focus-visible,
.main-nav a:focus-visible,
.icon-button:focus-visible,
.dot-button:focus-visible {
  outline: 2px solid rgba(82, 117, 128, 0.85);
  outline-offset: 3px;
}

.chapter-dots {
  position: fixed;
  z-index: 39;
  top: 50%;
  right: clamp(12px, 1.7vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 9px;
  transform: translateY(-50%);
}

.dot-button {
  position: relative;
  width: 13px;
  height: 13px;
  padding: 0;
  border: 1px solid rgba(40, 37, 33, 0.26);
  border-radius: 50%;
  background: rgba(249, 246, 239, 0.65);
  cursor: pointer;
}

.dot-button::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: var(--dot-color, #7a7650);
  opacity: 0;
  transition: opacity 180ms ease;
}

.dot-button.is-active::before,
.dot-button:hover::before {
  opacity: 1;
}

.chapter {
  position: relative;
  min-height: 170svh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 38%),
    var(--chapter-bg, var(--active-bg));
  scroll-margin-top: 0;
}

.chapter:nth-child(even) {
  min-height: 160svh;
}

.pin {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.theme-dark {
  color: #f5efe5;
}

.theme-blue {
  color: #f8f1e6;
}

.hero-pin,
.split-pin,
.asym-pin,
.gallery-pin,
.menu-visual-pin,
.food-pin,
.menus-pin,
.sweets-pin,
.stay-pin,
.contact-pin {
  display: grid;
  height: 100vh;
  min-height: 100svh;
  padding: clamp(78px, 10vh, 116px) clamp(24px, 6vw, 96px) clamp(34px, 6vh, 72px);
}

.hero-pin {
  place-items: center;
}

.hero-media,
.bleed-media,
.contact-media {
  position: absolute;
  inset: 0;
  transform:
    translate3d(0, calc((var(--chapter-progress, 0) - 0.5) * -8vh), 0)
    scale(calc(1.05 + var(--chapter-progress, 0) * 0.09));
  filter: saturate(calc(0.82 + var(--active, 0) * 0.18));
  will-change: transform;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.4), rgba(246, 241, 232, 0.75) 47%, rgba(246, 241, 232, 0.96) 74%),
    linear-gradient(90deg, rgba(246, 241, 232, 0.92), rgba(246, 241, 232, 0.34), rgba(246, 241, 232, 0.92));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(640px, 90vw);
  text-align: center;
  transform:
    translateY(calc((var(--chapter-progress, 0) - 0.38) * -54px))
    scale(calc(1 - var(--chapter-progress, 0) * 0.035));
}

.eyebrow,
.crest {
  margin: 0 0 20px;
  color: var(--soft-ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-copy h1,
.editorial-copy h2,
.history-copy h2,
.overline-copy h2,
.party-copy h2,
.stay-copy h2,
.section-heading h2 {
  margin: 0;
  font-weight: 400;
  line-height: 0.95;
}

.hero-copy h1 {
  display: grid;
  gap: 10px;
  color: #665846;
  text-transform: uppercase;
}

.hero-copy h1 span:last-child {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(22px, 3.1vw, 52px);
  font-weight: 500;
  letter-spacing: 0.22em;
}

.script-title {
  font-family: "Arzen Script", "Brush Script MT", cursive;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.hero-copy .script-title {
  font-size: clamp(62px, 10vw, 154px);
  line-height: 0.88;
}

.hero-copy p {
  margin: 30px auto 0;
  max-width: 420px;
  color: rgba(72, 61, 47, 0.86);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
}

.hero-copy .year {
  margin-top: 44px;
  color: #7b6b55;
  font-size: clamp(34px, 4.2vw, 68px);
  font-style: italic;
  line-height: 1;
}

.split-pin {
  grid-template-columns: minmax(250px, 0.86fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(34px, 8vw, 124px);
}

.split-pin.reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(280px, 1fr);
}

.framed-image,
.stack-image,
.gallery-item,
.food-image,
.portrait-photo,
.small-photo {
  margin: 0;
  background: #f7f2ea;
  box-shadow: 0 28px 80px rgba(30, 26, 20, 0.2);
  overflow: hidden;
}

.framed-image {
  position: relative;
  aspect-ratio: 4 / 5.35;
}

.framed-image figcaption {
  position: absolute;
  inset: 50% auto auto 50%;
  padding: 22px 34px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(14px, 1.3vw, 20px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.tall-image {
  width: min(410px, 84vw);
  justify-self: end;
  transform:
    translateY(calc((var(--chapter-progress, 0) - 0.5) * 54px))
    scale(calc(0.98 + var(--active, 0) * 0.02));
}

.editorial-copy,
.history-copy,
.blue-copy,
.party-copy,
.stay-copy,
.contact-sheet,
.menu-sheet,
.section-heading {
  position: relative;
  z-index: 3;
}

.center-copy {
  max-width: 530px;
  text-align: center;
}

.editorial-copy h2 {
  display: grid;
  gap: 8px;
  color: #4c4338;
  font-size: clamp(28px, 4.7vw, 78px);
  text-transform: uppercase;
}

.editorial-copy h2 .script-title,
.small-script {
  color: #3c332c;
  font-size: clamp(46px, 7vw, 116px);
  line-height: 0.72;
  text-transform: none;
}

.small-script {
  display: block;
  margin: 0 0 14px;
}

.editorial-copy p,
.history-copy p,
.party-copy p,
.blue-copy p,
.stay-copy p {
  margin: 26px 0 0;
  color: rgba(40, 37, 33, 0.78);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.45;
}

.editorial-copy .small-script,
.menu-sheet .small-script,
.blue-copy .small-script,
.party-copy .small-script,
.stay-copy .small-script,
.section-heading .small-script,
.contact-sheet .small-script {
  margin: 0 0 18px;
  font-size: clamp(58px, 7vw, 112px);
  line-height: 0.72;
}

.blue-copy .small-script,
.party-copy .small-script,
.stay-copy .small-script {
  color: rgba(248, 241, 230, 0.86);
}

.stay-copy .small-script {
  font-size: clamp(50px, 5.8vw, 82px);
  line-height: 0.76;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: rgba(40, 37, 33, 0.82);
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link::after {
  content: "↗";
  font-size: 13px;
}

.chapter-list,
.two-column-list ul,
.blue-copy ul,
.menu-panel ul,
.inline-menu,
.stay-lists ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.chapter-list {
  display: grid;
  gap: 9px;
  margin-top: 34px;
  color: rgba(40, 37, 33, 0.8);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.full-bleed-pin {
  display: grid;
  place-items: center;
}

.bleed-media::after,
.contact-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
}

.image-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 28, 20, 0.62), rgba(13, 28, 20, 0.08) 58%, rgba(13, 28, 20, 0.38)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.36));
}

.image-veil.dark {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.62)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.56));
}

.overline-copy {
  position: relative;
  z-index: 3;
  width: min(920px, 86vw);
  justify-self: start;
  margin-left: clamp(20px, 8vw, 126px);
  color: #f7f1e6;
}

.overline-copy p,
.party-copy .small-script {
  color: rgba(247, 241, 230, 0.82);
}

.overline-copy h2 {
  max-width: 760px;
  font-size: clamp(48px, 8vw, 132px);
}

.asym-pin {
  grid-template-columns: minmax(300px, 0.86fr) minmax(380px, 1.12fr);
  align-items: center;
  gap: clamp(34px, 7vw, 112px);
}

.history-copy {
  max-width: 560px;
}

.history-copy h2 {
  color: #42372e;
  font-size: clamp(48px, 6.2vw, 112px);
}

.image-stack {
  position: relative;
  min-height: min(70svh, 760px);
}

.stack-image.large {
  position: absolute;
  inset: 4% 0 13% 12%;
}

.stack-image.small {
  position: absolute;
  width: min(310px, 46%);
  aspect-ratio: 4 / 5;
  left: 0;
  bottom: 0;
  border: 12px solid var(--paper);
  transform:
    translateY(calc((var(--chapter-progress, 0) - 0.5) * -44px))
    rotate(-2deg);
}

.gallery-pin {
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(12px, 1.6vw, 22px);
  min-height: min(68svh, 760px);
}

.gallery-item.wide {
  grid-row: 1 / -1;
}

.duo-images {
  display: grid;
  grid-template-columns: 0.88fr 0.72fr;
  align-items: end;
  gap: clamp(18px, 3vw, 34px);
}

.duo-images .framed-image:last-child {
  aspect-ratio: 3 / 4.4;
  transform: translateY(12%);
}

.menu-visual-pin {
  grid-template-columns: minmax(360px, 0.96fr) minmax(260px, 0.52fr);
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  isolation: isolate;
}

.drinks-chapter .menu-visual-pin {
  align-items: start;
  grid-template-columns: minmax(460px, 0.94fr) minmax(260px, 0.46fr);
}

.menu-sheet {
  z-index: 2;
  max-width: 760px;
  min-height: min(64svh, 720px);
  padding: clamp(30px, 5vw, 68px);
  background: rgba(190, 189, 130, 0.88);
  color: #2d2b20;
}

.sheet-intro {
  margin: 14px 0 0;
  color: rgba(45, 43, 32, 0.68);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.4;
}

.menu-sheet h2,
.blue-copy h2,
.party-copy h2,
.stay-copy h2,
.section-heading h2 {
  font-size: clamp(34px, 5.2vw, 84px);
  text-transform: uppercase;
}

.drinks-chapter .menu-sheet {
  min-height: auto;
  padding: clamp(26px, 3.9vw, 52px);
}

.drinks-chapter .menu-sheet h2 {
  font-size: clamp(32px, 4.25vw, 68px);
  line-height: 0.98;
}

.drinks-chapter .small-script {
  font-size: clamp(42px, 5.8vw, 92px);
}

.drinks-chapter .sheet-intro {
  margin-top: 10px;
}

.drinks-chapter .two-column-list {
  gap: clamp(16px, 3vw, 42px);
  margin-top: 22px;
  font-size: clamp(9px, 0.68vw, 12px);
  line-height: 1.38;
}

.two-column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 4vw, 56px);
  margin-top: 32px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(10px, 0.76vw, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.mobile-drink-summary {
  display: none;
}

.two-column-list li + li,
.blue-copy li + li,
.menu-panel li + li,
.stay-lists li + li {
  margin-top: 9px;
}

.floating-photo {
  z-index: 2;
  margin: 0;
  aspect-ratio: 3 / 4.55;
  box-shadow: 0 26px 70px rgba(30, 26, 20, 0.18);
}

.drinks-chapter .floating-photo {
  aspect-ratio: 4 / 5;
}

.drink-visuals {
  z-index: 2;
  display: grid;
  gap: 14px;
  width: min(360px, 100%);
  justify-self: stretch;
}

.bottle-card {
  margin: 0;
  height: clamp(128px, 12vw, 170px);
  padding: 6px 8px;
  background: #f4efe5;
  box-shadow: 0 18px 60px rgba(30, 26, 20, 0.16);
}

.bottle-card img {
  object-fit: contain;
}

.food-pin {
  grid-template-columns: minmax(360px, 1fr) minmax(310px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 6vw, 92px);
}

.food-media {
  position: relative;
  min-height: min(68svh, 760px);
}

.main-food {
  position: absolute;
  inset: 0 16% 15% 0;
}

.second-food {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  aspect-ratio: 3 / 4;
  border: 12px solid #627c8c;
}

.blue-copy {
  max-width: 520px;
  padding: clamp(24px, 4vw, 52px);
  background: rgba(73, 105, 122, 0.9);
}

.blue-copy p,
.blue-copy li,
.party-copy p,
.party-copy li,
.stay-copy li,
.stay-copy h3 {
  color: rgba(248, 241, 230, 0.88);
}

.blue-copy ul {
  margin-top: 24px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.menus-pin {
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(18px, 3vh, 28px);
  align-content: center;
}

.section-heading {
  text-align: center;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.menu-panel {
  position: relative;
  display: block;
  width: 100%;
  padding: clamp(22px, 3.4vw, 48px);
  border: 1px solid rgba(66, 55, 46, 0.08);
  background: rgba(255, 252, 246, 0.84);
  color: inherit;
  text-align: left;
  box-shadow: 0 22px 70px rgba(30, 26, 20, 0.12);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.menu-panel::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 26px;
  height: 26px;
  border-top: 1px solid rgba(40, 37, 33, 0.38);
  border-right: 1px solid rgba(40, 37, 33, 0.38);
  transform: rotate(45deg);
  opacity: 0.58;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.menu-panel:hover,
.menu-panel:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(66, 55, 46, 0.2);
  background: rgba(255, 252, 246, 0.96);
  box-shadow: 0 28px 84px rgba(30, 26, 20, 0.16);
}

.menu-panel:hover::after,
.menu-panel:focus-visible::after {
  opacity: 1;
  transform: translate(4px, -4px) rotate(45deg);
}

.menu-panel h3 {
  margin: 0;
  padding-right: 24px;
  font-size: clamp(25px, 2.55vw, 44px);
  font-weight: 400;
}

.menu-panel p {
  margin: 12px 0 22px;
  color: rgba(40, 37, 33, 0.68);
  font-size: 18px;
  line-height: 1.35;
}

.menu-panel ul {
  color: rgba(40, 37, 33, 0.82);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.35;
}

.menu-dialog {
  width: min(1120px, 94vw);
  max-width: 94vw;
  max-height: 90svh;
  padding: 0;
  border: 0;
  background: rgba(248, 244, 236, 0.98);
  color: var(--ink);
  box-shadow: 0 34px 110px rgba(24, 20, 16, 0.34);
}

.menu-dialog::backdrop {
  background: rgba(36, 31, 25, 0.5);
  backdrop-filter: blur(10px);
}

.dialog-body {
  max-height: 90svh;
  overflow: auto;
  padding: clamp(30px, 5vw, 74px);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(55, 48, 38, 0.16);
  border-radius: 50%;
  background: rgba(249, 246, 239, 0.86);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.dialog-close svg {
  width: 19px;
  height: 19px;
}

.dialog-close path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-dialog h2 {
  margin: 0 58px 28px 0;
  font-size: clamp(42px, 6vw, 92px);
  font-weight: 400;
  line-height: 0.95;
}

.dialog-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.dialog-course {
  padding: clamp(18px, 2.6vw, 30px);
  background: rgba(255, 252, 246, 0.74);
  border: 1px solid rgba(66, 55, 46, 0.08);
}

.dialog-course h3 {
  margin: 0 0 14px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dialog-course ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(40, 37, 33, 0.82);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.32;
}

.party-copy {
  position: relative;
  z-index: 3;
  width: min(640px, 82vw);
  justify-self: start;
  margin-left: clamp(22px, 8vw, 130px);
}

.party-copy h2 {
  color: #f8f1e6;
}

.inline-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 32px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sweets-pin {
  grid-template-columns: minmax(310px, 0.88fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
}

.sweets-collage {
  position: relative;
  min-height: min(72svh, 780px);
}

.portrait-photo {
  position: absolute;
  inset: 0 28% 0 0;
}

.small-photo {
  position: absolute;
  right: 0;
  width: 42%;
  aspect-ratio: 1 / 1.08;
  border: 10px solid var(--paper);
}

.small-photo:nth-child(2) {
  top: 8%;
}

.small-photo:nth-child(3) {
  bottom: 7%;
}

.stay-pin {
  grid-template-columns: minmax(340px, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 96px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    #5f7a8a;
}

.stay-copy h2 {
  color: rgba(248, 241, 230, 0.92);
}

.stay-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 4vw, 46px);
  margin-top: 28px;
}

.stay-lists h3 {
  margin: 0 0 16px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.stay-lists ul {
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.4;
}

.stay-lists li:nth-child(even) {
  margin-top: 2px;
  color: rgba(248, 241, 230, 0.62);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.stay-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: min(62svh, 660px);
}

.stay-images img:first-child {
  grid-row: span 2;
}

.contact-pin {
  place-items: center;
}

.contact-media::after {
  background: rgba(246, 241, 232, 0.48);
}

.contact-sheet {
  width: min(760px, 88vw);
  padding: clamp(34px, 6vw, 72px);
  background: rgba(255, 252, 246, 0.78);
  text-align: center;
  box-shadow: 0 26px 80px rgba(30, 26, 20, 0.12);
  backdrop-filter: blur(3px);
}

.contact-sheet address {
  display: grid;
  gap: 7px;
  margin: 30px 0 0;
  color: rgba(40, 37, 33, 0.82);
  font-style: normal;
  line-height: 1.35;
}

.contact-sheet strong {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-sheet a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal-block {
  opacity: calc(0.3 + var(--active, 0) * 0.7);
  transform:
    translate3d(0, calc((1 - var(--active, 0)) * 28px), 0)
    scale(calc(0.985 + var(--active, 0) * 0.015));
  transition:
    opacity 200ms linear,
    transform 200ms linear;
}

.parallax-card {
  transform:
    translate3d(0, calc((var(--chapter-progress, 0) - 0.5) * var(--move-y, -36px)), 0)
    scale(calc(0.985 + var(--active, 0) * 0.015));
  will-change: transform;
}

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

  .main-nav {
    display: none;
  }

  .split-pin,
  .split-pin.reverse,
  .asym-pin,
  .gallery-pin,
  .menu-visual-pin,
  .food-pin,
  .sweets-pin,
  .stay-pin {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 28px;
  }

  .drinks-chapter .menu-visual-pin {
    grid-template-columns: 1fr;
  }

  .tall-image {
    justify-self: center;
    width: min(360px, 76vw);
  }

  .gallery-grid,
  .food-media,
  .sweets-collage {
    min-height: 42svh;
  }

  .menu-columns {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .floating-photo {
    width: min(320px, 70vw);
    justify-self: center;
  }

  .drink-visuals {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: min(640px, 100%);
    justify-self: center;
  }

  .drink-visuals .floating-photo {
    width: 100%;
  }

  .bottle-card {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 981px) and (max-height: 740px) {
  .menus-pin {
    gap: 14px;
    padding-top: 70px;
    padding-bottom: 24px;
  }

  .menus-pin .small-script {
    font-size: 54px;
  }

  .menus-pin .section-heading h2 {
    font-size: clamp(42px, 4.2vw, 56px);
  }

  .menu-panel {
    padding: 22px 28px;
  }

  .menu-panel h3 {
    font-size: clamp(24px, 2.1vw, 32px);
    line-height: 1;
  }

  .menu-panel p {
    margin: 8px 0 14px;
    font-size: 15px;
    line-height: 1.25;
  }

  .menu-panel ul {
    font-size: 13px;
    line-height: 1.25;
  }

  .menu-panel li + li {
    margin-top: 7px;
  }

  .drinks-chapter .menu-visual-pin {
    grid-template-columns: minmax(430px, 0.96fr) minmax(220px, 0.4fr);
    gap: 42px;
    padding-top: 70px;
    padding-bottom: 24px;
  }

  .drinks-chapter .menu-sheet {
    padding: 28px 34px;
  }

  .drinks-chapter .small-script {
    font-size: 50px;
  }

  .drinks-chapter .menu-sheet h2 {
    font-size: clamp(30px, 3.6vw, 50px);
  }

  .drinks-chapter .sheet-intro {
    margin-top: 8px;
    font-size: 16px;
  }

  .drinks-chapter .two-column-list {
    gap: 28px;
    margin-top: 15px;
    font-size: 10px;
    line-height: 1.24;
  }

  .drinks-chapter .two-column-list li + li {
    margin-top: 6px;
  }

  .drinks-chapter .drink-visuals {
    width: min(300px, 100%);
    gap: 10px;
  }

  .drinks-chapter .bottle-card {
    height: 124px;
    padding: 6px 8px;
  }
}

@media (max-width: 720px) {
  .site-chrome {
    top: 10px;
    left: 10px;
    right: 10px;
    gap: 8px;
  }

  .brand {
    min-height: 38px;
    padding-inline: 11px;
  }

  .brand-logo {
    width: 104px;
    height: 21px;
  }

  .brand-place,
  .chapter-count {
    display: none;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .chapter-dots {
    display: none;
  }

  .hero-media,
  .bleed-media,
  .contact-media,
  .reveal-block,
  .parallax-card,
  .tall-image,
  .stack-image.small {
    transform: none !important;
    opacity: 1 !important;
    will-change: auto;
  }

  .chapter,
  .chapter:nth-child(even) {
    min-height: auto;
  }

  .pin {
    position: relative;
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .hero-pin,
  .full-bleed-pin {
    min-height: 100svh;
  }

  .split-pin,
  .asym-pin,
  .gallery-pin,
  .menu-visual-pin,
  .food-pin,
  .menus-pin,
  .sweets-pin,
  .stay-pin,
  .contact-pin {
    min-height: auto;
    padding: 84px 18px 58px;
  }

  .hero-copy {
    width: min(340px, 92vw);
  }

  .eyebrow,
  .crest {
    letter-spacing: 0.18em;
  }

  .editorial-copy h2,
  .history-copy h2,
  .overline-copy h2,
  .party-copy h2,
  .stay-copy h2,
  .section-heading h2 {
    line-height: 1;
  }

  .overline-copy,
  .party-copy {
    width: min(360px, calc(100vw - 48px));
    margin-left: 0;
    margin-right: 0;
  }

  .full-bleed-pin {
    place-items: center start;
    padding: 96px 24px 72px;
  }

  .overline-copy h2 {
    max-width: 330px;
    font-size: clamp(48px, 15vw, 68px);
  }

  .party-copy {
    max-width: 360px;
  }

  .party-copy h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .party-copy p {
    font-size: 19px;
  }

  .inline-menu {
    gap: 9px 13px;
    margin-top: 26px;
    font-size: 11px;
    line-height: 1.35;
  }

  .framed-image,
  .duo-images .framed-image:last-child {
    aspect-ratio: 4 / 3;
  }

  .image-stack,
  .duo-images,
  .gallery-grid,
  .stay-images {
    display: flex;
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 12px;
    min-height: 0;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    padding: 2px 0 14px;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .image-stack::-webkit-scrollbar,
  .duo-images::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar,
  .stay-images::-webkit-scrollbar {
    display: none;
  }

  .image-stack,
  .duo-images,
  .gallery-grid,
  .stay-images {
    scrollbar-width: none;
  }

  .image-stack.is-carousel-auto-scrolling,
  .duo-images.is-carousel-auto-scrolling,
  .gallery-grid.is-carousel-auto-scrolling,
  .stay-images.is-carousel-auto-scrolling {
    scroll-snap-type: none;
  }

  .image-stack .stack-image,
  .duo-images .framed-image,
  .gallery-grid .gallery-item,
  .stay-images img {
    flex: 0 0 min(82vw, 360px);
    width: min(82vw, 360px);
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
  }

  .stack-image.large,
  .stack-image.small {
    position: relative;
    inset: auto;
    left: auto;
    bottom: auto;
  }

  .stack-image.small {
    border: 0;
  }

  .gallery-item.wide {
    grid-row: auto;
  }

  .food-media,
  .sweets-collage {
    min-height: 36svh;
  }

  .drinks-chapter .two-column-list {
    display: none;
  }

  .mobile-drink-summary {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

  .mobile-drink-summary details {
    border: 1px solid rgba(45, 43, 32, 0.18);
    background: rgba(247, 244, 226, 0.38);
  }

  .mobile-drink-summary summary {
    cursor: pointer;
    padding: 15px 16px;
    color: rgba(40, 37, 33, 0.9);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 780;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .mobile-drink-summary ul {
    margin: 0;
    padding: 0 16px 16px;
    list-style: none;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.45;
    text-transform: uppercase;
  }

  .mobile-drink-summary li + li {
    margin-top: 8px;
  }

  .menu-sheet,
  .blue-copy,
  .contact-sheet {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 24px;
  }

  .two-column-list,
  .stay-lists {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .two-column-list {
    gap: 8px;
    margin-top: 20px;
  }

  .two-column-list ul,
  .two-column-list li {
    min-width: 0;
  }

  .two-column-list li {
    overflow-wrap: anywhere;
  }

  .floating-photo {
    display: none;
  }

  .drink-visuals {
    display: none;
  }

  .menu-columns {
    max-height: none;
    overflow: visible;
  }

  .menu-panel {
    padding: 22px;
  }

  .menu-dialog {
    width: min(94vw, 390px);
    max-height: 92svh;
  }

  .dialog-body {
    max-height: 92svh;
    padding: 26px;
  }

  .menu-dialog h2 {
    margin-right: 46px;
  }

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

  .portrait-photo {
    inset: 0 37% 0 0;
  }

  .small-photo {
    width: 48%;
  }
}

@media (max-width: 430px) {
  .chrome-actions {
    gap: 6px;
  }

  .hero-copy .script-title {
    font-size: 78px;
  }

  .hero-copy h1 span:last-child {
    font-size: 20px;
  }

  .editorial-copy p,
  .history-copy p,
  .party-copy p,
  .blue-copy p,
  .stay-copy p {
    font-size: 17px;
  }

  .duo-images,
  .gallery-grid,
  .stay-images {
    grid-template-columns: none;
    max-height: none;
    overflow-x: auto;
    overflow-y: visible;
  }

  .stay-images img:first-child {
    grid-row: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-media,
  .bleed-media,
  .contact-media,
  .reveal-block,
  .parallax-card {
    transform: none !important;
    opacity: 1 !important;
  }
}
