/* =========================================================
   Atrio — design tokens & base
   ========================================================= */

/* Self-hosted latin variable fonts — avoids Google Fonts critical-path chain */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f6f1e2;
  --panel: #eee4c8;
  --panel-light: #f8f4e6;
  --ink: #223327;
  --muted: #435c49;
  --muted-dim: #54695a;
  --gold: #733c2c;
  --menu-price: #7d5410;
  --line: rgba(34, 51, 39, 0.16);
  --line-strong: rgba(34, 51, 39, 0.32);

  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --font-body: clamp(1rem, 0.985rem + 0.08vw, 1.0625rem);
  --font-display: clamp(2.75rem, 2.15rem + 2.7vw, 4.75rem);
  --font-h1: clamp(2.25rem, 2rem + 1.25vw, 3.25rem);
  --font-h2: clamp(1.8rem, 1.55rem + 1.25vw, 2.75rem);
  --font-h3: clamp(1.25rem, 1.15rem + 0.45vw, 1.55rem);
  --font-card-title: clamp(1.125rem, 1.06rem + 0.3vw, 1.35rem);
  --font-lead: clamp(1.0625rem, 1.02rem + 0.2vw, 1.1875rem);
  --font-small: 0.9rem;
  --font-label: 0.75rem;
  --weight-medium: 600;
  --weight-bold: 700;
  --tracking-label: 0.1em;

  --measure: 65ch;
  --measure-narrow: 48ch;
  --section-y: clamp(3.5rem, 7vw, 7rem);
  --section-y-sm: clamp(2.5rem, 5vw, 4.5rem);
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --container: 1180px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Motion scale. Prefer these over ad-hoc durations.
     fast  - state feedback: colour, border, small nudges
     base  - buttons, links, cards, focus rings
     slow  - panels, drawers, scroll reveals
     image - photo scale/filter inside a hover crop */
  --dur-fast: 160ms;
  --dur-base: 260ms;
  --dur-slow: 420ms;
  --dur-image: 700ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Previously used but never defined, so they silently fell back. */
  --weight-regular: 400;
  --gold-dark: #5f2f21;
}

/* ---------------------------------------------------------
   Breakpoints. These four are the only widths this sheet
   should branch on. Media queries cannot read custom
   properties, so the values are written literally below and
   this block is the reference for what each one means.

      370px  narrow phone. Deliberately below the 375px iPhone SE
             width, so it only catches genuinely cramped devices.
      560px  large phone
      700px  phone to tablet
      900px  tablet to desktop
     1180px  container width, wide-desktop refinements
   --------------------------------------------------------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: #fffde8;
  font-weight: var(--weight-bold);
  transform: translateY(-160%);
  transition: transform var(--dur-fast) var(--ease);
}

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

#main-content {
  scroll-margin-top: calc(5.5rem + var(--announce-h));
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.6em;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h1 { font-size: var(--font-h1); line-height: 1.08; }
h2 { font-size: var(--font-h2); line-height: 1.12; }
h3 { font-size: var(--font-h3); font-family: var(--font-sans); font-weight: var(--weight-medium); line-height: 1.25; }
h4 { font-size: var(--font-card-title); font-family: var(--font-sans); font-weight: var(--weight-medium); line-height: 1.3; }

p {
  margin: 0 0 1em;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

:where(.hero__grid, .split, .menu-preview__head, .booking-row, .footer__top) > * {
  min-width: 0;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}

.section--tight {
  padding-block: var(--section-y-sm);
}

.section--surface {
  background: var(--panel);
  border-block: 1px solid var(--line);
}

@media (max-width: 700px) {
  :root {
    --section-y: 3rem;
    --section-y-sm: 2rem;
  }
}

.section-head {
  max-width: min(100%, 50rem);
  margin-bottom: clamp(1.75rem, 3.5vw, 3rem);
}

.section-head > p {
  max-width: var(--measure);
}

.section-head--center {
  text-align: center;
  max-width: min(100%, 42rem);
  margin-inline: auto;
  margin-bottom: clamp(1.75rem, 3.5vw, 3rem);
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: var(--font-label);
  font-weight: var(--weight-bold);
  line-height: 1.4;
  letter-spacing: var(--tracking-label);
  margin-bottom: 0.6em;
}

.section-copy {
  max-width: var(--measure);
  font-size: var(--font-lead);
}

.waterfront-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.waterfront-intro__copy {
  max-width: 42rem;
}

.waterfront-intro__copy h2 {
  max-width: 19ch;
}

.waterfront-intro__grid > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .waterfront-intro__grid {
    grid-template-columns: 1fr;
  }

  .waterfront-intro__grid > img {
    max-height: 26rem;
  }
}

@media (min-width: 901px) {
  .page-private-events .events-offer__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .page-private-events .events-offer__grid article {
    padding-inline: 1rem;
  }
}

/* Final Private Events overrides */
.page-private-events .events-hero { min-height: min(720px, calc(100dvh - 2rem)); }
.page-private-events .events-hero__content { padding-block: clamp(8rem, 15vw, 12rem) clamp(4rem, 8vw, 6rem); }
.page-private-events .events-hero__content h1 { max-width: 12ch; margin-block: .7rem 1.25rem; font-size: clamp(3.5rem, 7vw, 6.5rem); line-height: .94; letter-spacing: 0; }
.page-private-events .events-hero__content > p { max-width: 34ch; font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.55; }
.page-private-events .events-intro,
.page-private-events .events-spaces,
.page-private-events .events-offer,
.page-private-events .events-faq,
.page-private-events .events-contact { padding-block: clamp(4.5rem, 8vw, 7rem); }
.page-private-events .events-intro h2,
.page-private-events .events-contact h2,
.page-private-events .events-spaces .section-head h2,
.page-private-events .events-offer .section-head h2 { font-size: clamp(3rem, 5.4vw, 5.5rem); line-height: .98; }
.page-private-events .events-intro__copy p { max-width: 38ch; font-size: clamp(1.15rem, 1.7vw, 1.45rem); line-height: 1.55; }
.page-private-events .event-space-card { border-radius: .8rem; }
.page-private-events .event-space-card__body { padding: clamp(1.75rem, 3.5vw, 3rem); }
.page-private-events .event-space-card__body h3 { font-size: clamp(2rem, 3vw, 3rem); }
.page-private-events .event-space-card__body p { font-size: 1.05rem; line-height: 1.65; }
.page-private-events .events-offer__grid h3 { font-size: clamp(1.3rem, 1.8vw, 1.65rem); }
.page-private-events .events-offer__grid p { font-size: 1rem; line-height: 1.6; }
.page-private-events .events-contact__grid > div:first-child p { max-width: 35ch; font-size: 1.08rem; line-height: 1.65; }
@media (max-width: 700px) {
  .page-private-events .events-hero { min-height: 650px; }
  .page-private-events .events-hero__content { padding-block: 7rem 3rem; }
  .page-private-events .events-hero__content h1 { font-size: clamp(3rem, 12vw, 4.8rem); }
}

/* Private Events — motion + weight pass.
   These components had no hover or transition of any kind, so the page read
   as static next to the rest of the site. Durations come from the motion
   scale; the reduced-motion block at the end of this sheet neutralises them. */

.page-private-events .event-space-card {
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.page-private-events .event-space-card__image {
  overflow: hidden;
}

.page-private-events .event-space-card__image img {
  transition: transform var(--dur-image) var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .page-private-events .event-space-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(34, 51, 39, 0.16);
  }

  .page-private-events .event-space-card:hover .event-space-card__image img {
    transform: scale(1.04);
  }

  .page-private-events .events-gallery img {
    transition: transform var(--dur-image) var(--ease-out);
  }

  .page-private-events .events-gallery__feature:hover img,
  .page-private-events .events-gallery__stack img:hover {
    transform: scale(1.03);
  }
}

/* The five detail columns were a thin text strip under a very large heading.
   Numbering them gives the row some weight without adding markup. */
.page-private-events .events-offer__grid {
  counter-reset: eventdetail;
}

.page-private-events .events-offer__grid article {
  counter-increment: eventdetail;
  transition: background-color var(--dur-base) var(--ease-out);
}

.page-private-events .events-offer__grid article::before {
  content: counter(eventdetail, decimal-leading-zero);
  display: block;
  margin-bottom: 0.85rem;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
}

.page-private-events .events-offer__grid h3 {
  text-wrap: balance;
}

/* At five across, two of the headings wrap to a second line and the rest do
   not, so the descriptions started on different baselines. Reserve two lines
   only at the width where the columns are actually that narrow. */
@media (min-width: 901px) {
  .page-private-events .events-offer__grid h3 {
    min-height: 2.5em;
  }
}

@media (hover: hover) and (pointer: fine) {
  .page-private-events .events-offer__grid article:hover {
    background-color: rgba(255, 253, 232, 0.5);
  }
}

/* Five items in the two-column tablet band left the last cell empty.
   Let the odd one out run the full width instead. */
@media (min-width: 701px) and (max-width: 900px) {
  .page-private-events .events-offer__grid article:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

/* The actions column sat top-aligned and short, leaving the section's whole
   bottom-right corner empty. Boxing it balances the two columns. */
.page-private-events .events-contact__actions {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--panel-light);
  align-items: stretch;
}

.page-private-events .events-contact__actions .btn {
  justify-content: center;
  width: 100%;
}

.page-private-events .events-contact__actions > p {
  margin: 0.35rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  line-height: 1.6;
}

#visit .section-head {
  max-width: min(100%, 46rem);
}

#visit .section-head h2 {
  max-width: 19ch;
}

@media (min-width: 901px) {
  #visit .section-head h2 {
    max-width: none;
  }
}

.menu-closing-cta {
  padding-block: clamp(3.75rem, 7vw, 6.25rem);
  border-top: 1px solid var(--line);
}

.menu-closing-cta__copy {
  max-width: 40ch;
  margin: 0.9rem auto 1.75rem;
}

.menu-closing-cta .btn {
  min-height: 3rem;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  text-transform: uppercase;
  font-size: var(--font-label);
  font-weight: var(--weight-bold);
  line-height: 1.2;
  letter-spacing: 0.08em;
  min-height: 3.25rem;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: background-color var(--dur-base) var(--ease), color var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
  white-space: nowrap;
}

.btn:hover {
  background: var(--ink);
  color: #fffde8;
}

.btn:focus-visible,
.nav__link:focus-visible,
.text-link:focus-visible,
.faq-item summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.btn--gold {
  border-color: var(--gold);
  background: var(--gold);
  color: #fffde8;
}

.btn--gold:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fffde8;
}

.btn--small {
  padding: 0.95rem 1.85rem;
  font-size: 0.9rem;
}

.btn--quiet {
  border-color: var(--line-strong);
  background: var(--panel);
}

/* =========================================================
   Nav
   ========================================================= */
/* =========================================================
   Launch announcement bar
   Everything that sits under the fixed nav offsets by --announce-h,
   so dismissing it collapses the whole stack with one variable.
   ========================================================= */
:root {
  --announce-h: 2.5rem;
}

html.announce-off {
  --announce-h: 0px;
}

.announce {
  position: fixed;
  inset: 0 0 auto 0;
  /* Below the nav (100) so the mobile menu drawer covers it when open. */
  z-index: 99;
  display: flex;
  align-items: stretch;
  height: var(--announce-h);
  background: #d8a844;
  color: #223327;
}

html.announce-off .announce {
  display: none;
}

.announce__inner {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 0;
  padding-inline: 2.75rem 0.5rem;
  color: inherit;
  font-size: clamp(0.72rem, 1.55vw, 0.82rem);
  font-weight: var(--weight-medium);
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
}

.announce__inner:hover .announce__arrow {
  transform: translateX(3px);
}

.announce__badge {
  flex: 0 0 auto;
  padding: 0.15em 0.55em;
  border-radius: 999px;
  background: #223327;
  color: #f2ca68;
  font-size: 0.72em;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announce__text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.announce__arrow {
  flex: 0 0 auto;
  transition: transform var(--dur-base) var(--ease-out);
}

.announce__close {
  flex: 0 0 auto;
  width: 2.5rem;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
}

.announce__close:hover {
  opacity: 1;
}

/* One of the two is always display:none, so screen readers read it once. */
.announce__text--short {
  display: none;
}

@media (max-width: 700px) {
  .announce__inner {
    /* Left-aligned on phones: centring wastes the width the copy needs. */
    justify-content: flex-start;
    padding-inline: 0.85rem 0.25rem;
    gap: 0.4rem;
    text-align: left;
  }

  .announce__text--full,
  .announce__arrow {
    display: none;
  }

  .announce__text--short {
    display: inline;
  }
}

.nav {
  --ink: #fffde8;
  --muted: #d7e1c8;
  --gold: #f2ca68;
  --line: rgba(255, 253, 232, 0.2);
  --line-strong: rgba(255, 253, 232, 0.38);
  position: fixed;
  inset: 0 0 auto 0;
  top: var(--announce-h);
  z-index: 100;
  padding-block: 0.9rem;
  background: #223327;
  transition: background-color var(--dur-base) var(--ease), padding-block var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(34, 51, 39, 0.96);
  backdrop-filter: blur(10px);
  padding-block: 0.65rem;
  border-color: var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.nav__brand img {
  height: 56px;
  width: auto;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
}

.nav__btn.btn--gold {
  border-color: #d8a844;
  background: #d8a844;
  color: #223327;
}

.nav__btn.btn--gold:hover {
  border-color: #fffde8;
  background: #fffde8;
  color: #223327;
}

.nav__mobile-social {
  display: none;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(0.1rem, 0.7vw, 0.45rem);
}

.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-inline: 0;
  padding-inline: clamp(0.65rem, 0.9vw, 1rem);
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  font-weight: var(--weight-bold);
  line-height: 1.2;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity var(--dur-base) var(--ease), color var(--dur-base) var(--ease);
}

.nav__link.nav__link--mobile-only {
  display: none;
}

.nav__link:hover,
.nav__link.is-active {
  opacity: 1;
  color: var(--gold);
}

.nav__link--reservation {
  color: var(--gold);
  opacity: 1;
}

.nav__menu .btn {
  display: none;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .nav__right {
    gap: 0.75rem;
  }

  .nav__menu {
    gap: 0;
  }

  .nav__link {
    padding-inline: 0.52rem;
    font-size: 0.95rem;
  }

  .nav__btn.btn--small {
    padding-inline: 1.25rem;
  }
}

.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.nav__toggle span {
  height: 1.5px;
  width: 24px;
  background: var(--ink);
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-base) var(--ease);
}

