:root {
  color-scheme: light;
  --paper: #f6f0e2;
  --frost: #fffdf7;
  --ink: #171713;
  --navy: #13283f;
  --muted: #655f54;
  --pink: #e72e78;
  --pink-deep: #9b2259;
  --lemon: #f4df39;
  --aqua: #73cfc9;
  --mango: #f39a32;
  --rule: rgba(23, 23, 19, 0.2);
  --light-rule: rgba(255, 253, 247, 0.28);
  --display: "Playfair Display", Georgia, serif;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3.5rem, 7.2vw, 7.8rem);
  line-height: 0.86;
}

h2 em,
h3 em {
  font-style: italic;
  font-weight: 700;
}

section {
  scroll-margin-top: 78px;
}

section[tabindex="-1"]:focus,
main:focus,
body[tabindex="-1"]:focus {
  outline: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--lemon);
  border: 2px solid var(--ink);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.btn:focus-visible,
.text-link:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--pink-deep);
  outline-offset: 4px;
}

.hero a:focus-visible,
.booth-feature a:focus-visible,
.events a:focus-visible,
.footer a:focus-visible {
  outline-color: var(--lemon);
}

.chapter,
.eyebrow,
.way-folio {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.chapter::before,
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: currentColor;
}

.light {
  color: var(--frost);
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary,
.btn.lemon {
  color: var(--ink);
  background: var(--lemon);
}

.btn.ink {
  color: var(--frost);
  background: var(--ink);
}

.btn.secondary.dark {
  color: var(--ink);
  background: transparent;
  border-color: var(--rule);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  gap: 14px;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, gap 160ms ease;
}

.text-link:hover {
  gap: 20px;
  color: var(--pink-deep);
}

.text-link.light:hover {
  color: var(--lemon);
}

/* Editorial masthead */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 82px;
  display: grid;
  grid-template-columns: minmax(240px, auto) 1fr;
  gap: clamp(18px, 2.5vw, 40px);
  align-items: center;
  padding: 0 clamp(20px, 3.75vw, 58px);
  color: var(--ink);
  background: linear-gradient(110deg, rgba(255, 253, 247, 0.97), rgba(246, 240, 226, 0.94) 64%, rgba(231, 46, 120, 0.07));
  border-bottom: 1px solid rgba(23, 23, 19, 0.16);
  box-shadow: 0 1px 0 rgba(19, 40, 63, 0.08);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  backdrop-filter: blur(20px) saturate(145%);
  transition: height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px;
  height: 4px;
  background: linear-gradient(90deg, var(--pink) 0 46%, var(--lemon) 46% 73%, var(--aqua) 73% 100%);
  pointer-events: none;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(255, 253, 247, 0.975);
  box-shadow: 0 12px 34px rgba(19, 40, 63, 0.11);
}

.brand {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-right: clamp(18px, 2vw, 30px);
  color: var(--navy);
  border-right: 1px solid rgba(23, 23, 19, 0.16);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 52px;
  display: grid;
  place-items: center;
  isolation: isolate;
  transition: width 180ms ease, height 180ms ease;
}

.brand-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 7px 1px 3px 5px;
  border: 1px solid rgba(231, 46, 120, 0.42);
  border-radius: 50%;
  transform: translate(3px, 2px);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  display: grid;
  gap: 2px;
}

.brand-name strong {
  font-family: var(--display);
  font-size: 1.06rem;
  letter-spacing: -0.025em;
  line-height: 1;
}

.brand-name em {
  color: var(--pink-deep);
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
}

.nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav a:not(.nav-cta, .nav-order)::after {
  content: "";
  position: absolute;
  inset: auto 10px 5px;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav a:nth-child(2)::after {
  background: var(--aqua);
}

.nav a:nth-child(3)::after {
  background: var(--lemon);
}

.nav a:not(.nav-cta, .nav-order):hover::after,
.nav a:not(.nav-cta, .nav-order):focus-visible::after {
  transform: scaleX(1);
}

.nav a:not(.nav-cta):hover {
  color: var(--pink-deep);
}

.nav .nav-order {
  margin-left: 8px;
  padding-inline: 14px;
  background: rgba(115, 207, 201, 0.2);
  border: 1px solid rgba(23, 23, 19, 0.16);
}

.nav .nav-cta {
  min-height: 46px;
  margin-left: 6px;
  padding-inline: 20px;
  color: var(--ink);
  background: var(--lemon);
  border: 1px solid var(--ink);
  box-shadow: 4px 4px 0 var(--pink);
}

.nav .nav-cta:hover {
  color: var(--frost);
  background: var(--pink-deep);
  box-shadow: 4px 4px 0 var(--aqua);
  transform: translateY(-2px);
}

.site-header.is-scrolled .brand-mark {
  width: 44px;
  height: 48px;
}

.nav-toggle {
  display: none;
}

/* Cover */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  color: var(--frost);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 17, 20, 0.93) 0%, rgba(12, 17, 20, 0.75) 36%, rgba(12, 17, 20, 0.18) 66%, transparent 78%),
    linear-gradient(0deg, rgba(12, 17, 20, 0.54), transparent 45%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% 50%;
}

.hero-grid {
  width: min(100%, 1600px);
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 11fr;
  grid-template-rows: auto 1fr auto;
  padding: 118px clamp(22px, 5vw, 84px) 34px;
}