.nav.is-open .nav__toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav.is-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav__toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav__brand img { height: 48px; }
  .nav__inner { gap: 0.6rem; }
  .nav__right { gap: 0.45rem; }
  .nav__brand,
  .nav__toggle {
    position: relative;
    z-index: 4;
  }
  .nav::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.66);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--dur-base) var(--ease), visibility var(--dur-base);
  }
  .nav.is-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav__brand {
    transition: opacity var(--dur-base) var(--ease);
  }
  .nav.is-open .nav__brand {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(90vw, 360px);
    height: 100dvh;
    min-height: 100vh;
    background: #223327;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: max(5.75rem, calc(env(safe-area-inset-top) + 4.75rem)) clamp(1.15rem, 5vw, 1.5rem) max(2rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 3;
    transform: translateX(100%);
    visibility: hidden;
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.4);
    transition: transform var(--dur-slow) var(--ease), visibility 0s linear var(--dur-slow);
  }
  .nav.is-open .nav__menu {
    transform: translateX(0);
    visibility: visible;
    transition: transform var(--dur-slow) var(--ease), visibility 0s;
  }
  .nav.is-scrolled.is-open {
    background: transparent;
    backdrop-filter: none;
    border-color: transparent;
  }
  .nav__link {
    margin: 0;
    min-height: 52px;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    justify-content: flex-start;
    text-align: left;
  }
  .nav__link.nav__link--mobile-only {
    display: inline-flex;
  }
  .nav__link--reservation {
    order: -1;
    justify-content: center;
    margin-bottom: 0.75rem;
    padding-inline: 1rem;
    border: 1px solid var(--gold);
    border-radius: 6px;
    background: var(--gold);
    color: #223327;
    font-weight: var(--weight-bold);
  }
  .nav__link--reservation:hover,
  .nav__link--reservation:focus-visible {
    background: #fffde8;
    border-color: #fffde8;
    color: #223327;
  }
  .nav__mobile-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-top: auto;
    padding-top: 2rem;
  }
  .nav__mobile-social a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    color: var(--muted);
    font-size: var(--font-label);
    font-weight: var(--weight-medium);
  }
  .nav__mobile-social a:hover,
  .nav__mobile-social a:focus-visible {
    border-color: var(--gold);
    color: var(--ink);
  }
  .nav__mobile-social img {
    width: 16px;
    height: 16px;
  }
  .nav__toggle:focus-visible,
  .nav__mobile-social a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }
  .nav__menu .btn { display: none; }
  .nav__btn.desktop { display: none; }
  .nav__toggle { display: flex; }
}

@media (max-width: 370px) {
  .nav { padding-block: 0.7rem; }
  .nav.is-scrolled { padding-block: 0.55rem; }
  .nav__brand img { height: 44px; }
  .nav__mobile-actions { gap: 0.3rem; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding-top: calc(clamp(7.25rem, 10vw, 8.75rem) + var(--announce-h));
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 1181px) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(1.75rem, 2.5vw, 2.5rem);
  }
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero .eyebrow {
  max-width: 38ch;
}

.hero__title {
  max-width: 11ch;
  font-size: var(--font-display);
  line-height: 1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero__text {
  color: var(--muted);
  max-width: 38ch;
}

.hero__text--lede {
  color: var(--ink);
  font-size: var(--font-lead);
  margin-bottom: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__cta--primary {
  border-color: var(--ink);
  background: var(--ink);
  color: #fffde8;
  box-shadow: 0 10px 24px rgba(34, 51, 39, 0.16);
}

.hero__cta--primary:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #fffde8;
}

.hero__cta--secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.hero__cta--secondary:hover {
  border-color: var(--ink);
  background: var(--panel-light);
  color: var(--ink);
}

.hero__right {
  position: relative;
  height: clamp(420px, 42vw, 600px);
}

.hero__mosaic {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1.75fr 1.05fr 1.1fr;
  gap: 0.55rem;
  height: 100%;
  transform: perspective(1200px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition: transform var(--dur-slow) var(--ease);
}

.hero__mosaic-a { grid-column: 1 / span 2; grid-row: 1; }
.hero__mosaic-b { grid-column: 3; grid-row: 1 / span 2; }
.hero__mosaic-c { grid-column: 1; grid-row: 2; }
.hero__mosaic-d { grid-column: 2; grid-row: 2; }
.hero__mosaic-e { grid-column: 1 / span 3; grid-row: 3; }

.hero__mosaic-cell {
  --enter-x: 8%;
  --enter-y: 0%;
  --exit-x: -6%;
  --exit-y: 0%;
  --enter-scale: 1.075;
  --exit-scale: 1.035;
  --image-duration: 1.1s;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(34, 51, 39, 0.16);
  transition: box-shadow var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}

.hero__mosaic-b {
  --enter-x: 0%;
  --enter-y: -7%;
  --exit-x: 0%;
  --exit-y: 6%;
}

.hero__mosaic-c {
  --enter-x: -9%;
  --exit-x: 7%;
}

.hero__mosaic-d {
  --enter-x: 0%;
  --enter-y: 9%;
  --exit-x: 0%;
  --exit-y: -7%;
}

.hero__mosaic-e {
  --enter-x: 6%;
  --exit-x: -4%;
}

.hero__mosaic-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translate3d(var(--enter-x), var(--enter-y), 0) scale(var(--enter-scale));
  transition: opacity var(--image-duration) var(--ease), transform var(--image-duration) var(--ease);
  z-index: 0;
}

.hero__mosaic-a img:nth-child(1) { object-position: 50% 54%; }
.hero__mosaic-a img:nth-child(2) { object-position: 50% 58%; }
.hero__mosaic-b img:nth-child(1) { object-position: 48% 50%; }
.hero__mosaic-b img:nth-child(2) { object-position: 44% 50%; }
.hero__mosaic-c img:nth-child(1) { object-position: 50% 58%; }
.hero__mosaic-c img:nth-child(2) { object-position: 50% 56%; }
.hero__mosaic-d img:nth-child(1) { object-position: 50% 56%; }
.hero__mosaic-d img:nth-child(2) { object-position: 50% 60%; }
.hero__mosaic-e img:nth-child(1) { object-position: 50% 58%; }
.hero__mosaic-e img:nth-child(2) { object-position: 50% 50%; }

.hero__mosaic-cell img.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.01);
  z-index: 2;
}

.hero__mosaic-cell img.is-leaving {
  opacity: 0;
  transform: translate3d(var(--exit-x), var(--exit-y), 0) scale(var(--exit-scale));
  z-index: 1;
  will-change: opacity, transform;
}

@media (min-width: 901px) and (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .hero__mosaic-cell:hover {
    z-index: 4;
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(34, 51, 39, 0.24);
  }

  .hero__mosaic-cell:hover img.is-active {
    transform: translate3d(0, 0, 0) scale(1.035);
  }
}

.hero__gallery-control {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 8;
  min-height: 40px;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(34, 51, 39, 0.86);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: var(--font-label);
  font-weight: var(--weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease), background-color var(--dur-base) var(--ease);
}

.hero__gallery-control:hover,
.hero__gallery-control:focus-visible {
  color: #223327;
  border-color: var(--gold);
  background: var(--gold);
}

.hero__gallery-control:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .hero__mosaic { transform: none; transition: none; }
  .hero__mosaic-cell { transition: none; }
  .hero__mosaic-cell img,
  .hero__mosaic-cell img.is-active,
  .hero__mosaic-cell img.is-leaving {
    transition: none;
    transform: none;
  }
  .hero__mosaic-cell img:not(.is-active) { display: none; }
  .hero__gallery-control { display: none; }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 6.75rem;
    padding-bottom: 3rem;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .hero__left { max-width: 42rem; }
  .hero__right { height: clamp(340px, 55vw, 440px); }
  .hero__title { max-width: 12ch; }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 6.25rem;
    padding-bottom: 2.25rem;
  }
  .hero__grid { gap: 1.75rem; }
  .hero__left { gap: 1.25rem; }
  .hero__title { max-width: 11.5ch; }
  .hero__right { height: clamp(260px, 80vw, 320px); }
  .hero__mosaic { gap: 0.35rem; }
  .hero__mosaic-cell {
    border-radius: 9px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  }
  .hero__actions .btn { width: 100%; }
  .hero__gallery-control { right: 0.65rem; bottom: 0.65rem; }
}

/* =========================================================
   Home photo-wall hero (Resturanto-style sliding tubes)
   Scoped to .hero--photo-wall so interior pages are untouched.
   ========================================================= */
.page-home {
  background: var(--ink);
}

.page-home__frame {
  position: fixed;
  inset: 0.4rem;
  z-index: 40;
  pointer-events: none;
  border: 0.15em solid #fffde8;
  border-radius: 1.9em;
}

.page-home .nav {
  background: transparent;
  border-bottom-color: transparent;
}

.page-home .nav.is-scrolled,
.page-home .nav.is-open {
  background: rgba(34, 51, 39, 0.96);
  border-color: var(--line);
}

.page-home .footer.home-end {
  position: relative;
  z-index: 12;
}

.home-flow-nav {
  display: none;
  position: fixed;
  right: clamp(1rem, 2.2vw, 1.8rem);
  top: 50%;
  z-index: 39;
  flex-direction: column;
  gap: 0.45rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.home-flow-nav a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  padding: 0.25rem 0.35rem 0.25rem 0.75rem;
  border: 1px solid rgba(255, 253, 232, 0.18);
  border-radius: 999px;
  background: rgba(34, 51, 39, 0.46);
  color: rgba(255, 253, 232, 0.72);
  font-size: 0.72rem;
  font-weight: var(--weight-bold);
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  pointer-events: auto;
  transition: color var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease), background-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}

.home-flow-nav a span {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 253, 232, 0.5);
  border-radius: 50%;
  background: rgba(34, 51, 39, 0.44);
  color: currentColor;
  font-size: 0.68rem;
  transition: border-color var(--dur-base) var(--ease), background-color var(--dur-base) var(--ease);
}

.home-flow-nav a:hover,
.home-flow-nav a:focus-visible,
.home-flow-nav a.is-active {
  border-color: rgba(255, 253, 232, 0.58);
  background: rgba(34, 51, 39, 0.72);
  color: #fffde8;
  transform: translateX(-0.25rem);
}

.home-flow-nav a.is-active span {
  border-color: #fffde8;
  background: rgba(216, 168, 68, 0.92);
  color: #223327;
}

.hero.hero--photo-wall {
  --hero-cream: #fffde8;
  position: relative;
  top: 0;
  z-index: 1;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  overflow: hidden;
  color: var(--hero-cream);
  background: #1a241c;
}

.hero--photo-wall .hero__frame {
  display: none;
}

.hero--photo-wall .hero__wall {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero--photo-wall .hero__wall-desktop {
  position: absolute;
  inset: -32% -10%;
  display: flex;
  justify-content: center;
  gap: 0.7em;
  transform: rotate(-30deg);
}

.hero--photo-wall .hero__wall-mobile {
  display: none;
}

.hero--photo-wall .hero__col {
  flex: 0 0 auto;
  width: min(16vw, 240px);
  height: 170%;
  overflow: hidden;
}

.hero--photo-wall .hero__col img { opacity: 0.92; }
.hero--photo-wall .hero__col--dim img { opacity: 0.68; }

.hero--photo-wall .hero__col--shift {
  margin-top: -4em;
}

.hero--photo-wall .hero__track,
.hero--photo-wall .hero__track-x {
  display: flex;
  will-change: transform;
}

.hero--photo-wall .hero__track {
  flex-direction: column;
  animation: hero-marquee-up var(--marquee-duration, 24s) linear infinite;
  animation-play-state: paused;
}

.hero--photo-wall .hero__col--down .hero__track {
  animation-name: hero-marquee-down;
}

.hero--photo-wall .hero__track[data-marquee-ready="true"],
.hero--photo-wall .hero__track-x[data-marquee-ready="true"],
.home-follow__track[data-marquee-ready="true"] {
  animation-play-state: running;
}

.hero--photo-wall .hero__tube {
  position: relative;
  width: 100%;
  height: 66vh;
  min-height: 16rem;
  margin-bottom: 1em;
  overflow: hidden;
  border-radius: 5em;
  background: #0f1611;
  flex: 0 0 auto;
}

.hero--photo-wall .hero__tube-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  /* Cancels the wall rotation (-30deg desktop / -22deg mobile) so labels sit level.
     Mid-tube is the widest horizontal chord through a rotated tube, so a level
     label fits there without the rounded ends slicing it. */
  transform: translate(-50%, -50%) rotate(var(--caption-rotate, 30deg));
  transform-origin: center;
  width: max-content;
  max-width: 82%;
  padding: 0.5em 0.9em;
  border: 1px solid rgba(242, 202, 104, 0.35);
  border-radius: 999px;
  /* Its own ground, so a label reads on a pale photo as well as a dark one. */
  background: rgba(14, 21, 16, 0.66);
  backdrop-filter: blur(6px);
  color: #fffde8;
  font-family: var(--font-sans);
  font-size: clamp(.82rem, .95vw, 1.05rem);
  font-weight: var(--weight-bold);
  letter-spacing: .06em;
  line-height: 1.25;
  text-align: center;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
  text-transform: uppercase;
  text-wrap: balance;
}

.hero--photo-wall .hero__tube img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero--photo-wall .hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(18, 26, 20, 0.78) 0%, rgba(18, 26, 20, 0.18) 42%, rgba(18, 26, 20, 0.28) 100%),
    radial-gradient(ellipse at center, rgba(18, 26, 20, 0.42) 0%, rgba(18, 26, 20, 0.08) 58%);
}

.hero--photo-wall .hero__center {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem clamp(1.5rem, 8vw, 9rem) 7.5rem;
  pointer-events: none;
}


.hero--photo-wall .hero__dock {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem 1.7rem;
  background: linear-gradient(to top, rgba(18, 26, 20, 0.88) 0%, rgba(18, 26, 20, 0.35) 62%, transparent 100%);
}

.hero--photo-wall .hero__hours {
  color: var(--hero-cream);
  font-size: 0.82rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero--photo-wall .hero__hours > span:not([aria-hidden]) {
  white-space: nowrap;
}

.hero--photo-wall .hero__hours:hover {
  color: #f2ca68;
}

.hero--photo-wall .hero__dock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.hero--photo-wall .hero__cta--primary {
  border-color: #d8a844;
  background: #d8a844;
  color: #223327;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.hero--photo-wall .hero__cta--primary:hover {
  border-color: var(--hero-cream);
  background: var(--hero-cream);
  color: #223327;
}

.hero--photo-wall .btn--gold {
  border-color: rgba(255, 253, 232, 0.72);
  background: transparent;
  color: var(--hero-cream);
}

.hero--photo-wall .btn--gold:hover {
  border-color: var(--hero-cream);
  background: var(--hero-cream);
  color: #223327;
}

.hero--photo-wall.is-paused .hero__track[data-marquee-ready="true"],
.hero--photo-wall.is-paused .hero__track-x[data-marquee-ready="true"],
.home-follow.is-paused .home-follow__track[data-marquee-ready="true"] {
  animation-play-state: paused;
}

@keyframes hero-marquee-up {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -50%, 0); }
}

@keyframes hero-marquee-down {
  from { transform: translate3d(0, -50%, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@keyframes hero-marquee-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes hero-marquee-right {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@media (max-width: 900px) {
  .hero.hero--photo-wall {
    padding: 0;
  }

  .hero--photo-wall .hero__wall-desktop {
    display: none;
  }

  .hero--photo-wall .hero__tube {
    --caption-rotate: 22deg;
  }

  .hero--photo-wall .hero__wall-mobile {
    position: absolute;
    inset: -22% -38%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.85em;
    transform: rotate(-22deg);
  }

  .hero--photo-wall .hero__row {
    overflow: hidden;
  }

  .hero--photo-wall .hero__row img { opacity: 0.86; }

  .hero--photo-wall .hero__track-x {
    flex-direction: row;
    width: max-content;
    animation: hero-marquee-left var(--marquee-duration, 32s) linear infinite;
    animation-play-state: paused;
  }

  .hero--photo-wall .hero__row--right .hero__track-x {
    animation-name: hero-marquee-right;
  }

  .hero--photo-wall .hero__tube--wide {
    width: min(72vw, 22rem);
    height: 22vh;
    min-height: 7.5rem;
    margin-bottom: 0;
    margin-right: 0.85em;
    border-radius: 6em;
  }

  .hero--photo-wall .hero__center {
    justify-content: flex-end;
    align-items: flex-start;
    padding: 4.5rem 1rem 10.5rem;
  }

  .hero--photo-wall .hero__dock {
    flex-direction: column;
    align-items: stretch;
    padding: 1.1rem 1rem 1.15rem;
  }

  .hero--photo-wall .hero__dock-actions .btn {
    flex: 1 1 auto;
  }

  .hero--photo-wall .hero__veil {
    background:
      linear-gradient(to top, rgba(18, 26, 20, 0.9) 0%, rgba(18, 26, 20, 0.38) 48%, rgba(18, 26, 20, 0.28) 100%);
  }
}

@media (max-width: 560px) {
  .hero--photo-wall .hero__tube--wide {
    width: 78vw;
    height: 18vh;
    min-height: 6.5rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .hero--photo-wall .hero__track,
  .hero--photo-wall .hero__track-x,
  .home-follow__track {
    animation: none;
    transform: none;
  }

}

/* Homepage story bands, category pills, follow wall */
.page-home main {
  position: relative;
  z-index: auto;
  display: grid;
  gap: clamp(0.85rem, 1.8vw, 1.35rem);
  padding: clamp(0.85rem, 1.8vw, 1.35rem);
  background: var(--bg);
  margin: 0;
  overflow: visible;
}

.page-home .home-stack {
  position: relative;
  top: auto;
  z-index: var(--stack-z, 2);
  /* Floor only, so bands still grow to fit their content. Kept well
     under a viewport height so text-light bands don't strand the copy
     in the middle of an empty card. */
  min-height: min(38rem, calc(100svh - 6rem));
  height: auto;
  max-height: none;
  margin: 0;
  overflow: hidden;
  border: 0.14em solid #fffde8;
  border-radius: 1.9em;
  box-shadow: 0 18px 52px rgba(34, 51, 39, 0.12);
  isolation: isolate;
}

.page-home .home-stack[data-stack="2"] { --stack-z: 2; }
.page-home .home-stack[data-stack="3"] { --stack-z: 3; }
.page-home .home-stack[data-stack="4"] { --stack-z: 4; }
.page-home .home-stack[data-stack="5"] { --stack-z: 5; }
.page-home .home-stack[data-stack="6"] { --stack-z: 6; }

.page-home .home-stack::after {
  content: attr(data-flow-label);
  position: absolute;
  right: clamp(1rem, 2.2vw, 2rem);
  top: clamp(5.85rem, 7.5vw, 6.7rem);
  z-index: 4;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(34, 51, 39, 0.18);
  border-radius: 999px;
  background: rgba(248, 244, 230, 0.82);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: var(--weight-bold);
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.page-home .home-cats.home-stack::after,
.page-home .home-follow.home-stack::after {
  border-color: rgba(255, 253, 232, 0.34);
  background: rgba(34, 51, 39, 0.62);
  color: #fffde8;
}

.page-home .home-end {
  position: relative;
  z-index: 12;
}

.story-band:has(.visit-strip) {
  grid-template-rows: auto minmax(0, 1fr);
}

.story-band:has(.visit-strip)::after {
  top: clamp(7.2rem, 9vw, 8rem);
}

@media (max-width: 900px) {
  .page-home__frame {
    inset: 0.3rem;
    border-width: 0.12em;
    border-radius: 1.4em;
  }

  .page-home .hero.hero--photo-wall {
    position: relative;
    z-index: 1;
    height: 100vh;
    height: 100dvh;
  }

  .page-home .home-stack {
    z-index: auto;
    min-height: 0;
    border-radius: 1.4em;
    box-shadow: none;
    margin: 0;
    overflow: hidden;
  }

  .home-flow-nav {
    display: none;
  }

  .page-home .home-stack::after {
    right: 0.85rem;
    top: 0.85rem;
    max-width: calc(100% - 1.7rem);
  }

  /* This section leads with the visit strip, which fills the top of the card
     on phones, so the flow-label pill landed on top of "7am-2pm". The strip
     already says what the section is about here; the other stacked sections
     keep their pill. */
  .page-home .story-band:has(.visit-strip)::after {
    content: none;
  }

  .page-home .footer.home-end {
    margin: 0.35rem;
    border-radius: 1.4em 1.4em 0 0;
  }
}

.page-home .visit-strip {
  grid-column: 1 / -1;
  border-block: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 244, 230, 0.72);
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-rows: 1fr;
  /* Floor only, so bands still grow to fit their content. Kept well
     under a viewport height so text-light bands don't strand the copy
     in the middle of an empty card. */
  min-height: min(38rem, calc(100svh - 6rem));
  align-items: stretch;
  overflow: hidden;
  background: var(--panel-light);
  color: var(--muted);
}

.story-band--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.story-band--reverse .story-band__media {
  order: 2;
}

.story-band__media {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  border-right: 1px solid var(--line-strong);
}

.story-band--reverse .story-band__media {
  border-right: 0;
  border-left: 1px solid var(--line-strong);
}

.story-band__media img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform var(--dur-image) var(--ease), filter var(--dur-image) var(--ease);
}

.story-band__media--bar img {
  /* A 3:2 source in a ~4:5 box crops the sides hard, so bias left where the
     bartender and the seated guests are. */
  object-position: 34% center;
}

.story-band__drink-card {
  position: absolute;
  right: clamp(1rem, 2.8vw, 2.1rem);
  bottom: clamp(1rem, 2.8vw, 2.1rem);
  z-index: 2;
  display: block;
  width: clamp(7rem, 11vw, 10rem);
  aspect-ratio: 1;
  overflow: hidden;
  border: 0.14em solid #fffde8;
  border-radius: 999px;
  background: #1a241c;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.story-band__drink-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform var(--dur-image) var(--ease);
}

.story-band.is-visible .story-band__media img,
.story-band:hover .story-band__media img {
  transform: scale(1);
}

.story-band.is-visible .story-band__drink-card img,
.story-band:hover .story-band__drink-card img {
  transform: scale(1.02);
}

.story-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 38rem;
  padding: clamp(2rem, 6vw, 5.5rem);
}

.story-band__copy h1,
.story-band__copy h2 {
  max-width: 11ch;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.8vw, 6.5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.story-band__lead {
  color: var(--ink);
  font-size: var(--font-lead);
  line-height: 1.55;
}

.story-band__copy p:not(.story-band__lead) {
  color: var(--muted);
}

.story-band .text-link {
  color: var(--ink);
}

.story-band__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem 1.6rem;
  margin-top: 0.5rem;
}

.home-features {
  display: flex;
  align-items: center;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}

/* Was a two-column grid: the features column took ~475px of a 1318px row,
   leaving the six category tiles ~810px of the 1214px they needed, so two of
   them silently clipped off the right edge with no scroll affordance. Stacking
   gives the tiles the full width. */
.home-cats {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 3vw, 2rem);
  background: var(--ink);
  overflow: hidden;
}

.home-cats__head {
  max-width: 46rem;
  color: #fffde8;
}

.home-cats__head .eyebrow {
  color: #f2ca68;
}

.home-cats__head h2 {
  color: #fffde8;
  margin-bottom: 0.5rem;
}

.home-cats__head p {
  margin: 0;
  max-width: 52ch;
  color: rgba(255, 253, 232, 0.78);
}

.home-cats__cta {
  display: flex;
  justify-content: flex-start;
}

/* Dark section: the default --gold button is #733c2c, which sits at 1.6:1
   against the ink background and reads as a hole rather than a button. */
.home-cats__cta .btn--gold {
  border-color: #d8a844;
  background: #d8a844;
  color: #223327;
}

.home-cats__cta .btn--gold:hover,
.home-cats__cta .btn--gold:focus-visible {
  border-color: #e8bf5e;
  background: #e8bf5e;
  color: #223327;
}

.home-cats__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  min-width: 0;
  color: #fffde8;
}

.home-cats__features .feature {
  align-items: flex-start;
  border-color: rgba(255, 253, 232, 0.18);
  background: rgba(255, 253, 232, 0.08);
  color: rgba(255, 253, 232, 0.78);
}

.home-cats__features .feature h3 {
  color: #fffde8;
}

.home-cats__features .feature p {
  color: rgba(255, 253, 232, 0.72);
}

.home-cats__features .feature img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.home-cats__row {
  display: flex;
  align-items: stretch;
  gap: clamp(0.6rem, 1.6vw, 1.4rem);
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

@media (min-width: 901px) {
  .home-cats__row {
    overflow-x: visible;
  }

  .home-cats__row .home-cat {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }
}

/* At tablet the five tiles overshot by ~44px, so the last one was sliced in
   half and looked broken rather than scrollable. Wrap 3 + 2 instead. */
@media (min-width: 701px) and (max-width: 900px) {
  .home-cats__row {
    flex-wrap: wrap;
    overflow-x: visible;
    row-gap: 1.75rem;
  }

  .home-cats__row .home-cat {
    flex: 0 0 calc((100% - 2.8rem) / 3);
    width: auto;
    min-width: 0;
  }
}

.home-cat {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(16vw, 11.5rem);
  min-width: 8.5rem;
  color: #fffde8;
  scroll-snap-align: center;
}

.home-cat__name {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.1vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  text-transform: lowercase;
  margin-bottom: 0.85rem;
}

.home-cat__visual {
  display: block;
  width: 100%;
  height: clamp(11rem, 28vh, 16rem);
  overflow: hidden;
  border-radius: 6em;
  background: #0f1611;
  transition: transform var(--dur-slow) var(--ease);
}

.home-cat__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-image) var(--ease);
}

.home-cat:hover .home-cat__visual,
.home-cat:focus-visible .home-cat__visual {
  transform: translateY(-4px);
}

.home-cat:hover .home-cat__visual img,
.home-cat:focus-visible .home-cat__visual img {
  transform: scale(1.06);
}

.home-cat--licensed .home-cat__visual {
  background: #301f1b;
}

.licensed-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: min(760px, calc(100dvh - 2rem));
  margin: 0;
  overflow: hidden;
  background: var(--panel-light);
  color: var(--muted);
}

.licensed-band__media {
  min-height: 24rem;
  overflow: hidden;
  border-right: 1px solid var(--line-strong);
}

.licensed-band__media img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform var(--dur-image) var(--ease);
}

.licensed-band.is-visible .licensed-band__media img,
.licensed-band:hover .licensed-band__media img {
  transform: scale(1);
}

.licensed-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 38rem;
  padding: clamp(2.25rem, 6vw, 5.5rem);
}

.licensed-band__copy h2 {
  max-width: 11ch;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.8vw, 6.5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.licensed-band__copy p {
  color: var(--ink);
  font-size: var(--font-lead);
}

.licensed-band__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.55rem 0 1.65rem;
}

.licensed-band__notes span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  font-size: var(--font-label);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Marks the eyebrow as an announcement rather than a section label. */
.eyebrow--new {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.eyebrow--new::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: currentColor;
}

.drinks-hero__hours {
  margin: 1.1rem 0 0;
  color: var(--gold);
  font-size: 1.05rem;
}

.drinks-hero__hours strong {
  font-weight: var(--weight-bold);
}

.licensed-band__hours {
  margin: 1.1rem 0 0;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.licensed-band__hours strong {
  font-weight: var(--weight-bold);
}

.licensed-band .btn--gold:hover {
  border-color: #fffde8;
  background: #fffde8;
  color: #223327;
}

.page-home #visit,
.page-home #book,
.page-home .faq-list {
  scroll-margin-top: calc(5.5rem + var(--announce-h));
}

.page-home #visit {
  background: var(--bg);
  margin: 0;
}

.page-home .section--surface.home-stack {
  background: var(--panel);
  border-block: 0;
}

.page-home .home-cats.home-stack {
  overflow: hidden;
}

.home-follow {
  position: relative;
  min-height: min(760px, calc(100dvh - 2rem));
  margin: 0;
  overflow: hidden;
  background: #1a241c;
  color: #fffde8;
}

.home-follow__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: min(760px, calc(100dvh - 2rem));
  padding: 3rem 1.25rem;
  text-align: center;
}

.home-follow__copy h2 {
  color: #fffde8;
  font-size: clamp(3rem, 8vw, 6.5rem);
  margin: 0 0 0.35em;
}

.home-follow__link {
  color: #fffde8;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-follow__link:hover {
  color: #f2ca68;
}

.home-follow__wall {
  position: absolute;
  inset: -18% -8%;
  z-index: 0;
  display: flex;
  justify-content: center;
  gap: 0.8em;
  pointer-events: none;
  opacity: 0.55;
  transform: rotate(-18deg);
}

.home-follow__col {
  width: min(18vw, 220px);
  overflow: hidden;
}

.home-follow__track {
  display: flex;
  flex-direction: column;
  animation: hero-marquee-up var(--marquee-duration, 26s) linear infinite;
  animation-play-state: paused;
}

.home-follow__col--down .home-follow__track {
  animation-name: hero-marquee-down;
}

.home-follow__tube {
  height: 38vh;
  min-height: 12rem;
  margin-bottom: 0.8em;
  overflow: hidden;
  border-radius: 5em;
  background: #0f1611;
  flex: 0 0 auto;
}

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