.hero-folio {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  display: flex;
  gap: 30px;
  color: rgba(255, 253, 247, 0.72);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-content {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  width: min(900px, 68vw);
  padding: 40px 0 56px clamp(18px, 3vw, 46px);
}

.hero h1 {
  max-width: 9.3ch;
  margin: 20px 0 28px;
  font-size: clamp(5rem, 10.5vw, 11rem);
  line-height: 0.78;
  text-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.hero h1 em {
  color: var(--lemon);
  font-style: italic;
  font-weight: 700;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 253, 247, 0.8);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin-top: 32px;
}

.hero-caption {
  grid-column: 2;
  grid-row: 3;
  justify-self: end;
  margin: 0;
  padding-top: 14px;
  color: rgba(255, 253, 247, 0.72);
  border-top: 1px solid var(--light-rule);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

/* Moving issue line */
.taste-ticker {
  overflow: hidden;
  color: var(--frost);
  background: var(--pink);
  border-block: 1px solid var(--ink);
}

.ticker-track {
  width: max-content;
  display: flex;
  animation: editorial-marquee 26s linear infinite;
}

.ticker-track p {
  display: flex;
  gap: 34px;
  align-items: center;
  margin: 0;
  padding: 16px 17px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker-track i {
  color: var(--lemon);
  font-style: normal;
}

@keyframes editorial-marquee {
  to { transform: translateX(-50%); }
}

/* Shared editorial chapters */
.editorial-section {
  padding: clamp(108px, 11vw, 176px) clamp(20px, 5vw, 84px);
}

.editorial-section > * {
  width: min(100%, 1480px);
  margin-inline: auto;
}

.editorial-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(58px, 8vw, 104px);
}

.editorial-heading .chapter {
  grid-column: 1 / 3;
  align-self: start;
  margin-top: 9px;
}

.editorial-heading h2 {
  grid-column: 3 / 10;
}

.editorial-heading h2 em {
  color: var(--pink-deep);
}

.heading-deck {
  grid-column: 10 / 13;
  align-self: end;
}

.heading-deck > p:first-child {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

/* The Flavor Edit */
.flavors {
  background: var(--paper);
}

.flavor-editorial-grid {
  display: grid;
  grid-template-columns: minmax(300px, 5fr) minmax(0, 7fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
}

.menu-study {
  position: sticky;
  top: 94px;
  margin-bottom: 0;
}

.menu-study img {
  width: 100%;
  max-height: calc(100svh - 126px);
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.menu-study figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--ink);
  border: 2px solid var(--ink);
}

.flavor-card {
  position: relative;
  min-height: 310px;
  padding: 0;
  overflow: hidden;
  color: var(--frost);
  background: var(--ink);
  border: 0;
  border-radius: 0;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
}

.flavor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(12, 17, 20, 0.88), rgba(12, 17, 20, 0.05) 68%);
  transition: background 220ms ease;
}

.flavor-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.flavor-card:hover img,
.flavor-card:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.flavor-card:hover::after {
  background: linear-gradient(0deg, rgba(155, 34, 89, 0.9), rgba(12, 17, 20, 0.03) 70%);
}

.flavor-overlay {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 13px;
  align-items: end;
  padding: 22px;
}

.flavor-index {
  align-self: start;
  margin-top: 4px;
  color: var(--lemon);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.flavor-overlay strong,
.flavor-overlay small {
  display: block;
}

.flavor-overlay strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.3vw, 2.55rem);
  line-height: 0.98;
}

.flavor-overlay small {
  margin-top: 8px;
  color: rgba(255, 253, 247, 0.74);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-transform: uppercase;
}

.flavor-arrow {
  color: var(--lemon);
  font-size: 1.25rem;
}

/* Full-bleed booth chapter */
.booth-feature {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--frost);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.booth-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(12, 17, 20, 0.94), rgba(12, 17, 20, 0.08) 70%);
}

.booth-feature > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.booth-overlay {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 120px clamp(22px, 5vw, 84px) 64px;
}

.booth-overlay h2 {
  max-width: 10.5ch;
  margin: 24px 0 28px;
  font-size: clamp(4.25rem, 8.4vw, 9rem);
}

.booth-overlay h2 em {
  color: var(--lemon);
}

.booth-overlay > p:not(.chapter) {
  max-width: 590px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
}

.booth-overlay .btn {
  margin-top: 18px;
}

.booth-annotations {
  position: absolute;
  right: clamp(22px, 5vw, 84px);
  bottom: 66px;
  width: min(300px, 24vw);
  display: grid;
  color: rgba(255, 253, 247, 0.82);
  border-top: 1px solid var(--light-rule);
}

.booth-annotations span {
  padding: 11px 0;
  border-bottom: 1px solid var(--light-rule);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Two buying journeys */
.pour-ways {
  background: var(--frost);
  padding-bottom: clamp(64px, 6vw, 96px);
}

.compact-heading {
  align-items: start;
}

.pour-deck {
  align-self: end;
}

.route-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.route-note i {
  color: var(--pink-deep);
  font-style: normal;
}

.pour-way-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  border: 1px solid var(--ink);
}

.pour-way {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
}