@media (max-width: 900px) {
  .story-band,
  .story-band--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .story-band--reverse .story-band__media {
    order: 0;
  }

  .story-band__media,
  .story-band--reverse .story-band__media,
  .licensed-band__media {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .story-band__media img {
    min-height: 16rem;
    max-height: 22rem;
  }

  .story-band__drink-card {
    right: 0.9rem;
    bottom: 0.9rem;
    width: clamp(6rem, 28vw, 8rem);
  }

  .story-band__copy h1,
  .story-band__copy h2,
  .licensed-band__copy h2 {
    font-size: clamp(3rem, 14vw, 5.8rem);
  }

  .home-cats {
    grid-template-columns: 1fr;
    padding-inline: 1rem 1.25rem;
  }

  .home-cats__features {
    grid-template-columns: 1fr;
  }

  .home-cats__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .home-cats__row {
    margin-inline: -1rem -1.25rem;
    padding-inline: 1rem 1.25rem;
  }

  .licensed-band {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .licensed-band__media img {
    min-height: 16rem;
    max-height: 24rem;
  }
}

/* =========================================================
   Visit essentials
   ========================================================= */
.visit-strip {
  border-block: 1px solid var(--line);
  background: rgba(248, 244, 230, 0.52);
}

.visit-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.visit-strip__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: clamp(1.25rem, 2.2vw, 1.5rem) clamp(1rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
}

.visit-strip__item:first-child { padding-left: 0; }
.visit-strip__item:last-child { border-right: 0; }

.visit-strip__item span {
  color: var(--gold);
  font-size: var(--font-label);
  font-weight: var(--weight-bold);
  line-height: 1.4;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.visit-strip__item strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: var(--weight-medium);
  line-height: 1.4;
}

@media (max-width: 900px) and (min-width: 701px) {
  .visit-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-strip__item:nth-child(2) {
    border-right: 0;
  }

  .visit-strip__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .visit-strip__grid { grid-template-columns: 1fr; }
  .visit-strip__item,
  .visit-strip__item:first-child {
    display: grid;
    grid-template-columns: minmax(7.5rem, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .visit-strip__item:last-child { border-bottom: 0; }
}

/* About page — align with the Drinks editorial system */
.page-about .about-hero::after { display: none !important; }
.page-about .about-hero__grid { align-items: center; }
.page-about .about-hero__copy { padding-block: 1rem; }
.page-about .about-hero h1 { font-size: clamp(3.6rem, 7vw, 6.8rem); }
.page-about .about-hero__media { height: clamp(24rem, 42vw, 34rem); border-radius: 1rem; }
.page-about .about-intro,
.page-about .about-offer,
.page-about .about-location { padding-block: clamp(4.5rem, 8vw, 7rem); }
.page-about .about-intro__grid { align-items: center; }
.page-about .about-intro .section-head h2,
.page-about .about-offer .section-head h2 { font-size: clamp(3rem, 5.4vw, 5.5rem); line-height: .98; }
.page-about .about-intro__lead { font-size: clamp(1.25rem, 1.8vw, 1.6rem); line-height: 1.45; }
.page-about .about-intro__copy > p:last-child { max-width: 42ch; font-size: 1.05rem; line-height: 1.7; }
.page-about .about-facts { margin-top: clamp(3rem, 6vw, 5rem); }
.page-about .about-facts strong { font-size: clamp(1.6rem, 2.9vw, 2.9rem); }
.page-about .about-offer__grid { margin-top: clamp(2.5rem, 5vw, 4rem); }
.page-about .about-offer__item { min-height: 15rem; }
.page-about .about-offer__item h3 { font-size: clamp(1.5rem, 2.4vw, 2.15rem); }
.page-about .about-offer__item p { max-width: 28ch; font-size: 1.02rem; line-height: 1.6; }
.page-about .about-story { min-height: min(680px, calc(100dvh - 2rem)); }
.page-about .about-story__media { min-height: 0; }
.page-about .about-story__media img { height: 100%; object-fit: cover; }
.page-about .about-story__copy { padding: clamp(3rem, 6vw, 6.5rem); }
.page-about .about-story__copy h2 { font-size: clamp(3rem, 5.2vw, 5.65rem); line-height: .98; }
.page-about .about-story__copy p { max-width: 38ch; font-size: 1.05rem; line-height: 1.7; }
.page-about .about-location__inner h2 { font-size: clamp(3rem, 5vw, 5.2rem); }
/* Homepage story rhythm — equal visual weight for image and copy */
.page-home .story-band,
.page-home .licensed-band {
  min-height: min(680px, calc(100dvh - 2rem));
}

.page-home .story-band__copy,
.page-home .licensed-band__copy {
  padding: clamp(3rem, 6vw, 6.5rem);
}

.page-home .story-band__copy h1,
.page-home .story-band__copy h2,
.page-home .licensed-band__copy h2 {
  max-width: 12ch;
  margin-block: .55rem 1.2rem;
  font-size: clamp(3.15rem, 5.2vw, 5.65rem);
  line-height: .98;
}

.page-home .story-band__lead,
.page-home .licensed-band__copy p {
  max-width: 34ch;
  font-size: clamp(1.1rem, 1.35vw, 1.28rem);
  line-height: 1.6;
}

.page-home .story-band__copy p:not(.story-band__lead) {
  max-width: 36ch;
  margin-top: .8rem;
  font-size: 1.06rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .page-home .story-band,
  .page-home .licensed-band {
    min-height: 0;
  }

  .page-home .story-band__copy,
  .page-home .licensed-band__copy {
    padding: clamp(2.5rem, 9vw, 4.5rem) clamp(1.35rem, 6vw, 2.5rem);
  }

  .page-home .story-band__copy h1,
  .page-home .story-band__copy h2,
  .page-home .licensed-band__copy h2 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }
}

/* Drinks page — a clear landing page for the expanded drinks offer */
.page-drinks { background: var(--ink); }
.drinks-hero { padding: clamp(6.5rem, 9vw, 8rem) 0 clamp(3rem, 5vw, 4.5rem); background: var(--bg); }
.drinks-hero__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .95fr); align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.drinks-hero h1 { margin: .6rem 0 1.5rem; max-width: 11ch; font-size: clamp(3.5rem, 7vw, 7rem); line-height: .92; letter-spacing: 0; }
.drinks-hero h1 em { color: var(--gold); font-style: normal; }
.drinks-hero p { max-width: 34ch; line-height: 1.65; }
.drinks-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.drinks-hero__media { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 1rem; }
.drinks-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.drinks-spotlight { background: var(--panel); }
.drinks-spotlight .section-head { max-width: 38rem; }
.drinks-spotlight .section-head p { margin-top: .8rem; font-size: 1.05rem; }
.drinks-spotlight__grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr 1.1fr; gap: clamp(.7rem, 1.6vw, 1.4rem); margin-top: 3rem; }
.drinks-spotlight__grid figure { position: relative; min-width: 0; height: clamp(21rem, 42vw, 34rem); margin: 0; overflow: hidden; border-radius: .8rem; background: var(--ink); }
.drinks-spotlight__grid figure:nth-child(2), .drinks-spotlight__grid figure:nth-child(4) { transform: translateY(2.5rem); }
.drinks-spotlight__grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform var(--dur-image) var(--ease), filter var(--dur-image) var(--ease); }
.drinks-spotlight__grid figure:first-child img, .drinks-spotlight__grid figure:nth-child(3) img { object-position: center 62%; }
.drinks-spotlight__grid figure:hover img { transform: scale(1.05); filter: saturate(1.1); }
.drinks-spotlight__grid figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: grid; gap: .25rem; padding: 3.5rem 1.1rem 1.1rem; color: #fffde8; background: linear-gradient(transparent, rgba(18,26,20,.9)); }
.drinks-spotlight__grid figcaption span { color: #f2ca68; font-size: .68rem; font-weight: 700; letter-spacing: .15em; }
.drinks-spotlight__grid figcaption strong { font-family: var(--font-serif); font-size: clamp(1.45rem, 2vw, 2rem); font-weight: 500; line-height: 1; }
.drinks-spotlight__grid figcaption small { color: rgba(255,253,232,.8); font-size: .78rem; }
.drinks-listing { background: var(--bg); border-top: 1px solid rgba(34,51,39,.18); }
.drinks-listing .section-head { max-width: 38rem; }
.drinks-listing__grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 3rem; border-top: 1px solid rgba(34,51,39,.25); }
.drinks-listing__grid article { min-height: 14rem; padding: 1.5rem 1.5rem 2rem 0; border-bottom: 1px solid rgba(34,51,39,.25); }
.drinks-listing__grid article:not(:nth-child(3n+1)) { padding-left: 1.5rem; border-left: 1px solid rgba(34,51,39,.25); }
.drinks-listing__grid span { color: var(--gold-dark); font-size: .75rem; letter-spacing: .12em; }
.drinks-listing__grid h3 { margin: 1.25rem 0 .6rem; font-size: 1.8rem; }
.drinks-listing__grid p { max-width: 28ch; line-height: 1.6; }
.drinks-listing__more { margin-top: 2rem; }
.drinks-cta { text-align: center; }
.drinks-cta p { max-width: 34rem; margin: 1rem auto 2rem; line-height: 1.6; }

/* The staggered tiles are shifted with transform, which takes no layout
   space, so the section's bottom rhythm has to be paid back manually. */
@media (min-width: 901px) {
  .drinks-spotlight__grid { margin-bottom: 2.5rem; }
}

/* Tablet. Without this the spotlight stayed 4-across down to 700px, which
   left ~150px columns and wrapped captions like "Vodka & Rum" onto 3 lines. */
@media (max-width: 900px) {
  .drinks-hero__inner { grid-template-columns: minmax(0, 1fr) minmax(17rem, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
  .drinks-hero h1 { max-width: 10ch; font-size: clamp(3rem, 6.5vw, 4.5rem); }
  .drinks-spotlight__grid { grid-template-columns: repeat(2, 1fr); }
  .drinks-spotlight__grid figure { height: clamp(19rem, 34vw, 24rem); }
  .drinks-spotlight__grid figure:nth-child(2), .drinks-spotlight__grid figure:nth-child(4) { transform: none; }
  .drinks-listing__grid { grid-template-columns: repeat(2, 1fr); }
  .drinks-listing__grid article:not(:nth-child(3n+1)) { padding-left: 0; border-left: 0; }
  .drinks-listing__grid article:not(:nth-child(2n+1)) { padding-left: 1.5rem; border-left: 1px solid rgba(34,51,39,.25); }
}

@media (max-width: 700px) {
  .drinks-hero__inner { grid-template-columns: 1fr; }
  .drinks-hero h1 { font-size: clamp(3.5rem, 16vw, 5.5rem); }
  .drinks-hero__media { order: -1; aspect-ratio: 4 / 5; }
  .drinks-spotlight__grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; margin-top: 2rem; }
  .drinks-spotlight__grid figure { height: 20rem; }
  .drinks-spotlight__grid figure:nth-child(2), .drinks-spotlight__grid figure:nth-child(4) { transform: none; }
  .drinks-spotlight__grid figcaption { padding: 3rem .75rem .75rem; }
  .drinks-spotlight__grid figcaption strong { font-size: 1.35rem; }
  .drinks-spotlight__grid figcaption small { font-size: .7rem; }
  .drinks-listing__grid { grid-template-columns: 1fr; }
  .drinks-listing__grid article, .drinks-listing__grid article:not(:nth-child(3n+1)), .drinks-listing__grid article:not(:nth-child(2n+1)) { min-height: auto; padding: 1.5rem 0; border-left: 0; }
}

/* =========================================================
   Split / story pattern (Our Story, Great Moments)
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 46fr 54fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.split--reverse {
  grid-template-columns: 54fr 46fr;
}

.split--reverse .split__media { order: 2; }
.split--reverse .split__body { order: 1; }

.split__media {
  position: relative;
}

.split__media > img:not(.split__img-a):not(.split__img-b) {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 18px;
}

.split__media--duo {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1rem;
  align-items: end;
}

.split__media--duo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.split__media--duo .split__img-a { height: 260px; align-self: start; }
.split__media--duo .split__img-b { height: 400px; }

.split__body > p:first-of-type {
  color: var(--ink);
  font-size: var(--font-lead);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media,
  .split--reverse .split__body { order: initial; }
  .split__media--duo .split__img-a,
  .split__media--duo .split__img-b { height: 220px; }
  .split__media > img:not(.split__img-a):not(.split__img-b) { min-height: 320px; }
}

.meet-atrio__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.meet-atrio__content {
  max-width: 36rem;
}

.meet-atrio__content h2 {
  max-width: 14ch;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.meet-atrio__lead {
  color: var(--ink);
  font-size: var(--font-lead);
  line-height: 1.55;
}

.meet-atrio__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  align-items: center;
  margin-top: 2rem;
}

.meet-atrio__actions .text-link {
  margin-top: 0;
}

.meet-atrio__media {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.meet-atrio__image {
  display: block;
  width: 100%;
  height: clamp(360px, 35vw, 500px);
  object-fit: cover;
  border-radius: 18px;
}

.meet-atrio__image--place {
  object-position: 48% 50%;
}

.meet-atrio__image--food {
  object-position: 50% 50%;
}

@media (max-width: 900px) {
  .meet-atrio__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .meet-atrio__content,
  .meet-atrio__content h2 {
    max-width: 100%;
  }

  .meet-atrio__image {
    height: clamp(220px, 58vw, 360px);
  }
}

/* =========================================================
   About page — complete editorial layout
   ========================================================= */
.page-about .about-hero {
  padding-block: clamp(6.75rem, 10vw, 9rem) clamp(1.25rem, 3vw, 2rem);
  text-align: left;
}

.page-about .about-hero::after {
  display: none;
}

.page-about .about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.72fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
  max-width: 90rem;
}

.page-about .about-hero__copy {
  padding-block: 1rem 2.5rem;
}

.page-about .about-hero h1 {
  max-width: 8ch;
  margin: 1rem 0 1.5rem;
  font-size: clamp(4rem, 8.5vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.page-about .about-hero p {
  max-width: 34ch;
  margin: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
}

.about-hero__actions,
.about-location__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 2rem;
}

.about-hero__media {
  position: relative;
  height: clamp(28rem, 52vw, 43rem);
  overflow: hidden;
  border-radius: 1.35rem;
  background: var(--panel);
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%;
  transition: transform var(--dur-image) var(--ease), filter var(--dur-image) var(--ease);
}

.about-hero__stamp {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  border: 1px solid rgba(255, 253, 232, 0.75);
  border-radius: 50%;
  background: rgba(34, 51, 39, 0.82);
  color: #fffde8;
  font-size: 0.62rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.about-intro {
  background: var(--panel-light);
}

.about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.75fr);
  align-items: start;
  gap: clamp(2rem, 8vw, 9rem);
}

.page-about .about-intro .section-head,
.page-about .about-offer .section-head {
  margin-bottom: 0;
  text-align: left;
}

.about-intro__lead {
  max-width: 22ch;
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1.05;
}

.about-intro__copy > p:last-child {
  max-width: 42ch;
  margin-bottom: 0;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--line-strong);
}

.about-facts > div {
  display: grid;
  gap: 0.2rem;
  padding: 1.25rem 1rem 0 0;
  border-right: 1px solid var(--line-strong);
}

.about-facts > div + div {
  padding-left: 1rem;
}

.about-facts > div:last-child {
  border-right: 0;
}

.about-facts strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.7vw, 2.6rem);
  font-weight: var(--weight-regular);
  line-height: 1.05;
  white-space: nowrap;
}

.about-facts span {
  color: var(--muted);
  font-size: var(--font-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-offer {
  background: var(--bg);
}

.about-offer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(2.25rem, 5vw, 4rem);
  border-top: 1px solid var(--line-strong);
}

.about-offer__item {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem clamp(1rem, 2.5vw, 2rem) 1.75rem 0;
  border-right: 1px solid var(--line-strong);
}

.about-offer__item + .about-offer__item {
  padding-left: clamp(1rem, 2.5vw, 2rem);
}

.about-offer__item:last-child {
  border-right: 0;
}

.about-offer__number {
  color: var(--gold-dark);
  font-size: var(--font-label);
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
}

.about-offer__item h3 {
  margin: auto 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: var(--weight-regular);
  line-height: 1;
}

.about-offer__item p {
  max-width: 26ch;
  margin-bottom: 1.25rem;
}

.about-story--intro {
  background: var(--panel-light);
}

.page-about .about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.8fr);
  align-items: center;
  gap: clamp(2.5rem, 9vw, 10rem);
}

.about-story__media {
  overflow: hidden;
  border-radius: 1.35rem;
}

.about-story__media img {
  width: 100%;
  height: clamp(28rem, 48vw, 42rem);
  object-fit: cover;
  object-position: 50% 44%;
  transition: transform var(--dur-image) var(--ease), filter var(--dur-image) var(--ease);
}

.about-story__copy {
  max-width: 38rem;
}

.about-story__copy h2 {
  max-width: 11ch;
}

.about-story__copy .btn {
  margin-top: 1rem;
}

.about-location {
  background: var(--bg);
}

.about-location__inner {
  max-width: 52rem;
  text-align: center;
}

.about-location__inner .section-copy {
  margin-inline: auto;
}

.about-location__actions {
  justify-content: center;
}

@media (min-width: 901px) and (hover: hover) and (pointer: fine) {
  .about-hero__media:hover img,
  .about-story__media:hover img {
    filter: saturate(1.06);
    transform: scale(1.035);
  }
}

@media (max-width: 900px) {
  .page-about .about-hero__grid,
  .about-intro__grid,
  .page-about .about-story__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-about .about-hero__copy {
    padding-bottom: 0;
  }

  .page-about .about-hero h1 {
    max-width: 10ch;
    font-size: clamp(3.5rem, 14vw, 6rem);
  }

  .about-hero__media {
    height: min(125vw, 38rem);
  }

  .about-offer__grid {
    grid-template-columns: 1fr;
  }

  .about-offer__item,
  .about-offer__item + .about-offer__item {
    min-height: 0;
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .about-offer__item h3 {
    margin-top: 3rem;
  }

  .about-offer__item:last-child {
    border-bottom: 0;
  }

  .about-story__media img {
    height: min(125vw, 34rem);
  }
}

@media (max-width: 560px) {
  .page-about .about-hero {
    padding-top: 6.5rem;
  }

  .page-about .about-hero h1 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .about-hero__actions,
  .about-hero__actions .btn,
  .about-location__actions,
  .about-location__actions .btn {
    width: 100%;
  }

  .about-hero__actions .text-link {
    justify-content: center;
    width: 100%;
  }

  .about-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Two per row, so the row-1 cells need a divider below them. */
  .about-facts > div:nth-child(2n) {
    border-right: 0;
  }

  .about-facts > div:nth-child(-n + 2) {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line-strong);
  }

  .about-facts > div:nth-child(n + 3) {
    padding-top: 1.25rem;
  }

  .about-facts > div {
    padding-right: 0.5rem;
  }

  .about-facts > div:nth-child(2n) {
    padding-left: 0.5rem;
  }

  .about-facts > div:nth-child(2n + 1) {
    padding-left: 0;
  }

  .about-facts span {
    font-size: 0.58rem;
  }
}

@media (max-width: 560px) {
  .meet-atrio__actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 1.5rem;
  }

  .meet-atrio__actions .btn {
    width: 100%;
  }

  .meet-atrio__media {
    gap: 0.65rem;
  }

  .meet-atrio__image {
    height: clamp(190px, 58vw, 260px);
    border-radius: 12px;
  }
}

/* =========================================================
   Features
   ========================================================= */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: var(--section-y-sm);
  border-top: 1px solid var(--line);
}

.feature {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: transform var(--dur-base) var(--ease);
}

.feature:hover {
  transform: translateY(-3px);
}

.feature img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: filter var(--dur-base) var(--ease);
}

.feature:hover img {
  filter: drop-shadow(0 0 8px rgba(218, 168, 50, 0.45));
}

.feature h3 {
  color: var(--ink);
  font-size: 1rem;
  font-weight: var(--weight-medium);
  line-height: 1.35;
  margin-bottom: 0.4em;
  font-family: var(--font-sans);
  transition: color var(--dur-base) var(--ease);
}

.feature:hover h3 {
  color: var(--gold);
}

.feature p {
  font-size: var(--font-small);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .features__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Menu tabs
   ========================================================= */
.menu-tabs__nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.75rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.menu-tabs__nav::-webkit-scrollbar {
  display: none;
}

.menu-tabs__btn {
  background: none;
  border: none;
  color: var(--muted);
  text-transform: uppercase;
  font-size: var(--font-label);
  font-weight: var(--weight-medium);
  line-height: 1.2;
  letter-spacing: 0.06em;
  padding: 0.9rem 1.1rem;
  min-height: 44px;
  flex: 0 0 auto;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 999px;
  scroll-snap-align: start;
  transition: color var(--dur-base) var(--ease), background-color var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}

.menu-tabs__btn:hover {
  color: var(--ink);
}

.menu-tabs__btn.is-active {
  color: #fffde8;
  background: var(--ink);
  border-color: var(--ink);
  font-weight: var(--weight-bold);
}

.menu-tabs__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (min-width: 901px) {
  .menu-tabs__nav {
    overflow: visible;
  }
}

.menu-tabs__panel {
  display: none;
}

.menu-tabs__panel.is-active {
  display: block;
  animation: fade-up 0.4s var(--ease);
}

.menu-preview__head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.7fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  max-width: none;
}

.menu-preview__head p {
  margin-bottom: 0.75rem;
}

.menu-preview__media > img:not(.split__img-a):not(.split__img-b) {
  display: block;
  height: clamp(240px, 58vw, 360px);
  min-height: 0;
  object-position: center;
}

.text-link {
  display: inline-flex;
  gap: 0.55rem;
  margin-top: 2rem;
  color: var(--ink);
  font-size: var(--font-label);
  font-weight: var(--weight-bold);
  line-height: 1.3;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.3rem;
}

.text-link span {
  color: var(--gold);
  transition: transform var(--dur-base) var(--ease);
}

.text-link:hover span { transform: translateX(3px); }

.menu-preview__all-link {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding: 0.65rem 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .menu-preview__head { grid-template-columns: 1fr; gap: 0.5rem; }
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.menu-row__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  column-gap: clamp(0.75rem, 3vw, 1.25rem);
  color: var(--ink);
  font-size: 1rem;
  font-weight: var(--weight-bold);
  line-height: 1.4;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--line-strong);
}

.menu-row__top > :first-child { min-width: 0; }

.menu-row__price {
  color: var(--menu-price);
  white-space: nowrap;
  font-weight: var(--weight-bold);
}

.menu-row__info {
  font-size: var(--font-small);
  line-height: 1.55;
  text-wrap: pretty;
  overflow-wrap: break-word;
  margin: 0.5rem 0 0;
}

/* =========================================================
   Reservation / booking form
   ========================================================= */
.booking-form {
  display: grid;
  gap: 1.25rem;
}

/* The submit needs more separation than one field has from the next. */
.booking-form > .btn[type="submit"] {
  margin-top: 0.5rem;
}

.visit-form-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--panel-light);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(34, 51, 39, 0.04), 0 18px 40px -20px rgba(34, 51, 39, 0.18);
}

.visit-form-card > p {
  margin-bottom: 1.75rem;
  color: var(--muted) !important;
  font-size: var(--font-small) !important;
  line-height: 1.55;
}

.visit-directions {
  margin-top: 2rem;
}

#visit .split {
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  align-items: start;
}

.visit-details-card {
  padding: clamp(0.5rem, 2vw, 1.25rem) 0;
}

.visit-details-card > h3 {
  margin-bottom: 0.35rem;
  font-size: var(--font-card-title);
}

.visit-details-card > h3 + .contact-info {
  margin-top: 1.25rem;
}

.visit-details-card .contact-info {
  display: flex;
  gap: 0;
  border-block: 1px solid var(--line);
}

.visit-details-card .contact-info__item {
  min-width: 0;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.visit-details-card .contact-info__item:last-child {
  border-bottom: 0;
}

.visit-details-card .contact-info__item img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}

/* Same micro-label treatment as the form's field labels, so "Email" and
   "Phone" read alike in both columns of this section. */
.visit-details-card .contact-info__item h3 {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: var(--font-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.visit-actions .btn {
  flex: 1 1 10rem;
  min-height: 48px;
}

.visit-actions .visit-directions {
  margin-top: 0;
}

.visit-call {
  border-color: var(--line-strong);
  color: var(--ink);
}

.visit-call:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #223327;
}

@media (max-width: 900px) {
  #visit .split {
    grid-template-columns: 1fr;
  }

  #visit .visit-details-card { order: 1; }
  #visit .visit-form-card { order: 2; }

  .visit-details-card {
    padding-top: 0;
  }
}

.booking-field label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: var(--font-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-label);
  line-height: 1.35;
  text-transform: uppercase;
  transition: color var(--dur-fast) var(--ease);
}

.booking-field:focus-within label {
  color: var(--gold);
}

.booking-field__optional {
  color: var(--muted-dim);
  font-weight: var(--weight-medium);
}

.booking-field input,
.booking-field textarea,
.booking-field select {
  width: 100%;
  min-height: 44px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  padding: 0.5rem 0;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.booking-field input:hover,
.booking-field textarea:hover,
.booking-field select:hover {
  border-color: var(--muted);
}

/* The native control does not take the underline treatment, so it is replaced
   with a chevron matching the label colour. */
.booking-field select {
  appearance: none;
  padding-right: 1.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23435c49' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.15rem center;
  background-size: 12px 8px;
  cursor: pointer;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: var(--muted-dim);
}

.booking-field input:focus,
.booking-field textarea:focus,
.booking-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 1px 0 0 var(--gold);
}

.booking-field input:-webkit-autofill,
.booking-field input:-webkit-autofill:hover,
.booking-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 9999s ease-in-out 0s;
  caret-color: var(--ink);
}

.booking-field input[type="date"] {
  color-scheme: light;
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  /* Native icon is pure black; this brings it back to the label's weight. */
  opacity: 0.55;
  cursor: pointer;
  transition: opacity var(--dur-fast) var(--ease);
}

.booking-field input[type="date"]:hover::-webkit-calendar-picker-indicator,
.booking-field input[type="date"]:focus::-webkit-calendar-picker-indicator {
  opacity: 1;
}

.booking-field__hint {
  margin: 0.4rem 0 0;
  color: #b8452e;
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Not an error — just says which service runs on the day picked. */
.booking-field__hint--note {
  color: var(--muted);
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.4rem;
}

.booking-row--uneven {
  grid-template-columns: minmax(5.5rem, 0.42fr) minmax(0, 1fr);
}

/* Spans the pair, since it applies to email and phone together. */
.booking-row__note {
  grid-column: 1 / -1;
  margin: -0.5rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .booking-row,
  .booking-row--uneven { grid-template-columns: 1fr; }
}

/* =========================================================
   Instagram strip
   ========================================================= */
.insta-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.insta-strip__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.insta-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.insta-strip__item:nth-child(1) > img:first-child { object-position: 50% 58%; }
.insta-strip__item:nth-child(2) > img:first-child { object-position: 50% 50%; }
.insta-strip__item:nth-child(3) > img:first-child { object-position: 52% 50%; }
.insta-strip__item:nth-child(4) > img:first-child { object-position: 50% 48%; }
.insta-strip__item:nth-child(5) > img:first-child { object-position: 52% 45%; }

.insta-strip__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 2, 2, 0.55);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
}

.insta-strip__icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
  z-index: 1;
}

.insta-strip__item:hover img {
  transform: scale(1.08);
}

.insta-strip__item:hover::after,
.insta-strip__item:hover .insta-strip__icon {
  opacity: 1;
}

@media (min-width: 701px) and (max-width: 900px) {
  .insta-strip { grid-template-columns: repeat(4, 1fr); }
  .insta-strip__item:nth-child(5) { display: none; }
}

@media (max-width: 700px) {
  .insta-strip { grid-template-columns: repeat(3, 1fr); }
  .insta-strip__item:nth-child(n + 4) { display: none; }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  --ink: #fffde8;
  --muted: #d7e1c8;
  --muted-dim: #a3b89b;
  --gold: #f2ca68;
  --line: rgba(255, 253, 232, 0.18);
  --line-strong: rgba(255, 253, 232, 0.36);
  background: #223327;
  padding-top: var(--section-y-sm);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}

.footer__cols {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.footer__map {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  overflow: hidden;
  line-height: 0;
}

.footer__map iframe {
  display: block;
  width: 100%;
  height: clamp(200px, 24vw, 280px);
  border: 0;
}

.footer__col-title {
  color: var(--gold);
  text-transform: uppercase;
  font-size: var(--font-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-label);
  margin-bottom: 1.1rem;
}

.footer__col a {
  display: block;
  color: var(--muted);
  font-size: var(--font-small);
  padding-block: 0.4rem;
  transition: color var(--dur-base) var(--ease);
}

.footer__col a:hover {
  color: var(--gold);
}

.footer__brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.footer__brand img {
  width: auto;
  height: 42px;
}

.footer__address {
  color: var(--ink);
  font-size: var(--font-small);
  max-width: 28ch;
  overflow-wrap: anywhere;
}

.footer__contact {
  color: var(--muted);
  font-size: var(--font-small);
  overflow-wrap: anywhere;
  transition: color var(--dur-base) var(--ease);
}

.footer__contact:hover {
  color: var(--gold);
}

.footer__hours {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.55;
}

.footer__contact--phone,
#visit .visit-contact-link {
  color: var(--ink);
  font-weight: var(--weight-bold);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer__address-link,
#visit .visit-address-link {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

#visit .contact-info__item--location .visit-address-link,
#visit .contact-info__item--hours p {
  color: var(--ink);
  font-weight: var(--weight-medium);
  line-height: 1.55;
}

#visit .contact-info__item--hours strong {
  font-weight: var(--weight-bold);
}

#visit .contact-info__item--hours span {
  color: var(--muted);
  font-weight: 400;
}

.footer__about-title {
  color: var(--ink);
  font-size: var(--font-small);
  font-weight: var(--weight-medium);
  margin-bottom: 0.6em;
}

.footer__about-text {
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.social-label {
  margin: 1.5rem 0 -0.55rem;
  color: var(--gold);
  font-size: var(--font-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

#visit .social-label {
  color: var(--ink);
}

.booking-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  align-items: center;
  margin-top: 0.85rem;
  color: var(--color-muted);
  font-size: var(--font-small);
}

.booking-links a {
  color: var(--color-green-dark);
  font-weight: var(--weight-bold);
  text-decoration: underline;
  text-decoration-color: var(--color-gold-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.booking-links a:hover {
  color: var(--color-gold-dark);
}

#visit .visit-social {
  margin-top: 0.85rem;
}

#visit .footer__social img {
  filter: invert(1);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-base) var(--ease), background-color var(--dur-base) var(--ease);
}

.footer__social a:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.footer__social img {
  width: 16px;
  height: 16px;
}

.footer__social a:hover img {
  filter: brightness(0);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-block: 1.75rem;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.footer__bottom a {
  color: var(--gold);
  font-weight: var(--weight-medium);
  transition: color var(--dur-base) var(--ease);
}

.footer__bottom a:hover {
  color: var(--ink);
}

@media (max-width: 900px) {
  .footer { padding-top: 3rem; }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-bottom: 2rem;
    text-align: center;
  }
  .footer__cols { justify-content: center; }
  .footer__map { margin-top: 1.5rem; }
  .footer__map iframe { height: 220px; }
  .footer__brand { order: -1; }
  .footer__about-text { max-width: 38ch; margin-inline: auto; }
  .footer__social { justify-content: center; }
  .footer__bottom { justify-content: center; text-align: center; }
  .footer__col a { padding-block: 0.5rem; }
}

@media (min-width: 561px) and (max-width: 900px) {
  .footer__top {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    text-align: left;
  }
  .footer__brand {
    grid-column: 1 / -1;
    order: initial;
    align-items: flex-start;
    text-align: left;
  }
  .footer__cols,
  .footer__social { justify-content: flex-start; }
  .footer__about-text { margin-inline: 0; }
  .footer__bottom { justify-content: space-between; text-align: left; }
}

@media (max-width: 560px) {
  .footer__cols { gap: 2rem; }
  .footer__bottom > div:last-child { display: none; }
}

/* =========================================================
   Page hero (interior pages)
   ========================================================= */
.page-hero {
  padding-top: clamp(7.5rem, 12vw, 8.75rem);
  padding-bottom: clamp(2.75rem, 5vw, 4.5rem);
  text-align: center;
}

.page-hero .container {
  max-width: min(100%, 64rem);
}

.page-hero h1 {
  max-width: 22ch;
  margin-inline: auto;
}

.page-hero p {
  max-width: 58ch;
  margin-inline: auto;
  color: var(--muted);
}

@media (max-width: 700px) {
  .page-hero {
    padding-top: 6.5rem;
    padding-bottom: 2rem;
  }
  .page-hero h1 { max-width: 17ch; }
  .page-hero p {
    max-width: 34ch;
  }
}

.page-hero .eyebrow { display: block; }

.page-hero--menu {
  position: relative;
  isolation: isolate;
  color: #fffde8;
}

.page-hero--menu::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(180deg, rgba(20, 31, 22, 0.86) 0%, rgba(20, 31, 22, 0.66) 45%, var(--bg) 96%),
    url("../images/optimized/variants/atrio-menu-spread-800.webp");
  background-size: cover, cover;
  background-position: center, center 62%;
  background-repeat: no-repeat, no-repeat;
}