.pour-way::before {
  content: attr(data-route);
  position: absolute;
  z-index: -1;
  top: -0.2em;
  right: -0.02em;
  color: rgba(23, 23, 19, 0.08);
  font-family: var(--display);
  font-size: clamp(12rem, 25vw, 24rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.pour-way::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.pour-way.today::after {
  top: 24%;
  right: 9%;
  width: 102px;
  height: 102px;
  border: 1px solid rgba(23, 23, 19, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 20px rgba(255, 253, 247, 0.13), 0 0 0 42px rgba(231, 46, 120, 0.1);
}

.pour-way.guest-list::after {
  inset: 0 0 auto auto;
  width: 48%;
  height: 46%;
  background: repeating-linear-gradient(135deg, transparent 0 17px, rgba(23, 23, 19, 0.1) 17px 19px);
  clip-path: polygon(36% 0, 100% 0, 100% 100%);
}

.pour-way + .pour-way {
  border-left: 1px solid var(--ink);
}

.pour-way.today {
  background: var(--lemon);
}

.pour-way.guest-list {
  background: var(--aqua);
}

.way-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(23, 23, 19, 0.42);
}

.way-topline .way-folio {
  margin: 0;
}

.way-topline > span {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.way-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.pour-way h3 {
  max-width: 9ch;
  margin: 48px 0 18px;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.pour-way > p:not(.way-folio) {
  max-width: 470px;
  color: rgba(23, 23, 19, 0.68);
  line-height: 1.62;
}

.way-content > p {
  max-width: 470px;
  color: rgba(23, 23, 19, 0.68);
  line-height: 1.62;
}

.way-details {
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  margin: 28px 0 0;
  padding: 0;
  border-block: 1px solid rgba(23, 23, 19, 0.32);
  list-style: none;
}

.way-details li {
  padding: 10px 14px 10px 0;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.way-details li + li {
  padding-left: 14px;
  border-left: 1px solid rgba(23, 23, 19, 0.32);
}

.pour-way .text-link {
  min-height: 52px;
  margin-top: 30px;
  padding: 0 18px;
  color: var(--frost);
  background: var(--ink);
  border: 0;
}

.pour-way.guest-list .text-link {
  background: var(--pink-deep);
}

.pour-way .text-link:hover {
  gap: 22px;
  color: var(--ink);
  background: var(--frost);
}

/* Clean booth showcase */
.field-notes {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(76px, 8vw, 120px);
  background: var(--frost);
  border-top: 1px solid var(--rule);
}

.showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.showcase-label {
  margin: 0 0 14px;
  color: var(--pink-deep);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.showcase-heading h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: 0.98;
}

.showcase-intro {
  max-width: 540px;
  justify-self: end;
}

.showcase-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.showcase-card {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.showcase-primary img {
  object-position: center 48%;
}

.showcase-booth img {
  object-position: center 34%;
}

.showcase-card figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

/* Event chapter */
.events {
  color: var(--frost);
  background: var(--ink);
}

.events .editorial-heading h2 em {
  color: var(--lemon);
}

.events .heading-deck > p:first-child,
.events .chapter {
  color: rgba(255, 253, 247, 0.7);
}

.event-types {
  margin-top: 26px;
  color: var(--aqua);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.7;
  text-transform: uppercase;
}

.booking-index {
  border-bottom: 1px solid var(--light-rule);
}

.booking-index article {
  --step-accent: var(--lemon);
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 1.7fr) minmax(0, 7fr);
  gap: 30px;
  align-items: center;
  padding: clamp(30px, 4vw, 54px) 0;
  border-top: 1px solid var(--light-rule);
  transition: background 180ms ease, padding 180ms ease;
}

.booking-index article:nth-child(2) {
  --step-accent: var(--aqua);
}

.booking-index article:nth-child(3) {
  --step-accent: var(--pink);
}

.booking-index article:hover {
  padding-inline: 18px;
  background: rgba(255, 253, 247, 0.045);
}

.booking-mark {
  display: grid;
  grid-template-columns: 84px auto;
  gap: 18px;
  align-items: center;
}

.booking-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  color: var(--step-accent);
  background: rgba(255, 253, 247, 0.035);
  border: 1px solid currentColor;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.booking-index article:hover .booking-icon {
  color: var(--ink);
  background: var(--step-accent);
  transform: translateY(-4px) rotate(-3deg);
}

.booking-number {
  color: var(--step-accent);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
}

.booking-icon i,
.booking-icon i::before,
.booking-icon i::after {
  position: relative;
  display: block;
  box-sizing: border-box;
}

.booking-icon i::before,
.booking-icon i::after {
  content: "";
  position: absolute;
}

.booking-icon-date i {
  width: 34px;
  height: 29px;
  background:
    linear-gradient(currentColor, currentColor) 0 8px / 100% 2px no-repeat,
    radial-gradient(circle, currentColor 1.5px, transparent 2px) 5px 13px / 9px 8px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.booking-icon-date i::before {
  top: -7px;
  left: 6px;
  width: 2px;
  height: 8px;
  background: currentColor;
  box-shadow: 18px 0 0 currentColor;
}

.booking-icon-date i::after {
  right: -9px;
  bottom: -9px;
  width: 14px;
  height: 14px;
  background: var(--frost);
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.booking-icon-pour i {
  width: 31px;
  height: 35px;
  background: currentColor;
  clip-path: polygon(4% 0, 96% 0, 78% 100%, 22% 100%);
}

.booking-icon-pour i::before {
  top: -12px;
  right: 5px;
  width: 2px;
  height: 20px;
  background: currentColor;
  transform: rotate(12deg);
  transform-origin: bottom;
}

.booking-icon-pour i::after {
  top: -7px;
  right: -9px;
  width: 17px;
  height: 17px;
  background: var(--frost);
  border: 3px solid currentColor;
  border-radius: 50%;
}

.booking-icon-check i {
  width: 36px;
  height: 31px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.booking-icon-check i::before {
  left: 7px;
  bottom: -7px;
  width: 11px;
  height: 11px;
  background: var(--ink);
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skewY(-38deg);
}

.booking-icon-check i::after {
  top: 7px;
  left: 10px;
  width: 15px;
  height: 8px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.booking-kicker {
  margin: 0 0 12px;
  color: var(--step-accent) !important;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-index h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.booking-index p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 253, 247, 0.66);
  line-height: 1.65;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  background: var(--frost);
}

.faq > * {
  width: auto;
  margin-inline: 0;
}

.faq-heading {
  grid-column: 1 / 5;
  position: sticky;
  top: 110px;
}

.faq-heading h2 {
  margin-top: 24px;
  font-size: clamp(3.4rem, 5.8vw, 6.5rem);
}

.faq-heading h2 em {
  color: var(--pink-deep);
}

.faq-list {
  grid-column: 6 / 13;
  border-bottom: 1px solid var(--rule);
}

.faq-list details {
  border-top: 1px solid var(--rule);
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 28px 50px 28px 0;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.08;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--pink-deep);
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary span {
  color: var(--pink-deep);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.faq-list details > p {
  max-width: 620px;
  margin: -4px 0 30px 64px;
  color: var(--muted);
  line-height: 1.7;
}

/* Back cover inquiry */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  color: var(--frost);
  background: var(--pink-deep);
}

.contact-copy {
  display: flex;
  min-height: 860px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(78px, 9vw, 140px) clamp(24px, 5vw, 78px);
}

.contact-copy h2 {
  margin: 28px 0 30px;
  font-size: clamp(4rem, 6.5vw, 7.2rem);
}

.contact-copy h2 em {
  color: var(--lemon);
}

.contact-copy > p:not(.chapter) {
  max-width: 520px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 1.04rem;
  line-height: 1.68;
}

.contact-copy .text-link {
  margin-top: 18px;
}

.contact-note {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid var(--light-rule);
}

.contact-note strong {
  font-family: var(--display);
  font-size: 1.3rem;
}

.contact-note span {
  color: rgba(255, 253, 247, 0.68);
  font-size: 0.82rem;
  line-height: 1.55;
}

.inquiry-form {
  padding: clamp(64px, 7vw, 110px) clamp(24px, 6vw, 90px);
  color: var(--ink);
  background: var(--frost);
}

.form-heading {
  margin-bottom: 38px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}

.form-heading h3 {
  max-width: 12ch;
  margin: 16px 0 10px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.form-heading > p:last-child,
.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.inquiry-form fieldset {
  min-width: 0;
  margin: 0 0 32px;
  padding: 0;
  border: 0;
}

.inquiry-form legend {
  width: 100%;
  margin-bottom: 18px;
  color: var(--pink-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.inquiry-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.inquiry-form label > span {
  color: var(--pink-deep);
}

.inquiry-form label small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pink-deep);
  box-shadow: 0 2px 0 var(--pink-deep);
}

textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.55;
}

.inquiry-form > .btn {
  width: 100%;
  min-height: 60px;
}

.inquiry-form > .btn[aria-busy="true"] {
  cursor: wait;
  opacity: 0.7;
}

.form-note {
  margin-top: 14px;
}

.form-note a {
  color: var(--pink-deep);
  font-weight: 800;
}

.hidden-field {
  display: none;
}

/* Footer */
.footer {
  padding: 76px clamp(20px, 5vw, 84px) 24px;
  color: var(--frost);
  background: var(--ink);
}

.footer-top,
.footer-links,
.footer-bottom {
  width: min(100%, 1480px);
  margin-inline: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.2fr) auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--light-rule);
}

.footer .brand {
  color: var(--frost);
}

.footer-top > p,
.footer-pairing p {
  margin: 0;
  color: rgba(255, 253, 247, 0.64);
  line-height: 1.6;
}

.footer-cta {
  display: inline-flex;
  gap: 34px;
  align-items: center;
  padding-bottom: 7px;
  color: var(--lemon);
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: 1.5rem;
  text-decoration: none;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.2fr;
  gap: 40px;
  padding: 54px 0 64px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer h2 {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a,
.footer-bottom a {
  width: fit-content;
  color: rgba(255, 253, 247, 0.72);
  text-decoration: none;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--lemon);
}

.footer-pairing {
  padding-left: 30px;
  border-left: 1px solid var(--light-rule);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding-top: 20px;
  color: rgba(255, 253, 247, 0.5);
  border-top: 1px solid var(--light-rule);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
  justify-self: end;
}

.studio-credit {
  padding-inline: 22px;
  color: rgba(255, 253, 247, 0.72);
  border-inline: 1px solid var(--light-rule);
  text-align: center;
}

.studio-credit a {
  color: var(--lemon);
  font-weight: 800;
}

.mobile-conversion-bar {
  display: none;
}

/* Flavor gallery dialog */
.flavor-modal[hidden] {
  display: none;
}

.flavor-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2vw, 28px);
}

.flavor-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(12, 17, 20, 0.84);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.flavor-modal-panel {
  position: relative;
  width: min(1160px, 100%);
  height: min(650px, calc(100svh - 24px));
  max-height: calc(100svh - 24px);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  overflow: hidden;
  color: var(--ink);
  background: var(--frost);
  border: 1px solid rgba(255, 253, 247, 0.4);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.flavor-modal-image {
  min-height: 0;
  height: 100%;
  background: var(--ink);
}

.flavor-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flavor-modal-copy {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  padding: clamp(36px, 5vw, 72px);
}

.flavor-modal-copy h2 {
  margin: 22px 0 24px;
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.85;
}

.flavor-modal-copy > p:not(.chapter) {
  color: var(--muted);
  line-height: 1.72;
}

.flavor-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 20px;
}

.flavor-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--lemon);
  border: 1px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.55rem;
}

.flavor-modal-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: auto;
  padding-top: 34px;
  border-top: 1px solid var(--rule);
}

.flavor-modal-footer > div {
  display: flex;
  gap: 8px;
}

.flavor-modal-count {
  color: var(--pink-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.flavor-modal-nav {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 50%;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.flavor-modal-nav:hover {
  color: var(--frost);
  background: var(--ink);
}

/* Standalone utility pages */
.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--paper);
}

.thanks-shell,
.policy-shell {
  width: min(820px, 100%);
}

.brand.dark {
  width: fit-content;
  margin-bottom: 22px;
}

.thanks-card {
  padding: clamp(34px, 7vw, 78px);
  background: var(--frost);
  border-top: 8px solid var(--pink);
}

.thanks-card h1 {
  margin-bottom: 26px;
  font-family: var(--display);
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  line-height: 0.87;
  letter-spacing: -0.05em;
}

.thanks-card h2,
.policy-card h2 {
  margin: 38px 0 12px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1;
}

.thanks-card p,
.thanks-card li {
  color: var(--muted);
  line-height: 1.72;
}

.thanks-card ul {
  padding-left: 1.2rem;
}

.thanks-card .hero-actions {
  margin-top: 34px;
}

.policy-card a {
  color: var(--pink-deep);
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ticker-track {
    transform: none !important;
  }
}

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

  .site-header > .brand {
    padding-right: 0;
    border-right: 0;
  }

  .nav-toggle {
    grid-column: 3;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    color: var(--ink);
    background: var(--lemon);
    border: 1px solid rgba(23, 23, 19, 0.72);
    border-radius: 0;
    box-shadow: 3px 3px 0 var(--aqua);
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
  }

  .nav-toggle[aria-expanded="true"] {
    color: var(--frost);
    background: var(--pink-deep);
    box-shadow: 3px 3px 0 var(--lemon);
  }

  .nav-toggle span {
    grid-area: 1 / 1;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .nav-toggle span:first-child {
    transform: translateY(-3px);
  }

  .nav-toggle span:last-child {
    transform: translateY(3px);
  }

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

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

  .nav {
    position: fixed;
    inset: 82px 0 0;
    display: none;
    align-content: start;
    justify-items: stretch;
    padding: clamp(34px, 6vh, 58px) clamp(22px, 7vw, 72px);
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--ink);
    background:
      linear-gradient(90deg, var(--pink) 0 9px, transparent 9px),
      linear-gradient(145deg, rgba(255, 253, 247, 0.99) 0 76%, rgba(244, 223, 57, 0.9) 76% 88%, rgba(115, 207, 201, 0.94) 88%);
    border-top: 1px solid var(--ink);
  }

  .nav::before {
    content: "Menu";
    display: block;
    margin-bottom: 18px;
    padding-bottom: 14px;
    color: var(--pink-deep);
    border-bottom: 1px solid rgba(23, 23, 19, 0.38);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .site-header.is-scrolled .nav {
    inset-block-start: 70px;
  }

  .nav.is-open {
    display: grid;
  }

  .nav a,
  .nav .nav-order,
  .nav .nav-cta {
    min-height: 72px;
    margin: 0;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(23, 23, 19, 0.38);
    font-family: var(--display);
    font-size: clamp(2rem, 6vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .nav a:not(.nav-cta, .nav-order)::after {
    display: none;
  }

  .nav .nav-order {
    margin-top: 10px;
    padding-inline: 18px;
    color: var(--pink-deep);
    background: rgba(115, 207, 201, 0.2);
    border: 1px solid rgba(23, 23, 19, 0.34);
  }

  .nav .nav-order::after {
    content: "↗";
    margin-left: auto;
    font-family: var(--sans);
    font-size: 1rem;
  }

  .nav .nav-cta {
    margin-top: 14px;
    padding-inline: 18px;
    color: var(--frost);
    background: var(--pink-deep);
    border: 1px solid var(--ink);
    box-shadow: 6px 6px 0 var(--lemon);
  }

  .nav .nav-cta::after {
    content: "→";
    margin-left: auto;
    font-family: var(--sans);
    font-size: 1rem;
  }

  .editorial-heading .chapter {
    grid-column: 1 / 4;
  }

  .editorial-heading h2 {
    grid-column: 4 / 10;
  }

  .heading-deck {
    grid-column: 10 / 13;
  }

  .flavor-card {
    min-height: 275px;
  }

  .booth-annotations {
    display: none;
  }
}

@media (max-width: 920px) {
  .editorial-section {
    padding-block: 104px;
  }

  .editorial-heading,
  .faq {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-heading .chapter,
  .editorial-heading h2,
  .heading-deck,
  .faq-heading,
  .faq-list {
    grid-column: 1 / -1;
  }

  .editorial-heading .chapter {
    margin-bottom: 18px;
  }

  .editorial-heading h2 {
    max-width: 10ch;
  }

  .heading-deck {
    max-width: 560px;
    margin-top: 32px;
  }

  .flavor-editorial-grid {
    grid-template-columns: 1fr;
  }

  .menu-study,
  .faq-heading {
    position: static;
  }

  .menu-study img {
    max-height: none;
    aspect-ratio: 4 / 5;
    object-position: center 43%;
  }

  .faq-heading {
    margin-bottom: 36px;
  }

  .faq-heading h2 {
    max-width: 10ch;
  }

  .showcase-heading,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-heading {
    gap: 24px;
  }

  .showcase-intro {
    max-width: 620px;
    justify-self: start;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    min-height: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    justify-self: start;
  }

  .flavor-modal-panel {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .flavor-modal-image {
    min-height: 390px;
    max-height: 48svh;
  }

  .flavor-modal-copy {
    min-height: 460px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 70px;
    padding-inline: 14px;
  }

  .site-header .brand-mark {
    width: 43px;
    height: 47px;
  }

  .brand-name strong {
    font-size: 0.88rem;
  }

  .nav,
  .site-header.is-scrolled .nav {
    inset-block-start: 70px;
  }

  .hero {
    min-height: auto;
    display: block;
    padding-top: 70px;
    color: var(--ink);
    background: var(--paper);
  }

  .hero-media {
    position: relative;
    height: 56svh;
    min-height: 410px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(12, 17, 20, 0.38), transparent 55%);
  }

  .hero-media img {
    object-position: 71% 50%;
  }

  .hero-grid {
    min-height: 0;
    display: block;
    padding: 48px 18px 34px;
  }

  .hero-folio {
    display: none;
  }

  .hero-content {
    width: 100%;
    padding: 0;
  }

  .hero .eyebrow,
  .hero .text-link.light {
    color: var(--ink);
  }

  .hero h1 {
    max-width: 7.6ch;
    margin: 20px 0 24px;
    color: var(--ink);
    font-size: clamp(4.5rem, 20vw, 7rem);
    text-shadow: none;
  }

  .hero h1 em {
    color: var(--pink-deep);
  }

  .hero-copy {
    color: var(--muted);
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-caption {
    margin-top: 48px;
    color: var(--muted);
    border-color: var(--rule);
    text-align: right;
  }

  .ticker-track p {
    gap: 22px;
    padding-block: 13px;
    font-size: 0.62rem;
  }

  .editorial-section {
    padding: 86px 16px;
  }

  .pour-ways {
    padding-bottom: 72px;
  }

  .field-notes {
    padding: 64px 16px 72px;
  }

  .editorial-heading,
  .faq {
    display: block;
  }

  h2,
  .faq-heading h2 {
    font-size: clamp(3.6rem, 17vw, 5.7rem);
  }

  .showcase-heading {
    gap: 22px;
    margin-bottom: 36px;
  }

  .showcase-heading h2 {
    max-width: 11ch;
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .showcase-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .showcase-grid {
    gap: 16px;
  }

  .flavor-editorial-grid {
    gap: 18px;
  }

  .menu-study img {
    aspect-ratio: 4 / 5;
  }

  .flavor-grid {
    grid-template-columns: 1fr;
  }

  .flavor-card {
    min-height: 320px;
  }

  .flavor-overlay {
    padding: 20px;
  }

  .flavor-overlay strong {
    font-size: 2.25rem;
  }

  .booth-feature {
    min-height: 840px;
  }

  .booth-feature > img {
    object-position: 54% center;
  }

  .booth-overlay {
    padding: 110px 18px 48px;
  }

  .booth-overlay h2 {
    font-size: clamp(4rem, 17vw, 6rem);
  }

  .pour-way-grid {
    grid-template-columns: 1fr;
  }

  .pour-way {
    min-height: 510px;
    padding: 30px 24px 42px;
  }

  .pour-way + .pour-way {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .faq-heading {
    margin-bottom: 48px;
  }

  .events .editorial-heading {
    display: block;
  }

  .booking-index article {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .booking-mark {
    grid-template-columns: 72px auto;
  }

  .booking-icon {
    width: 72px;
    height: 72px;
  }

  .faq-list summary {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding-block: 24px;
    padding-right: 36px;
    font-size: 1.55rem;
  }

  .faq-list details > p {
    margin-left: 44px;
  }

  .contact-copy {
    padding: 88px 18px;
  }

  .contact-copy h2 {
    font-size: clamp(4.1rem, 17vw, 6rem);
  }

  .inquiry-form {
    padding: 70px 18px 84px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 62px 18px 86px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-pairing {
    grid-column: 1 / -1;
    padding: 28px 0 0;
    border-top: 1px solid var(--light-rule);
    border-left: 0;
  }

  .footer-bottom {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom div {
    justify-self: auto;
  }

  .studio-credit {
    padding: 12px 0 0;
    border: 0;
    border-top: 1px solid var(--light-rule);
    text-align: left;
  }

  .mobile-conversion-bar {
    position: fixed;
    inset: auto 8px 8px;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 5px;
    background: rgba(255, 253, 247, 0.94);
    border: 1px solid var(--rule);
    backdrop-filter: blur(18px);
  }

  .mobile-conversion-bar a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 12px;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-conversion-bar a:first-child {
    color: var(--ink);
    background: var(--lemon);
  }

  .mobile-conversion-bar a:last-child {
    color: var(--frost);
    background: var(--pink-deep);
  }

  body.is-modal-open .mobile-conversion-bar,
  body.is-nav-open .mobile-conversion-bar {
    display: none;
  }

  .flavor-modal {
    padding: 8px;
  }

  .flavor-modal-panel {
    max-height: calc(100svh - 16px);
  }

  .flavor-modal-image {
    min-height: 280px;
    max-height: 38svh;
  }

  .flavor-modal-copy {
    min-height: 480px;
    padding: 34px 22px 22px;
  }

  .flavor-modal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .flavor-modal-actions .btn,
  .flavor-modal-actions .text-link {
    width: 100%;
  }

  .thanks-page {
    padding: 18px;
  }

  .thanks-card {
    padding: 34px 22px;
  }
}

@media (max-width: 430px) {
  .brand-name strong {
    max-width: 150px;
    font-size: 0.78rem;
  }

  .brand-name em {
    font-size: 0.49rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    box-shadow: 3px 3px 0 var(--aqua);
  }

  .hero-media {
    min-height: 360px;
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 5.35rem);
  }

  .flavor-card {
    min-height: 285px;
  }

  .flavor-overlay small {
    display: none;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-pairing {
    grid-column: auto;
  }
}

/* Premium refinement — calmer, hospitality-led, and consistently polished */
:root {
  --paper: #f7f3ea;
  --frost: #fffdf9;
  --ink: #172638;
  --navy: #172f46;
  --muted: #665f56;
  --pink: #d93673;
  --pink-deep: #a5285d;
  --lemon: #f1dc58;
  --aqua: #79c9c4;
  --rule: rgba(23, 38, 56, 0.14);
  --light-rule: rgba(255, 253, 249, 0.22);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-soft: 0 18px 50px rgba(23, 38, 56, 0.09);
  --shadow-card: 0 12px 30px rgba(23, 38, 56, 0.08);
}

html {
  scroll-padding-top: 78px;
}

body {
  background: var(--paper);
}

section {
  scroll-margin-top: 74px;
}

h1,
h2 {
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.9rem, 5vw, 5.6rem);
  line-height: 0.98;
}

.chapter,
.eyebrow,
.way-folio {
  color: var(--pink-deep);
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
}

.chapter::before,
.eyebrow::before {
  display: none;
}

.light,
.hero .eyebrow {
  color: rgba(255, 253, 249, 0.86);
}

.btn {
  min-height: 50px;
  padding-inline: 21px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(23, 38, 56, 0.12);
}

.text-link {
  gap: 10px;
  padding-bottom: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.text-link:hover {
  gap: 14px;
}

/* Refined brand header */
.site-header {
  height: 78px;
  grid-template-columns: minmax(230px, auto) 1fr;
  padding-inline: clamp(18px, 3.75vw, 56px);
  background: rgba(255, 253, 249, 0.95);
  border-bottom: 1px solid rgba(23, 38, 56, 0.1);
  box-shadow: 0 4px 24px rgba(23, 38, 56, 0.05);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}

.site-header::after {
  inset: auto 0 -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--pink) 46%, var(--lemon) 46%, var(--lemon) 70%, var(--aqua) 70%);
  opacity: 0.9;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 10px 32px rgba(23, 38, 56, 0.1);
}

.brand {
  align-self: center;
  gap: 10px;
  padding-right: 0;
  border-right: 0;
}

.brand-mark {
  width: 46px;
  height: 50px;
}

.brand-mark::before {
  display: none;
}

.brand-name strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.nav {
  gap: 3px;
}

.nav a {
  padding-inline: 11px;
  font-size: 0.67rem;
  letter-spacing: 0.07em;
}

.nav a:not(.nav-cta, .nav-order)::after {
  inset: auto 11px 7px;
  height: 2px;
}

.nav .nav-order {
  margin-left: 8px;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
}

.nav .nav-cta {
  min-height: 44px;
  margin-left: 7px;
  color: var(--frost);
  background: var(--pink-deep);
  border: 1px solid var(--pink-deep);
  border-radius: var(--radius-sm);
  box-shadow: none;
}

.nav .nav-cta:hover {
  color: var(--frost);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: none;
  transform: translateY(-1px);
}

.site-header.is-scrolled .brand-mark {
  width: 42px;
  height: 46px;
}

/* Full-bleed hero with restrained editorial type */
.hero {
  min-height: max(780px, 100svh);
}

.hero-media::after {
  background: linear-gradient(90deg, rgba(12, 22, 32, 0.9) 0%, rgba(12, 22, 32, 0.7) 38%, rgba(12, 22, 32, 0.2) 70%, rgba(12, 22, 32, 0.04) 100%);
}

.hero-grid {
  width: min(100%, 1480px);
  min-height: max(780px, 100svh);
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  padding: 126px clamp(24px, 6vw, 92px) 64px;
}

.hero-folio,
.hero-caption {
  display: none;
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: min(760px, 62vw);
  padding: 72px 0 0;
}

.hero h1 {
  max-width: 8.5ch;
  margin: 22px 0 27px;
  font-size: clamp(4.8rem, 8.7vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
}

.hero h1 em {
  color: #f6e56d;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 253, 249, 0.84);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  gap: 24px;
  margin-top: 30px;
}

/* Quiet service proof bar */
.taste-ticker {
  color: var(--navy);
  background: var(--frost);
  border: 0;
  border-bottom: 1px solid var(--rule);
}

.ticker-track {
  width: 100%;
  animation: none;
}

.ticker-track p {
  gap: 0;
  padding: 0;
}

.ticker-track p:first-child {
  width: min(100%, 1480px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-inline: auto;
}

.ticker-track p[aria-hidden="true"],
.ticker-track i {
  display: none;
}

.ticker-track span {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 12px 18px;
  border-left: 1px solid var(--rule);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.ticker-track span:first-child {
  border-left: 0;
}

/* Calmer section rhythm */
.editorial-section {
  padding: clamp(84px, 9vw, 132px) clamp(20px, 5vw, 76px);
}

.editorial-section > * {
  width: min(100%, 1280px);
}

.editorial-heading {
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  gap: 16px clamp(46px, 7vw, 96px);
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 74px);
}

.editorial-heading .chapter {
  grid-column: 1;
  grid-row: 1;
  margin-top: 0;
}

.editorial-heading h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 11ch;
}

.heading-deck {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
}

.heading-deck > p:first-child {
  font-size: 1rem;
  line-height: 1.72;
}

/* Flavor collection */
.flavors {
  background: var(--paper);
}

.flavor-editorial-grid {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.5fr);
  gap: clamp(20px, 3vw, 34px);
}

.menu-study img {
  max-height: calc(100svh - 118px);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.menu-study figcaption {
  margin-top: 12px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.flavor-grid {
  gap: 18px;
  background: transparent;
  border: 0;
}

.flavor-card {
  min-height: 315px;
  border: 1px solid rgba(23, 38, 56, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.flavor-card::after {
  background: linear-gradient(0deg, rgba(12, 22, 32, 0.86), rgba(12, 22, 32, 0.03) 72%);
}

.flavor-card:hover::after {
  background: linear-gradient(0deg, rgba(12, 22, 32, 0.9), rgba(12, 22, 32, 0.05) 72%);
}

.flavor-card:hover img,
.flavor-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.flavor-overlay {
  gap: 12px;
  padding: 22px;
}

.flavor-index {
  display: none;
}

.flavor-overlay strong {
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.04;
}

.flavor-overlay small {
  margin-top: 7px;
  font-size: 0.62rem;
  letter-spacing: 0.035em;
}

.flavor-arrow {
  font-size: 1.05rem;
}

/* Signature booth */
.booth-feature {
  min-height: min(840px, 90svh);
}

.booth-feature::after {
  background: linear-gradient(0deg, rgba(12, 22, 32, 0.68), rgba(12, 22, 32, 0.04) 72%);
}

.booth-overlay {
  width: min(650px, calc(100% - 48px));
  margin: 0 0 clamp(30px, 5vw, 64px) clamp(24px, 5vw, 76px);
  padding: clamp(28px, 4vw, 44px);
  background: rgba(18, 39, 57, 0.82);
  border: 1px solid rgba(255, 253, 249, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.booth-overlay h2 {
  max-width: 11ch;
  margin: 18px 0 22px;
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  line-height: 0.96;
}

.booth-overlay > p:not(.chapter) {
  max-width: 520px;
  color: rgba(255, 253, 249, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}

.booth-annotations {
  display: none;
}

/* Clear service choices */
.pour-ways {
  padding-bottom: clamp(74px, 8vw, 112px);
  background: var(--frost);
}

.route-note {
  display: none;
}

.pour-way-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  border: 0;
}

.pour-way {
  min-height: 440px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.pour-way::before,
.pour-way::after {
  display: none;
}

.pour-way + .pour-way {
  border: 1px solid var(--rule);
}

.pour-way.today {
  background: #fff9dc;
}

.pour-way.guest-list {
  background: #e9f7f5;
}

.way-topline {
  justify-content: flex-start;
  padding-bottom: 14px;
  border-bottom-color: rgba(23, 38, 56, 0.18);
}

.way-content {
  margin-top: auto;
}

.pour-way h3 {
  max-width: 12ch;
  margin: 42px 0 16px;
  font-size: clamp(2.25rem, 3.5vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.way-content > p {
  color: rgba(23, 38, 56, 0.7);
  line-height: 1.68;
}

.way-details {
  margin-top: 24px;
  border-block-color: rgba(23, 38, 56, 0.18);
}

.way-details li + li {
  border-left-color: rgba(23, 38, 56, 0.18);
}

.pour-way .text-link,
.pour-way.guest-list .text-link {
  min-height: 50px;
  margin-top: 26px;
  padding-inline: 18px;
  color: var(--frost);
  background: var(--navy);
  border-radius: var(--radius-sm);
}

.pour-way.guest-list .text-link {
  background: var(--pink-deep);
}

/* Polished visual proof */
.field-notes {
  background: var(--paper);
}

.showcase-heading h2 {
  max-width: 11ch;
  font-size: clamp(2.9rem, 4.8vw, 4.9rem);
  line-height: 1;
}

.showcase-card {
  border-color: var(--rule);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.showcase-card figcaption {
  padding: 16px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

/* Premium event planning cards */
.events {
  background: var(--navy);
}

.events .editorial-heading h2 em {
  color: #f4e26a;
}

.event-types {
  color: var(--aqua);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.booking-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border: 0;
}

.booking-index article {
  min-height: 330px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 26px;
  padding: 28px;
  background: rgba(255, 253, 249, 0.055);
  border: 1px solid rgba(255, 253, 249, 0.14);
  border-radius: var(--radius-md);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.booking-index article:hover {
  padding: 28px;
  background: rgba(255, 253, 249, 0.085);
  border-color: rgba(255, 253, 249, 0.24);
  transform: translateY(-3px);
}

.booking-mark {
  display: flex;
  gap: 14px;
  align-items: center;
}

.booking-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
}

.booking-index article:hover .booking-icon {
  color: var(--ink);
  background: var(--step-accent);
  transform: none;
}

.booking-number {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.booking-kicker {
  margin-bottom: 10px;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
}

.booking-index h3 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 2.5vw, 2.65rem);
  line-height: 1.04;
}

.booking-index p {
  color: rgba(255, 253, 249, 0.68);
  line-height: 1.68;
}

/* FAQ cards */
.faq {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 90px);
  background: var(--frost);
}

.faq-heading {
  grid-column: 1;
  position: static;
}

.faq-heading h2 {
  margin-top: 18px;
  font-size: clamp(2.9rem, 4.7vw, 4.9rem);
  line-height: 1;
}

.faq-list {
  grid-column: 2;
  display: grid;
  gap: 12px;
  border: 0;
}

.faq-list details {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
}

.faq-list summary {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 22px 50px 22px 22px;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.2;
}

.faq-list summary::after {
  right: 20px;
  font-size: 1.25rem;
}

.faq-list details > p {
  max-width: 680px;
  margin: -2px 22px 24px 68px;
}

/* Elegant inquiry composition */
.contact {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 18px;
  padding: clamp(18px, 2.6vw, 38px);
  color: var(--frost);
  background: linear-gradient(135deg, #eee6de, var(--paper));
}

.contact-copy {
  min-height: 760px;
  padding: clamp(54px, 6vw, 86px) clamp(28px, 5vw, 66px);
  background: linear-gradient(145deg, #762047, #a82b60);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-copy h2 {
  margin: 22px 0 24px;
  font-size: clamp(3.2rem, 5.3vw, 5.6rem);
  line-height: 0.98;
}

.contact-copy > p:not(.chapter) {
  font-size: 1rem;
  line-height: 1.72;
}

.contact-note {
  margin-top: 52px;
}

.inquiry-form {
  padding: clamp(48px, 6vw, 82px) clamp(28px, 5vw, 70px);
  background: var(--frost);
  border: 1px solid rgba(23, 38, 56, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-heading h3 {
  max-width: 14ch;
  font-size: clamp(2.25rem, 3.5vw, 3.55rem);
  line-height: 1;
}

input,
select,
textarea {
  min-height: 52px;
  padding: 13px 14px;
  background: #fbf8f1;
  border: 1px solid rgba(23, 38, 56, 0.16);
  border-radius: var(--radius-sm);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 3px rgba(165, 40, 93, 0.12);
}

/* Quiet, structured footer */
.footer {
  padding-top: 68px;
  background: #122638;
}

.footer .brand {
  padding-right: 0;
  border-right: 0;
}

.footer-top {
  padding-bottom: 46px;
}

.footer-cta {
  gap: 20px;
  padding-bottom: 5px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-links {
  padding-block: 46px 56px;
}

/* Refined flavor dialog */
.flavor-modal-panel {
  border-radius: 18px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.flavor-modal-copy h2 {
  margin: 18px 0 20px;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 0.96;
}

.flavor-modal-close {
  color: var(--frost);
  background: rgba(23, 38, 56, 0.92);
  border-color: rgba(255, 253, 249, 0.2);
}

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

  .nav-toggle {
    width: 44px;
    height: 44px;
    color: var(--navy);
    background: rgba(121, 201, 196, 0.24);
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    box-shadow: none;
  }

  .nav-toggle[aria-expanded="true"] {
    color: var(--frost);
    background: var(--navy);
    box-shadow: none;
  }

  .nav {
    inset: 78px 0 0;
    padding: 28px clamp(20px, 6vw, 68px) 44px;
    background: rgba(255, 253, 249, 0.99);
    border-top: 0;
    box-shadow: 0 22px 46px rgba(23, 38, 56, 0.12);
  }

  .site-header.is-scrolled .nav {
    inset-block-start: 68px;
  }

  .nav::before {
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom-color: var(--rule);
  }

  .nav a,
  .nav .nav-order,
  .nav .nav-cta {
    min-height: 58px;
    padding-inline: 2px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--rule);
    border-radius: 0;
    box-shadow: none;
    font-family: var(--sans);
    font-size: 1.1rem;
    font-weight: 750;
    letter-spacing: -0.01em;
  }

  .nav .nav-order,
  .nav .nav-cta {
    min-height: 54px;
    margin-top: 12px;
    padding-inline: 18px;
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
  }

  .nav .nav-order {
    color: var(--navy);
    background: rgba(121, 201, 196, 0.16);
  }

  .nav .nav-cta {
    color: var(--frost);
    background: var(--pink-deep);
    border-color: var(--pink-deep);
  }

  .editorial-heading .chapter,
  .editorial-heading h2,
  .heading-deck {
    grid-column: auto;
  }

  .booking-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .editorial-section {
    padding-block: 84px;
  }

  .editorial-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .editorial-heading .chapter,
  .editorial-heading h2,
  .heading-deck {
    grid-column: 1;
    grid-row: auto;
  }

  .heading-deck {
    max-width: 620px;
    margin-top: 12px;
  }

  .flavor-editorial-grid {
    grid-template-columns: 1fr;
  }

  .menu-study {
    position: static;
  }

  .menu-study img {
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .booking-index {
    grid-template-columns: 1fr;
  }

  .booking-index article {
    min-height: 0;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .faq-heading,
  .faq-list {
    grid-column: 1;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 68px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
    padding-inline: 14px;
  }

  .site-header .brand-mark,
  .site-header.is-scrolled .brand-mark {
    width: 40px;
    height: 44px;
  }

  .nav,
  .site-header.is-scrolled .nav {
    inset-block-start: 68px;
  }

  .hero {
    min-height: 780px;
    display: grid;
    padding-top: 0;
    color: var(--frost);
    background: var(--ink);
  }

  .hero-media {
    position: absolute;
    inset: 0;
    height: auto;
    min-height: 0;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(12, 22, 32, 0.92) 0%, rgba(12, 22, 32, 0.48) 54%, rgba(12, 22, 32, 0.1) 100%);
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-grid {
    min-height: 780px;
    display: grid;
    padding: 108px 18px 44px;
  }

  .hero-content {
    width: 100%;
    align-self: end;
    padding: 0;
  }

  .hero .eyebrow,
  .hero .text-link.light {
    color: var(--frost);
  }

  .hero h1 {
    max-width: 7.7ch;
    margin: 18px 0 22px;
    color: var(--frost);
    font-size: clamp(4.15rem, 18vw, 6.2rem);
    line-height: 0.88;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .hero h1 em {
    color: #f6e56d;
  }

  .hero-copy {
    max-width: 540px;
    color: rgba(255, 253, 249, 0.82);
  }

  .hero-actions {
    align-items: flex-start;
    gap: 20px;
    flex-direction: row;
  }

  .ticker-track p:first-child {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ticker-track span {
    min-height: 54px;
    padding: 10px 8px;
    font-size: 0.58rem;
    letter-spacing: 0.045em;
  }

  .ticker-track span:nth-of-type(3),
  .ticker-track span:nth-of-type(4) {
    border-top: 1px solid var(--rule);
  }

  .ticker-track span:nth-of-type(3) {
    border-left: 0;
  }

  .editorial-section {
    padding: 72px 18px;
  }

  h2,
  .faq-heading h2 {
    font-size: clamp(3rem, 13.5vw, 4.7rem);
    line-height: 1;
  }

  .flavor-grid {
    gap: 14px;
  }

  .flavor-card {
    min-height: 300px;
  }

  .booth-feature {
    min-height: 720px;
  }

  .booth-overlay {
    width: calc(100% - 32px);
    margin: 0 16px 20px;
    padding: 26px 22px;
    border-radius: 16px;
  }

  .booth-overlay h2 {
    font-size: clamp(3rem, 13vw, 4.45rem);
  }

  .pour-way-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pour-way {
    min-height: 410px;
    padding: 28px 24px 34px;
  }

  .pour-way + .pour-way {
    border: 1px solid var(--rule);
  }

  .pour-way h3 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  .showcase-heading h2 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .booking-index article,
  .booking-index article:hover {
    display: flex;
    gap: 22px;
    padding: 24px;
  }

  .booking-icon {
    width: 60px;
    height: 60px;
  }

  .faq-heading {
    margin-bottom: 0;
  }

  .faq-list summary {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 20px 44px 20px 18px;
    font-size: 1.32rem;
  }

  .faq-list summary::after {
    right: 16px;
  }

  .faq-list details > p {
    margin: 0 18px 22px 60px;
  }

  .contact {
    gap: 12px;
    padding: 12px;
  }

  .contact-copy {
    padding: 70px 22px;
    border-radius: 16px;
  }

  .contact-copy h2 {
    font-size: clamp(3.4rem, 14vw, 4.8rem);
  }

  .inquiry-form {
    padding: 56px 20px 68px;
    border-radius: 16px;
  }

  .footer {
    padding-bottom: 94px;
  }

  .mobile-conversion-bar {
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(23, 38, 56, 0.18);
  }

  .mobile-conversion-bar a {
    border-radius: 8px;
    text-transform: none;
  }

  .flavor-modal-panel {
    border-radius: 14px;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 740px;
  }

  .hero-grid {
    min-height: 740px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 4.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .hero-actions .text-link {
    width: 100%;
  }

  .flavor-card {
    min-height: 278px;
  }
}