.page-hero--menu .eyebrow { color: #f2ca68; }
.page-hero--menu h1 { color: #fffde8; }
.page-hero--menu p { color: rgba(255, 253, 232, 0.85); }
.page-hero--menu p strong { color: #fffde8; }

.page-menu {
  background: var(--ink);
}

.page-menu .footer {
  position: relative;
  z-index: 9;
}

/* =========================================================
   Menu page — scrolling category list with a sticky picker
   One continuous list, so a visitor can read straight through
   or jump with the rail; the rail tracks whatever is on screen.
   ========================================================= */
.menu2 {
  /* Everything fixed above the page: announcement bar + nav. */
  --menu-top: calc(var(--announce-h) + 5.25rem);
  /* The nav shrinks as the page scrolls, so the sticky bar sits at its
     scrolled height and lets the taller resting nav overlap it. */
  --menu-stick: calc(var(--announce-h) + 4.7rem);
  /* Height of the sticky bar, so anchor jumps clear it. */
  --menu-bar-h: 5.5rem;
  position: relative;
  margin: calc(var(--menu-top) + 0.45rem) 0.45rem 0;
  padding: clamp(2rem, 4vw, 3.25rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--bg);
  border: 1px solid #fffde8;
  border-radius: 1.9rem;
}

.menu2__intro {
  max-width: 46rem;
  margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
  padding-inline: var(--gutter);
  text-align: center;
}

.menu2__eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-dark);
  font-size: var(--font-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.menu2__title {
  margin: 0 0 0.6rem;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: var(--font-h1);
  font-weight: var(--weight-regular);
  line-height: 1.04;
  text-wrap: balance;
}

.menu2__lead {
  margin: 0 auto;
  max-width: 42rem;
  color: var(--muted);
  font-size: var(--font-lead);
  line-height: 1.55;
  text-wrap: pretty;
}

.menu2__facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.menu2__fact {
  padding: 0.4rem 0.9rem;
  color: var(--ink);
  background: var(--panel);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: var(--weight-medium);
}

.menu2__fact span {
  color: var(--muted-dim);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  margin-right: 0.35rem;
}

.menu2__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 0.75rem;
  margin-top: 1.5rem;
}

/* ---- Search + mobile category chips ---- */
.menu2__bar {
  position: sticky;
  /* Sits directly under the fixed nav, so the picker is always in reach. */
  top: var(--menu-stick);
  z-index: 20;
  padding: 0.75rem var(--gutter);
  margin-bottom: 0.5rem;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease);
}

.menu2__bar.is-stuck {
  border-bottom-color: var(--line);
}

.menu2__search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 34rem;
  margin: 0 auto;
}

.menu2__search-icon {
  position: absolute;
  left: 1rem;
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: var(--muted-dim);
  stroke-width: 2;
  stroke-linecap: round;
  pointer-events: none;
}

.menu2__search-input {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 2.75rem;
  color: var(--ink);
  background: var(--panel-light);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 1rem;
  /* iOS zooms the page on focus below 16px; 1rem keeps it still. */
  -webkit-appearance: none;
  appearance: none;
}

.menu2__search-input::-webkit-search-cancel-button { display: none; }

.menu2__search-input::placeholder {
  color: var(--muted-dim);
  opacity: 1;
}

.menu2__search-input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: transparent;
}

.menu2__search-clear {
  position: absolute;
  right: 0.4rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.menu2__search-clear[hidden] { display: none; }

.menu2__search-clear:hover { color: var(--ink); background: var(--panel); }

/* ---- Layout ---- */
.menu2__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0 clamp(1.5rem, 3vw, 3rem);
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.menu2__rail { display: none; }

.menu2__content {
  min-width: 0;
  max-width: 44rem;
  margin-inline: auto;
}

/* ---- Category sections ---- */
.menu2 .menu2__cat {
  /* The bar and nav are both pinned above; anchor jumps have to clear them.
     Scoped through .menu2 to outrank `main section[id]` further down. */
  scroll-margin-top: calc(var(--menu-stick) + var(--menu-bar-h));
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
}

.menu2__cat + .menu2__cat {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
}

.menu2__cat[hidden] { display: none; }

.menu2__cat-media {
  overflow: hidden;
  border-radius: 1.25rem;
  background: var(--panel);
}

.menu2__cat-media img {
  width: 100%;
  height: clamp(9rem, 22vw, 13rem);
  object-fit: cover;
  object-position: center 55%;
}

.menu2__cat-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1rem;
  margin: 1.1rem 0 1.35rem;
}

.menu2__cat-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: var(--font-h2);
  font-weight: var(--weight-regular);
  line-height: 1.1;
}

.menu2__cat-note {
  margin: 0;
  color: var(--muted-dim);
  font-size: var(--font-small);
}

/* ---- Items ---- */
.menu2__items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu2__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  column-gap: clamp(0.75rem, 3vw, 1.5rem);
  padding: 0.9rem 1rem;
  background: var(--panel-light);
  border: 1px solid var(--line);
  border-radius: 1rem;
  transition: border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}

.menu2__item:hover {
  background: var(--panel);
  border-color: var(--line-strong);
}

.menu2__item[hidden] { display: none; }

.menu2__item--deal {
  background: var(--panel);
  border-style: dashed;
  border-color: var(--line-strong);
}

.menu2__item-text { min-width: 0; }

.menu2__item-name {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--font-card-title);
  font-weight: var(--weight-medium);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.menu2__item-desc {
  margin: 0.3rem 0 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.5;
  text-wrap: pretty;
}

.menu2__item-price {
  margin: 0;
  color: var(--menu-price);
  font-size: 1rem;
  font-weight: var(--weight-bold);
  line-height: 1.4;
  white-space: nowrap;
}

/* Groups inside a category -- Red / White / Rose, Beer / Cider. */
.menu2__subhead {
  margin: 1.5rem 0 0.65rem;
  color: var(--muted-dim);
  font-family: var(--font-sans);
  font-size: var(--font-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.menu2__cat-head + .menu2__subhead {
  margin-top: 0;
}

.menu2__note {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1.1rem;
  color: var(--muted);
  background: var(--panel);
  border-radius: 1rem;
  font-size: var(--font-small);
  line-height: 1.55;
}

.menu2__note strong {
  display: block;
  color: var(--ink);
  font-weight: var(--weight-bold);
}

.menu2__note a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.menu2__empty {
  margin: 0 0 1rem;
  padding: 1.25rem;
  color: var(--muted);
  background: var(--panel);
  border-radius: 1rem;
  text-align: center;
}

.menu2__empty-reset {
  padding: 0;
  color: var(--gold-dark);
  background: none;
  border: 0;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.menu2__cta {
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
  padding: clamp(1.75rem, 4vw, 2.5rem) var(--gutter);
  background: var(--panel);
  border-radius: 1.5rem;
  text-align: center;
}

.menu2__cta-title {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: var(--font-h3);
  font-weight: var(--weight-regular);
}

.menu2__cta-copy {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.55;
}

/* ---- Category list: shared by the desktop rail and the mobile sheet ---- */
.menu2__nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.menu2__group {
  margin: 0.9rem 0 0.35rem 0.9rem;
  color: var(--gold-dark);
  font-size: var(--font-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.menu2__group:first-child { margin-top: 0; }

.menu2__navlink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  color: var(--muted);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: var(--weight-medium);
  line-height: 1.3;
  transition: color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}

@media (hover: hover) {
  .menu2__navlink:hover { color: var(--ink); background: var(--panel); }
}

.menu2__navlink.is-active {
  color: #fffde8;
  background: var(--ink);
}

.menu2__navcount {
  color: inherit;
  opacity: 0.65;
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
}

/* The floating picker and the sheet chrome only exist below desktop. */
.menu2__picker,
.menu2__sheet-head,
.menu2__scrim { display: none; }

/* ---- Tablet and below: a floating button opens the list as a sheet ---- */
@media (max-width: 1024px) {
  .menu2__picker {
    position: fixed;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    /* Under the nav (100) so the mobile drawer still covers it. */
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 3.25rem;
    max-width: calc(100vw - 2rem);
    padding: 0.7rem 1.2rem 0.7rem 1rem;
    color: #fffde8;
    background: var(--ink);
    border: 1px solid rgba(255, 253, 232, 0.25);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(15, 25, 18, 0.28), 0 2px 6px rgba(15, 25, 18, 0.18);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: var(--weight-bold);
    letter-spacing: 0.02em;
    white-space: nowrap;
    cursor: pointer;
    /* Visibility flips instantly on the way in (so focus can land) and only
       after the fade on the way out. */
    transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease), visibility 0s;
  }

  .menu2__picker:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  /* Step aside for the footer, an open sheet, or the on-screen keyboard. */
  .menu2__picker.is-hidden,
  .menu2__picker[aria-expanded="true"] {
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition-delay: 0s, 0s, var(--dur-fast);
  }

  .menu2__picker-icon {
    flex: none;
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: var(--gold);
    stroke-width: 2.2;
    stroke-linecap: round;
  }

  .menu2__scrim {
    position: fixed;
    inset: 0;
    z-index: 91;
    display: block;
    background: rgba(15, 25, 18, 0.45);
  }

  .menu2__scrim[hidden] { display: none; }

  .menu2__rail {
    position: fixed;
    inset: auto 0.5rem calc(0.5rem + env(safe-area-inset-bottom, 0px));
    z-index: 92;
    display: block;
    max-height: min(34rem, calc(100dvh - 7rem));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0 1rem 1.1rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    box-shadow: 0 -6px 40px rgba(15, 25, 18, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.5rem);
    transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease), visibility 0s linear var(--dur-fast);
  }

  .menu2__rail.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition-delay: 0s;
  }

  .menu2__sheet-head {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0 0.6rem 0.25rem;
    background: var(--bg);
  }

  .menu2__sheet-title {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 1.35rem;
  }

  .menu2__sheet-close {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    color: var(--ink);
    background: var(--panel);
    border: 0;
    border-radius: 999px;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
  }

  /* Two columns of categories under each group heading. */
  .menu2__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
  }

  .menu2__group {
    grid-column: 1 / -1;
    margin: 0.8rem 0 0.1rem 0.25rem;
  }

  .menu2__group:first-child { margin-top: 0.1rem; }

  .menu2__navlink {
    min-height: 3rem;
    background: var(--panel-light);
    border: 1px solid var(--line);
  }

  .menu2__navlink.is-active { border-color: var(--ink); }
}

/* ---- Desktop: sticky category rail beside the list ---- */
@media (min-width: 1025px) {
  .menu2__layout {
    grid-template-columns: minmax(11rem, 14rem) minmax(0, 1fr);
  }

  .menu2__rail {
    display: block;
    position: sticky;
    /* Below the search bar, which is sticky at --menu-stick. */
    top: calc(var(--menu-stick) + var(--menu-bar-h) + 0.5rem);
    align-self: start;
    max-height: calc(100vh - var(--menu-stick) - var(--menu-bar-h) - 2rem);
    overflow-y: auto;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
  }

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

  .menu2__content { margin-inline: 0; }
}

@media (max-width: 900px) {
  .menu2 {
    margin-inline: 0.35rem;
    border-radius: 1.4rem;
  }

  .menu2__item {
    padding: 0.85rem 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu2__item,
  .menu2__navlink,
  .menu2__picker,
  .menu2__rail {
    transition: none;
  }
}

/* =========================================================
   Private events
   ========================================================= */
.events-hero {
  /* Dark photo behind the copy: swap in the light gold this sheet already
     uses on dark surfaces, so .eyebrow and .btn--gold both stay legible. */
  --gold: #f2ca68;
  position: relative;
  min-height: min(760px, 86vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #223327;
  color: #fffde8;
}

.events-hero__image,
.events-hero__image::after {
  position: absolute;
  inset: 0;
}

.events-hero__image::after {
  content: "";
  background:
    linear-gradient(100deg, rgba(14, 21, 16, 0.88) 0%, rgba(14, 21, 16, 0.72) 32%, rgba(14, 21, 16, 0.3) 62%, rgba(14, 21, 16, 0.42) 100%),
    linear-gradient(to top, rgba(14, 21, 16, 0.6) 0%, rgba(14, 21, 16, 0) 45%);
}

.events-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.events-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(7rem, 16vw, 11rem) clamp(3.5rem, 8vw, 6.5rem);
}

.events-hero__content h1 {
  max-width: 10ch;
  margin-bottom: 0.35em;
  color: #fffde8;
  font-size: var(--font-display);
}

.events-hero__content > p {
  max-width: 35rem;
  color: rgba(255, 253, 232, 0.88);
  font-size: var(--font-lead);
}

.events-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

/* Same treatment the nav button uses: amber ground, dark ink. The local
   --gold swap above would otherwise leave cream on amber at 1.5:1. */
.events-hero__actions .btn--gold {
  border-color: #d8a844;
  background: #d8a844;
  color: #223327;
}

.events-hero__actions .btn--gold:hover,
.events-hero__actions .btn--gold:focus-visible {
  border-color: #e8bf5e;
  background: #e8bf5e;
  color: #223327;
}

.text-link--light {
  color: #fffde8;
}

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

.events-intro__grid,
.events-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.events-intro h2,
.events-contact h2 {
  max-width: 15ch;
}

.events-intro__copy,
.events-contact__grid > div:first-child {
  max-width: 42rem;
}

.events-intro__copy p:last-child,
.events-contact__grid p:last-child {
  margin-bottom: 0;
}

.events-types {
  list-style: none;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.events-types__item {
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.25rem, 2.5vw, 2rem);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.events-types__item:nth-child(3n) {
  border-right: 0;
}

.events-types__item h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  line-height: 1.15;
}

.events-types__item p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.6;
  max-width: 32ch;
}

.events-types__cta {
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

@media (max-width: 900px) {
  .events-types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .events-types__item:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .events-types__item:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .events-types {
    grid-template-columns: 1fr;
  }
  .events-types__item,
  .events-types__item:nth-child(3n) {
    border-right: 0;
  }
}

.event-space-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.event-space-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel-light);
}

.event-space-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.event-space-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-space-card:first-child .event-space-card__image img {
  object-position: center 42%;
}

.event-space-card__body {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.event-space-card__body .eyebrow {
  margin-bottom: 0.45rem;
}

.event-space-card__body h3 {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.25rem + 0.8vw, 2rem);
  font-weight: 400;
}

.event-space-card__body p {
  max-width: 42ch;
  margin-bottom: 1.4rem;
}

.event-capacity {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.event-capacity div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.event-capacity dt {
  color: var(--muted-dim);
  font-size: var(--font-label);
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-capacity dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 1.1;
}

.events-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  min-height: 620px;
  background: #1e271e;
}

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

.events-gallery__feature {
  min-height: 620px;
}

.events-gallery__feature img {
  object-position: center;
}

.events-gallery__stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.35rem;
  min-height: 620px;
}

.events-gallery__stack img:first-child {
  object-position: center 42%;
}

.events-offer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-block: 1px solid var(--line);
}

.events-offer__grid article {
  min-height: 170px;
  padding: 1.5rem 1.25rem;
  border-inline: 1px solid var(--line);
}

.events-offer__grid h3 {
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-size: 1.05rem;
}

.events-offer__grid p {
  margin-bottom: 0;
  font-size: var(--font-small);
}

.events-faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.events-faq .section-head {
  position: sticky;
  top: 7rem;
  margin-bottom: 0;
}

.events-contact__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.events-contact__actions p {
  margin-top: 0.75rem;
  color: var(--muted-dim);
}

@media (max-width: 900px) {
  .events-intro__grid,
  .events-contact__grid,
  .events-faq__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .events-faq .section-head {
    position: static;
  }

  .events-offer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .events-offer__grid article:nth-child(odd) {
    border-left: 0;
  }

  .events-offer__grid article:nth-child(even) {
    border-right: 0;
  }
}

@media (max-width: 700px) {
  .events-hero {
    min-height: 680px;
  }

  .events-hero__image::after {
    background: rgba(20, 28, 22, 0.48);
  }

  .events-hero__image img {
    object-position: 58% center;
  }

  .events-hero__actions,
  .events-hero__actions .btn {
    width: 100%;
  }

  .events-hero__actions .text-link {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .event-space-grid,
  .events-gallery {
    grid-template-columns: 1fr;
  }

  .events-gallery,
  .events-gallery__feature,
  .events-gallery__stack {
    min-height: 0;
  }

  .events-gallery__feature {
    aspect-ratio: 4 / 3;
  }

  .events-gallery__stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 220px;
  }

  .events-offer__grid {
    grid-template-columns: 1fr;
  }

  .events-offer__grid article,
  .events-offer__grid article:nth-child(odd),
  .events-offer__grid article:nth-child(even) {
    min-height: 0;
    border-inline: 0;
    border-bottom: 1px solid var(--line);
  }

  .events-offer__grid article:last-child {
    border-bottom: 0;
  }
}

.about-story {
  overflow: hidden;
  padding-block: clamp(3.75rem, 7vw, 6.5rem);
}

.about-story--intro {
  background: var(--bg);
}

.about-story--place {
  background: var(--panel-light);
  border-block: 1px solid var(--line);
}

.about-story .split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}

.about-story .split__body h2 {
  max-width: 18ch;
}

.about-story .split__body {
  max-width: 39rem;
}

.about-story .split__media > img:not(.split__img-a):not(.split__img-b) {
  width: 100%;
  height: clamp(24rem, 42vw, 34rem);
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 18px;
}

.about-story--intro .split__media img {
  object-position: 50% 38%;
}

.about-story--place .split__media img {
  object-position: 50% 58%;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.about-pillar {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--panel-light);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.about-pillar h2 {
  font-size: var(--font-card-title);
  line-height: 1.2;
}

.about-pillar p:last-child {
  margin-bottom: 0;
}

.about-location {
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.about-location .section-copy {
  margin: 0 auto 1.75rem;
}

.about-location__map {
  margin-top: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  overflow: hidden;
  line-height: 0;
}

.about-location__map iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 420px);
  border: 0;
}

@media (max-width: 900px) {
  .about-story {
    padding-block: clamp(2.75rem, 8vw, 3.75rem);
  }

  .about-story .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-story .split__body {
    order: 1;
  }

  .about-story .split__media {
    order: 2;
  }

  .about-story .split__media > img:not(.split__img-a):not(.split__img-b) {
    height: clamp(19rem, 82vw, 28rem);
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }
}

main section[id] {
  scroll-margin-top: calc(6rem + var(--announce-h));
}

.menu-category {
  max-width: 42rem;
  margin-inline: auto;
}

@media (max-width: 900px) {
  .menu-page-chips ~ .section--tight {
    padding-block: clamp(2rem, 8vw, 3rem);
  }
}

/* =========================================================
   Menu category filter chips
   ========================================================= */
.menu-page-chips {
  position: sticky;
  top: 4.875rem;
  z-index: 90;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.85rem var(--gutter);
  margin-bottom: 1rem;
  background: rgba(246, 241, 226, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 900px) {
  .menu-page-chips {
    top: 4.3125rem;
    justify-content: flex-start;
    scroll-padding-inline: var(--gutter);
  }
}

.menu-page-chips::-webkit-scrollbar {
  display: none;
}

.menu-category-select-wrap {
  display: none;
}

.menu-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  font-size: var(--font-label);
  font-weight: var(--weight-medium);
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.menu-chip:hover {
  border-color: var(--gold);
  background: var(--panel-light);
  color: var(--ink);
}

.menu-chip:focus-visible {
  border-color: var(--gold);
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.menu-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: inset 0 -3px 0 var(--gold);
  color: #fffde8;
  font-weight: var(--weight-bold);
}

.menu-chip.is-active:hover {
  background: var(--ink);
  border-color: var(--gold);
  color: #fffde8;
}

/* Chips swap to a native select only on phones. Folding this into the
   900px tier would have put tablets on a dropdown when the scrolling
   chip strip still fits comfortably at that width. */
@media (max-width: 700px) {
  .menu-page-chips {
    overflow: visible;
  }

  .menu-chip {
    display: none;
  }

  .menu-category-select-wrap {
    width: min(100%, 32rem);
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.85rem;
  }

  .menu-category-select-wrap label {
    color: var(--gold);
    font-size: var(--font-label);
    font-weight: var(--weight-bold);
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
    white-space: nowrap;
  }

  .menu-category-select-wrap select {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 0.65rem 2.5rem 0.65rem 0.9rem;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    background-color: var(--panel-light);
    color: var(--ink);
    font: var(--weight-medium) 1rem/1.25 var(--font-sans);
  }

  .menu-category-select-wrap select:focus-visible {
    border-color: var(--gold);
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }
}

@media (max-width: 370px) {
  .menu-category-select-wrap {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .menu-category-select-wrap label {
    white-space: normal;
  }
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.gallery-grid__bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.gallery-grid__bar .eyebrow {
  margin: 0;
}

.gallery-grid__hint {
  color: var(--muted-dim);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: right;
}

.gallery-grid__item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: initial;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
}

.gallery-grid__item--wide {
  grid-column: span 2;
  aspect-ratio: 8 / 5;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-base) var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .gallery-grid__item:hover img {
    transform: scale(1.04);
  }
}

.gallery-grid__item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.gallery-grid__item:focus-visible img {
  transform: scale(1.025);
}

@media (min-width: 701px) and (max-width: 1180px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .gallery-grid { gap: 0.65rem; }
  .gallery-grid__item { border-radius: 9px; }
  .gallery-grid__item--wide {
    grid-column: 1 / -1;
    aspect-ratio: 8 / 5;
  }
}

.lightbox {
  --ink: #fffde8;
  --gold: #f2ca68;
  --line-strong: rgba(255, 253, 232, 0.42);
  position: fixed;
  inset: 0;
  background: rgba(1, 2, 2, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 2rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: min(85vh, calc(100dvh - 8rem));
  object-fit: contain;
}

.lightbox__figure {
  display: grid;
  gap: 0.85rem;
  max-width: 90vw;
  margin: 0;
}

.lightbox__figure figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 253, 232, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lightbox__figure figcaption strong {
  max-width: 70ch;
  color: #fffde8;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-align: right;
  text-transform: none;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 1.2rem;
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  width: 46px;
  height: 46px;
  cursor: pointer;
  font-size: 1.4rem;
}

.lightbox__arrow--prev { left: 1.5rem; }
.lightbox__arrow--next { right: 1.5rem; }

.lightbox__close:hover,
.lightbox__close:focus-visible,
.lightbox__arrow:hover,
.lightbox__arrow:focus-visible {
  color: #223327;
  border-color: var(--gold);
  background: var(--gold);
  outline: none;
}

@media (max-width: 700px) {
  .gallery-grid__bar {
    display: grid;
    gap: 0.3rem;
  }

  .gallery-grid__hint {
    text-align: left;
  }

  .lightbox { padding: 4.5rem 1rem 5.5rem; }
  .lightbox img { max-width: 100%; max-height: 72vh; }
  .lightbox__figure { max-width: 100%; }
  .lightbox__figure figcaption { align-items: flex-start; flex-direction: column; gap: 0.2rem; }
  .lightbox__figure figcaption strong { text-align: left; }
  .lightbox__close { top: 1rem; right: 1rem; width: 44px; height: 44px; }
  .lightbox__arrow { top: auto; bottom: 1rem; transform: none; }
  .lightbox__arrow--prev { left: 1rem; }
  .lightbox__arrow--next { right: 1rem; }
}

/* =========================================================
   Booking info strip (reservation page)
   ========================================================= */
.booking-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  border-top: 1px solid var(--line);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.booking-info-card__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.booking-info-card__title img {
  width: 26px;
  height: 26px;
}

.booking-info-card__title h4 {
  margin: 0;
  font-size: var(--font-card-title);
}

.booking-info-card p,
.booking-info-card div {
  font-size: var(--font-small);
  margin: 0 0 0.4em;
}

.booking-info-card a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .booking-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .booking-info-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Page-specific refinements
   ========================================================= */
.page-reservation main > .section--tight .split__body {
  padding: clamp(1.35rem, 4vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.legal-copy {
  max-width: 760px;
  padding: clamp(1.35rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.legal-copy a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 700px) {
  .page-reservation main > .section--tight { padding-top: 1rem; }
  .page-reservation .split__media img { min-height: 280px !important; }
  .legal-copy { width: calc(100% - (2 * var(--gutter))); padding-inline: 1.25rem; }
}

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-list--narrow {
  max-width: 700px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding-block: 1.1rem;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: var(--ink);
  font-size: 1rem;
  font-weight: var(--weight-medium);
  line-height: 1.45;
  list-style: none;
}

.faq-item summary:hover { color: var(--gold); }

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

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0.9rem 0 0;
  font-size: var(--font-small);
  line-height: 1.55;
  max-width: 60ch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(1.35rem, 3vw, 1.6rem);
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info__item > div {
  min-width: 0;
}

.contact-info__item img {
  width: 28px;
  height: 28px;
  margin-top: 0.2rem;
  filter: invert(1);
}

.contact-info__item h3 {
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 0.3em;
  font-family: var(--font-sans);
  font-weight: var(--weight-medium);
  line-height: 1.35;
}

.menu-category-title {
  font-size: var(--font-h3);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}

.menu-category__body > h3 {
  font-family: var(--font-serif);
  font-size: var(--font-card-title);
  font-weight: 400;
  line-height: 1.2;
}

.contact-info__item p {
  margin: 0;
  font-size: var(--font-small);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-info__item a {
  overflow-wrap: anywhere;
}

.form-feedback--error {
  color: #b8452e;
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal-init {
  opacity: 1;
  transform: none;
  transition: none;
}

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

@media (prefers-reduced-motion: no-preference) {
  .page-home .story-band.reveal-init,
  .page-home .licensed-band.reveal-init,
  .page-home .home-features.reveal-init,
  .page-home .home-cats.reveal-init,
  .page-home .home-follow.reveal-init {
    opacity: 1;
    transform: translate3d(0, 28px, 0);
    transition: transform var(--dur-slow) var(--ease);
  }

  .page-home .story-band:not(.story-band--reverse).reveal-init {
    transform: translate3d(-18px, 24px, 0);
  }

  .page-home .story-band--reverse.reveal-init,
  .page-home .licensed-band.reveal-init {
    transform: translate3d(18px, 24px, 0);
  }

  .page-home .story-band.reveal-init.is-visible,
  .page-home .licensed-band.reveal-init.is-visible,
  .page-home .home-features.reveal-init.is-visible,
  .page-home .home-cats.reveal-init.is-visible,
  .page-home .home-follow.reveal-init.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  /* main.js already adds .reveal-init and a 0-240ms stagger delay to sections
     on every page except the homepage, but only .page-home had matching
     motion, so on interior pages the class did nothing. :where() keeps this
     at .reveal-init specificity so it beats the inert base rule by order.
     The class is applied by script, so with JS off nothing is ever hidden. */
  :where(body:not(.page-home)) .reveal-init {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
  }

  :where(body:not(.page-home)) .reveal-init.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* =========================================================
   Misc layout helpers
   ========================================================= */
.text-center { text-align: center; }

/* =========================================================
   Legal / policy content (privacy policy, terms)
   ========================================================= */
.legal {
  max-width: var(--measure);
  margin-inline: auto;
}

.legal__updated {
  color: var(--muted);
  font-size: var(--font-label);
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: var(--font-h3);
  margin-top: 2.5rem;
}

.legal h2:first-of-type {
  margin-top: 0;
}

.legal h3 {
  margin-top: 1.5rem;
}

.legal ul {
  list-style: disc;
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.legal li {
  margin-bottom: 0.4em;
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

/* =========================================================
   Spacing rhythm refinements
   ========================================================= */
.page-about,
.page-gallery,
.page-privacy,
.page-private-events {
  background: var(--bg);
}

.page-about main,
.page-gallery main,
.page-privacy main,
.page-private-events main {
  overflow: hidden;
}

.page-about .page-hero,
.page-gallery .page-hero,
.page-privacy .page-hero {
  border-bottom: 1px solid var(--line);
}

.page-about .page-hero p,
.page-gallery .page-hero p,
.page-privacy .page-hero p {
  max-width: 52ch;
}

.page-gallery .page-hero p + p {
  margin-top: 0.85rem;
}

.page-gallery .page-hero .text-link {
  margin-top: 0.6rem;
}

.page-privacy .legal {
  max-width: 52rem;
  padding-block: clamp(1rem, 2vw, 2rem);
}

.page-privacy .legal h2 {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.page-privacy .legal h2:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.page-privacy .legal__updated {
  margin-bottom: 2.25rem;
  color: var(--gold);
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-private-events .section,
.page-about .section,
.page-gallery .section--tight,
.page-privacy .section {
  position: relative;
}

.page-private-events .section-head h2,
.page-about .section-head h2 {
  max-width: 18ch;
}

.page-private-events .events-contact__actions,
.page-about .about-location,
.page-gallery .gallery-grid,
.page-privacy .legal {
  min-width: 0;
}

.menu-list .menu-row__top {
  overflow-wrap: anywhere;
}

.menu-list .menu-row__info {
  max-width: 48ch;
}

@media (min-width: 901px) {
  .page-about .about-story .split__body,
  .page-private-events .events-intro__copy,
  .page-private-events .events-contact__grid > div:first-child {
    padding-block: 1rem;
  }
}
.section > .container,
.section--tight > .container {
  width: 100%;
}

.section-head h2,
.section-head h3,
.page-hero h1,
.events-hero__content h1 {
  letter-spacing: -0.018em;
}

.section-copy,
.split__body,
.events-intro__copy,
.events-contact__grid > div:first-child,
.about-story .split__body {
  max-width: 42rem;
}

.split__body > p:last-of-type,
.events-intro__copy > p:last-of-type,
.about-story .split__body > p:last-of-type {
  margin-bottom: 0;
}

.split__body .btn,
.events-contact__actions .btn {
  margin-top: 0.45rem;
}

.about-pillars,
.event-space-grid,
.events-offer__grid,
.gallery-grid {
  margin-top: 0.25rem;
}

.event-space-card__body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.events-offer__grid article {
  padding: 1.75rem 1.5rem;
}

.footer__top {
  padding-top: 0.5rem;
}

@media (max-width: 900px) {
  .section,
  .section--tight {
    padding-block: var(--section-y-sm);
  }

  .split,
  .about-story .split,
  .events-intro__grid,
  .events-contact__grid,
  .events-faq__grid {
    gap: 2.5rem;
  }

  .about-story .split__body,
  .events-intro__copy,
  .events-contact__grid > div:first-child {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .container {
    padding-inline: 1.25rem;
  }

  .section-head,
  .section-head--center {
    margin-bottom: 1.75rem;
  }

  .page-hero {
    padding-top: 7rem;
    padding-bottom: 2.75rem;
  }

  .page-hero h1 {
    margin-bottom: 0.45em;
  }

  .hero__actions,
  .events-hero__actions {
    gap: 0.7rem;
  }

  .hero__actions .btn,
  .events-hero__actions .btn {
    min-height: 3.35rem;
  }

  .event-space-card__body {
    padding: 1.35rem 1.25rem 1.5rem;
  }

  .about-pillars {
    gap: 0.85rem;
  }

  .about-pillar {
    padding: 1.35rem 1.25rem;
  }

  .footer__top {
    gap: 2.5rem;
  }
}

/* =========================================================
   Inner-page section alignment
   ========================================================= */
.page-about .page-hero .container,
.page-gallery .page-hero .container,
.page-private-events .events-hero__content {
  display: flex;
  flex-direction: column;
}

.page-about .page-hero .container,
.page-gallery .page-hero .container {
  align-items: center;
  gap: 0.85rem;
}

.page-about .page-hero p,
.page-gallery .page-hero p {
  margin-bottom: 0;
}

.page-about .page-hero .eyebrow,
.page-gallery .page-hero .eyebrow {
  margin-bottom: 0;
}

.page-gallery .page-hero .text-link {
  margin-top: 0.15rem;
}

.page-about .about-pillars,
.page-private-events .event-space-grid {
  align-items: stretch;
}

.page-about .about-pillar,
.page-private-events .event-space-card {
  height: 100%;
}

.page-about .about-pillar {
  display: flex;
  flex-direction: column;
}

.page-about .about-pillar p:last-child {
  margin-top: auto;
}

.page-gallery .gallery-grid {
  gap: clamp(0.65rem, 1.5vw, 1rem);
}

.page-gallery .gallery-quote {
  background: var(--ink);
  color: #fffde8;
}

.page-gallery .gallery-quote__inner {
  max-width: 98rem;
  padding-block: clamp(4.5rem, 10vw, 9rem);
}

.page-gallery .gallery-quote .eyebrow {
  color: #f2ca68;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.page-gallery .gallery-quote blockquote {
  max-width: 18ch;
  margin: 0;
  color: #fffde8;
  font-family: var(--font-serif);
  font-size: clamp(2.7rem, 6.2vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.page-gallery .gallery-quote blockquote em {
  color: rgba(255, 253, 232, 0.44);
  font-style: normal;
}

.page-gallery .gallery-quote p {
  max-width: 34ch;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0 auto;
  color: rgba(255, 253, 232, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.55;
}

.page-gallery .gallery-categories {
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: #fffaf0;
}

.page-gallery .gallery-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(32, 54, 38, 0.16);
  border: 1px solid rgba(32, 54, 38, 0.16);
}

.page-gallery .gallery-categories article {
  background: #fffdf7;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.page-gallery .gallery-categories h2 {
  color: var(--color-green-dark);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.page-gallery .gallery-categories p {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.page-gallery .gallery-experience {
  margin: 0.4rem 0.45rem 0;
  border: 1px solid var(--line);
  border-radius: 1.9rem;
  background: var(--panel);
  overflow: hidden;
}

.page-gallery .gallery-experience__inner {
  display: grid;
  gap: clamp(3rem, 5vw, 5rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.page-gallery .gallery-experience h2 {
  max-width: 17ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(4rem, 8.2vw, 8.5rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-align: center;
}

.page-gallery .gallery-experience h2 em {
  color: var(--muted);
  font-style: normal;
}

.page-gallery .gallery-experience__details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  align-items: end;
  gap: 2rem clamp(2rem, 8vw, 10rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
}

.page-gallery .gallery-experience__signature {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(2.7rem, 5.4vw, 5.7rem);
  font-style: italic;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.page-gallery .gallery-experience__copy > p {
  max-width: 24ch;
  margin: 0 0 1.8rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.45;
}

.page-gallery .gallery-experience__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.35rem;
}

.page-gallery .gallery-experience__actions .text-link {
  color: var(--gold);
}

.page-private-events .events-gallery {
  height: clamp(32rem, 55vw, 42rem);
  min-height: 0;
  grid-template-rows: minmax(0, 1fr);
}

.page-private-events .events-gallery__feature,
.page-private-events .events-gallery__stack {
  min-height: 0;
  height: 100%;
}

.page-private-events .events-gallery__stack {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.page-private-events .events-offer__grid {
  margin-top: 0;
}

@media (max-width: 700px) {
  .page-private-events .events-gallery {
    height: auto;
  }

  .page-private-events .events-gallery__feature,
  .page-private-events .events-gallery__stack {
    height: auto;
  }
}

@media (max-width: 700px) {
  .page-about .page-hero .container,
  .page-gallery .page-hero .container {
    gap: 0.7rem;
  }

  .page-about .page-hero,
  .page-gallery .page-hero {
    padding-bottom: 2.5rem;
  }

  .page-gallery .gallery-grid {
    gap: 0.65rem;
  }

  .page-gallery .gallery-quote__inner {
    padding-block: 4rem;
  }

  .page-gallery .gallery-quote blockquote {
    max-width: 11ch;
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

  .page-gallery .gallery-quote p {
    margin-left: 0;
  }

  .page-gallery .gallery-categories__grid {
    grid-template-columns: 1fr;
  }

  .page-gallery .gallery-experience {
    margin-inline: 0.35rem;
    border-radius: 1.4rem;
  }

  .page-gallery .gallery-experience__inner {
    gap: 2.25rem;
    padding-block: 4rem;
  }

  .page-gallery .gallery-experience h2 {
    max-width: 10ch;
    font-size: clamp(3.5rem, 14vw, 5.6rem);
    text-align: left;
  }

  .page-gallery .gallery-experience__details {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .page-gallery .gallery-experience__copy > p {
    margin-bottom: 1.5rem;
  }
}

/* =========================================================
   Framed page system — shared with the homepage
   ========================================================= */
.page-about,
.page-gallery,
.page-private-events,
.page-menu {
  background: var(--ink);
}

.page-about .page-hero,
.page-gallery .page-hero,
.page-private-events .events-hero,
.page-about main > section,
.page-private-events main > section,
.page-private-events .events-gallery,
.page-gallery main > section {
  margin-inline: 0.45rem;
  border: 1px solid #fffde8;
  border-radius: 1.9rem;
}

.page-about .page-hero,
.page-gallery .page-hero {
  background: var(--bg);
}

.page-about main > section,
.page-private-events main > section,
.page-gallery main > section {
  overflow: hidden;
}

.page-about main > section + section,
.page-private-events main > section + section,
.page-gallery main > section + section {
  margin-top: 0.4rem;
}

.page-about .about-story,
.page-private-events .events-gallery {
  border-color: #fffde8;
}

.page-private-events .events-gallery {
  margin-top: 0.4rem;
}

.page-private-events .events-intro,
.page-private-events .events-offer,
.page-private-events .events-contact {
  background: var(--panel);
}

.page-private-events .events-spaces,
.page-private-events .events-faq {
  background: var(--bg);
}

.page-private-events .events-hero {
  margin-top: 0.45rem;
  overflow: hidden;
}

.page-private-events .events-hero__content {
  padding-inline: var(--gutter);
}

.page-about .about-location {
  background: var(--bg);
}

.page-gallery main > section {
  padding-block: var(--section-y-sm);
  background: var(--bg);
}

.page-gallery main > section:first-child {
  margin-top: 0.45rem;
}

.page-about .page-hero,
.page-gallery .page-hero {
  margin-top: 0.45rem;
}

.page-about .footer,
.page-gallery .footer,
.page-private-events .footer,
.page-menu .footer {
  margin: 0.4rem 0.45rem 0;
  border: 1px solid #fffde8;
  border-bottom: 0;
  border-radius: 1.9rem 1.9rem 0 0;
  overflow: hidden;
}

@media (max-width: 900px) {
  .page-about .page-hero,
  .page-gallery .page-hero,
  .page-private-events .events-hero,
  .page-about main > section,
  .page-private-events main > section,
  .page-private-events .events-gallery,
  .page-gallery main > section {
    margin-inline: 0.35rem;
    border-radius: 1.4rem;
  }

  .page-private-events .events-hero {
    margin-top: 0.35rem;
  }

  .page-about .footer,
  .page-gallery .footer,
  .page-private-events .footer,
  .page-menu .footer {
    margin-inline: 0.35rem;
    border-radius: 1.4rem 1.4rem 0 0;
  }
}

/* =========================================================
   About page — editorial story treatment
   ========================================================= */
.page-about .page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6.5rem, 10vw, 8rem) clamp(1.25rem, 3vw, 2rem);
  text-align: left;
}

.page-about .page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(15rem, 0.7fr);
  align-items: end;
  gap: 1rem clamp(2rem, 7vw, 8rem);
  max-width: 90rem;
}

.page-about .page-hero .eyebrow {
  grid-column: 1 / -1;
}

.page-about .page-hero h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.35rem, 8vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.page-about .page-hero p {
  max-width: 32ch;
  margin: 0 0 0.4rem;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.55;
}

.page-about .page-hero::after {
  content: "";
  display: block;
  height: clamp(15rem, 31vw, 30rem);
  margin: clamp(2rem, 4vw, 3.75rem) var(--gutter) 0;
  border-radius: 1.35rem;
  background: url("../images/optimized/atrio-storefront.webp") center 44% / cover no-repeat;
  box-shadow: 0 1.5rem 3rem rgba(34, 51, 39, 0.16);
}

.page-about .section-head--center {
  max-width: 44rem;
  margin-inline: 0;
  text-align: left;
}

.page-about .about-story .split__media > img {
  transition: transform var(--dur-image) var(--ease), filter var(--dur-image) var(--ease);
}

@media (min-width: 901px) and (hover: hover) and (pointer: fine) {
  .page-about .about-story .split__media:hover > img {
    transform: scale(1.035);
    filter: saturate(1.06);
  }
}

@media (max-width: 700px) {
  .page-about .page-hero {
    padding-top: 6.5rem;
  }

  .page-about .page-hero .container {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .page-about .page-hero h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .page-about .page-hero p {
    max-width: 38ch;
    margin-top: 0.35rem;
  }

.page-about .page-hero::after {
    height: clamp(13rem, 65vw, 21rem);
    margin-inline: 0;
    border-radius: 1rem;
  }
}

/* Final About overrides */
.page-about .about-hero::after { display: none !important; }
.page-about .about-hero__grid { align-items: center; }
.page-about .about-hero__copy { padding-block: 1rem; }
.page-about .about-hero h1 { font-size: clamp(3.6rem, 7vw, 6.8rem); }
.page-about .about-hero__media { height: clamp(24rem, 42vw, 34rem); border-radius: 1rem; }
.page-about .about-intro,
.page-about .about-offer,
.page-about .about-location { padding-block: clamp(4.5rem, 8vw, 7rem); }
.page-about .about-intro__grid { align-items: center; }
.page-about .about-intro .section-head h2,
.page-about .about-offer .section-head h2 { font-size: clamp(3rem, 5.4vw, 5.5rem); line-height: .98; }
.page-about .about-intro__lead { font-size: clamp(1.25rem, 1.8vw, 1.6rem); line-height: 1.45; }
.page-about .about-intro__copy > p:last-child { max-width: 42ch; font-size: 1.05rem; line-height: 1.7; }
.page-about .about-facts { margin-top: clamp(3rem, 6vw, 5rem); }
.page-about .about-facts strong { font-size: clamp(1.6rem, 2.9vw, 2.9rem); }
.page-about .about-offer__grid { margin-top: clamp(2.5rem, 5vw, 4rem); }
.page-about .about-offer__item { min-height: 15rem; }
.page-about .about-offer__item h3 { font-size: clamp(1.5rem, 2.4vw, 2.15rem); }
.page-about .about-offer__item p { max-width: 28ch; font-size: 1.02rem; line-height: 1.6; }
.page-about .about-story { min-height: min(680px, calc(100dvh - 2rem)); }
.page-about .about-story__media { min-height: 0; }
.page-about .about-story__media img { height: 100%; object-fit: cover; }
.page-about .about-story__copy { padding: clamp(3rem, 6vw, 6.5rem); }
.page-about .about-story__copy h2 { font-size: clamp(3rem, 5.2vw, 5.65rem); line-height: .98; }
.page-about .about-story__copy p { max-width: 38ch; font-size: 1.05rem; line-height: 1.7; }
.page-about .about-location__inner h2 { font-size: clamp(3rem, 5vw, 5.2rem); }
@media (max-width: 900px) {
  .page-about .about-hero__media { height: clamp(20rem, 75vw, 28rem); }
  .page-about .about-story { min-height: 0; }
  .page-about .about-story__media { min-height: 20rem; }
  .page-about .about-story__copy { padding: 3rem 1.35rem; }
}

/* Responsive finishing: keep the opening content clear of the fixed header,
   and scale the editorial type to the space available within each frame. */
.drinks-hero,
.page-about .about-hero {
  padding-top: calc(var(--announce-h) + clamp(6.5rem, 9vw, 8rem));
}

.page-gallery .gallery-quote {
  padding-top: calc(var(--announce-h) + 6rem);
}

.page-gallery .gallery-quote__inner {
  padding-block: clamp(2rem, 5vw, 4.5rem);
}

.page-gallery .gallery-quote blockquote em {
  color: #c6c8b5;
}

.drinks-hero__inner > *,
.page-about .about-hero__grid > *,
.about-facts > div,
.events-contact__grid > *,
.booking-field,
.footer__top > * {
  min-width: 0;
}

.footer a,
.booking-field__label {
  overflow-wrap: anywhere;
}

.page-home .licensed-band__copy h2 {
  font-size: clamp(2.4rem, 4.3vw, 4.8rem);
  text-wrap: balance;
}

.about-hero__actions,
.drinks-hero__actions {
  gap: 1rem 1.5rem;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .page-private-events .events-offer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav__menu {
    min-height: 0;
  }

  .page-about .about-offer__item {
    min-height: 0;
  }

  .page-about .about-offer__item h3 {
    margin-top: 1.5rem;
  }
}

@media (max-width: 700px) {
  .drinks-hero,
  .page-about .about-hero {
    padding-top: calc(var(--announce-h) + 6rem);
  }

  .drinks-hero__media {
    order: 0;
    aspect-ratio: 4 / 3;
    max-height: 24rem;
  }

  .drinks-hero__media img {
    object-position: center 65%;
  }

  .drinks-hero h1,
  .page-about .about-hero h1 {
    max-width: 14ch;
    font-size: clamp(2.65rem, 11vw, 4.5rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .drinks-hero p {
    max-width: 42ch;
  }

  .page-about .about-hero__media {
    height: clamp(17rem, 70vw, 25rem);
  }

  .page-about .about-intro,
  .page-about .about-offer,
  .page-about .about-location,
  .page-private-events .events-intro,
  .page-private-events .events-spaces,
  .page-private-events .events-offer,
  .page-private-events .events-faq,
  .page-private-events .events-contact {
    padding-block: clamp(2.75rem, 9vw, 4rem);
  }

  .page-about .about-intro .section-head h2,
  .page-about .about-offer .section-head h2,
  .page-about .about-story__copy h2,
  .page-about .about-location__inner h2,
  .page-private-events .events-intro h2,
  .page-private-events .events-contact h2,
  .page-private-events .events-spaces .section-head h2,
  .page-private-events .events-offer .section-head h2 {
    font-size: clamp(2.15rem, 8vw, 3.5rem);
    line-height: 1.06;
    text-wrap: balance;
  }

  .page-gallery .gallery-quote blockquote {
    max-width: 18ch;
    font-size: clamp(2.2rem, 9vw, 3.75rem);
    line-height: 1.06;
  }

  .page-gallery .gallery-quote p {
    max-width: 42ch;
    margin-top: 1.5rem;
  }

  .page-gallery .gallery-experience h2 {
    max-width: 14ch;
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .about-hero__actions .text-link {
    min-height: 44px;
    margin-top: 0;
  }

  .lightbox img {
    max-height: calc(100dvh - 12rem);
  }

  .lightbox__arrow {
    bottom: max(1rem, env(safe-area-inset-bottom));
  }
}
