@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400&family=Instrument+Serif:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Light theme defaults — restore by removing data-theme="dark" from <html> */
  --black: #111;
  --white: #fff;
  --muted: #5c5c5c;
  --line: #111;
  --bg-soft: #f8f8f8;
  --hairline: #eee;
  --header-border: #e8e8e8;
  --dock-rule: #ddd;
  --hover-soft: #efefef;
  --primary-hover: #333;
  /* Brand brass — pulled from the isometric block mark */
  --accent: #c4a06a;
  --accent-hover: #d4b57e;
  --accent-ink: #0b0b0b;
  --accent-soft: rgba(196, 160, 106, 0.18);
  --dock-h: 68px;
  --header-h: 72px;
  --max: 1120px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  /* Type pairing — display serif + editorial serif + clean sans (Outfit, same family language as Industry) */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;
  --micro-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --micro-duration: 0.22s;
  --menu-chips-h: 52px;
}

/* Dark theme — true black canvas (no gray section banding) */
html[data-theme="dark"] {
  --black: #f2f2f2;
  --white: #000;
  --muted: #9a9a9a;
  --line: #f2f2f2;
  --bg-soft: #111;
  --hairline: #1a1a1a;
  --header-border: #1a1a1a;
  --dock-rule: #1a1a1a;
  --hover-soft: #141414;
  --primary-hover: #d4b57e;
  --accent: #c4a06a;
  --accent-hover: #d4b57e;
  --accent-ink: #0b0b0b;
  --accent-soft: rgba(196, 160, 106, 0.22);
  --surface-black: #000;
}

html[data-theme="dark"] .site-logo:not(.site-logo--mark) {
  /* Prefer pre-rendered white asset — CSS invert softens edges on desktop */
  filter: none;
}

html[data-theme="dark"] .site-footer {
  background: #000;
  color: #f2f2f2;
}

html[data-theme="dark"] .site-footer a {
  color: #f2f2f2;
}

html[data-theme="dark"] .footer-logo {
  filter: none;
}

html[data-theme="dark"] .action-dock__btn--primary:hover {
  background: var(--accent-hover);
  color: var(--accent-ink);
}

html[data-theme="dark"] .moments-section {
  background: #000;
  border-top-color: #000;
  border-bottom-color: #000;
}

html[data-theme="dark"] .site-header {
  background: #000;
}

html[data-theme="dark"] .moments__avatar--logo {
  background: #fff;
  filter: none;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
  background: var(--white);
  color: var(--black);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--dock-h) + var(--safe-bottom));
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--header-border);
  min-height: var(--header-h);
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-header__end {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.logo-link {
  text-decoration: none;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
  min-width: 0;
}

.site-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(180px, 48vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 1;
  min-width: 0;
  /* Keep pixel edges crisp when downscaling */
  image-rendering: auto;
}

/* Circular isometric block mark — used on interior/sub pages */
.site-logo--mark {
  height: 72px;
  width: 72px;
  max-width: 72px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  background: transparent;
  position: relative;
  animation: brandMarkIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.logo-link:has(.site-logo--mark) {
  position: relative;
}

.logo-link:has(.site-logo--mark)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  margin: -39px 0 0 -39px;
  border: 1px solid rgba(196, 160, 106, 0.7);
  border-radius: 2px;
  pointer-events: none;
  animation: brandRingPulse 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes brandMarkIn {
  from {
    opacity: 0;
    transform: scale(0.84);
    filter: brightness(0.65);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: none;
  }
}

@keyframes brandRingPulse {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  35% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: scale(1.38);
  }
}

.site-award {
  display: block;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
}

.logo-box {
  display: inline-block;
  border: 1.5px solid var(--black);
  padding: 6px 12px 5px;
  text-align: center;
}

.logo-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.page-brand {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 8px auto 28px;
  text-align: center;
}

.page-brand__mark {
  display: block;
  width: 128px;
  height: 128px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  animation: brandMarkIn 0.85s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-brand__tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.logo-main .of {
  font-size: 9px;
  display: block;
  letter-spacing: 0.22em;
  margin: 1px 0;
}

.logo-tag {
  display: block;
  font-size: 7px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}

.nav-toggle {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--black);
  transition: transform .2s, opacity .2s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-desktop { display: none; gap: 28px; list-style: none; }
.nav-desktop a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color .15s;
}

.nav-desktop a:hover {
  color: var(--accent);
}

/* Desktop Reserve — fills the gap when action dock hides */
.header-reserve {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent-ink);
  background: var(--accent);
  border: 1.5px solid var(--accent);
  transition:
    background var(--micro-duration) var(--micro-ease),
    border-color var(--micro-duration) var(--micro-ease),
    color var(--micro-duration) var(--micro-ease),
    transform var(--micro-duration) var(--micro-ease),
    box-shadow var(--micro-duration) var(--micro-ease);
}

.header-reserve:hover,
.header-reserve:focus-visible {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--accent-ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(196, 160, 106, 0.28);
  outline: none;
}

.header-reserve:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.08s;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(196, 160, 106, 0.22);
}

.nav-scrim {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 840;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s var(--micro-ease);
}

.nav-scrim:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

.nav-drawer {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: calc(var(--dock-h) + var(--safe-bottom));
  width: min(22rem, 88vw);
  background:
    linear-gradient(180deg, rgba(196, 160, 106, 0.06), transparent 28%),
    var(--white);
  z-index: 850;
  padding: 0;
  border-left: 1px solid rgba(196, 160, 106, 0.32);
  transform: translateX(104%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -24px 0 48px rgba(0, 0, 0, 0.28);
}

.nav-drawer.open { transform: translateX(0); }

.nav-drawer__inner {
  padding: 28px 22px 36px;
  min-height: 100%;
}

.nav-drawer__brand {
  display: grid;
  gap: 8px;
  justify-items: start;
  margin-bottom: 18px;
}

.nav-drawer__logo {
  display: block;
  width: auto;
  height: 36px;
  object-fit: contain;
}

.nav-drawer__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-drawer__rule {
  height: 1px;
  width: 100%;
  margin: 0 0 10px;
  background: linear-gradient(90deg, var(--accent), rgba(196, 160, 106, 0.12) 70%, transparent);
}

.nav-drawer__rule--short {
  width: 2.5rem;
  margin: 4px 0 8px;
  background: var(--accent);
}

.nav-drawer__panels {
  position: relative;
  min-height: 100%;
}

.nav-drawer__panel {
  display: none;
}

.nav-drawer__panel.is-active {
  display: block;
}

.nav-drawer.open .nav-drawer__panel.is-active li {
  animation: navDrawerRise 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--i, 0) * 45ms + 40ms);
}

.nav-drawer__back {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 12px 0 8px;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.18s ease;
}

.nav-drawer__back:hover { color: var(--accent); }

.nav-drawer__subhead {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 1;
  color: var(--black);
  padding: 4px 0 0;
}

.nav-drawer__expand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px 0;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--black);
  transition: color 0.18s ease;
}

.nav-drawer__expand:hover { color: var(--accent); }

.nav-drawer__expand span {
  font-size: 18px;
  opacity: .45;
  color: var(--accent);
  transition: transform 0.2s var(--micro-ease);
}

.nav-drawer__expand:hover span {
  transform: translateX(3px);
}

.nav-drawer ul { list-style: none; }
.nav-drawer li {
  border-bottom: 1px solid rgba(196, 160, 106, 0.18);
}

.nav-drawer a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.18s ease;
}

.nav-drawer a:hover {
  color: var(--accent);
}

.nav-drawer .sub a {
  padding-left: 16px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--muted);
}

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

/* Typography blocks */
.section-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-rule {
  height: 3px;
  background: var(--black);
  margin: 6px 0 10px;
  max-width: 100%;
}

.section-rule--short {
  max-width: 200px;
  background: var(--accent);
}

.section-sub {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.55;
}

.page-hero {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 12px;
}

.lead {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.55;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* Hero — always light text over photo */
.hero {
  --hero-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  background: #111;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #222 center/cover no-repeat;
  transform: scale(1.06);
  animation: heroDrift 18s var(--hero-ease) infinite alternate;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.65) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 48px 18px 36px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.hero__lockup {
  display: inline-block;
  max-width: min(100%, 22rem);
}

.hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 9vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  max-width: 12ch;
  color: #fff;
  -webkit-text-stroke: 1.5px #000;
  paint-order: stroke fill;
  text-shadow:
    -1px -1px 0 #000,
     0   -1px 0 #000,
     1px -1px 0 #000,
    -1px  0   0 #000,
     1px  0   0 #000,
    -1px  1px 0 #000,
     0    1px 0 #000,
     1px  1px 0 #000,
     0    2px 8px rgba(0, 0, 0, 0.45);
  animation: heroRise 0.9s var(--hero-ease) both;
}

.hero__lockup p {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
  -webkit-text-stroke: 0.75px #000;
  paint-order: stroke fill;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
     0    1px 4px rgba(0, 0, 0, 0.4);
  animation: heroRise 0.9s 0.1s var(--hero-ease) both;
}

.hero__scroll {
  display: inline-block;
  margin-top: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 2px;
  opacity: .9;
  transition: opacity .15s, border-color .15s;
}

.hero__scroll:hover { opacity: 1; border-color: #fff; }

/* Hero conversion CTAs — primary Reserve, secondary Menus */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  animation: heroRise 0.9s 0.2s var(--hero-ease) both;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 22px;
  border: 2px solid #fff;
  transition:
    background var(--micro-duration) var(--micro-ease),
    color var(--micro-duration) var(--micro-ease),
    border-color var(--micro-duration) var(--micro-ease),
    transform var(--micro-duration) var(--micro-ease),
    box-shadow var(--micro-duration) var(--micro-ease);
  will-change: transform;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hero__cta:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.08s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.06) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1.4%, -0.8%);
  }
}

/* Scroll reveals — intentionally readable (not subtle) */
.reveal {
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.85s var(--reveal-ease),
    transform 0.85s var(--reveal-ease);
  will-change: opacity, transform;
}

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

.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }

/* Section title choreography — rule draws, then title + lead rise */
.reveal.section-head {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.section-head .section-title,
.section-head .moments__eyebrow,
.section-head .moments__title,
.section-head .section-sub {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s var(--reveal-ease),
    transform 0.7s var(--reveal-ease);
}

.section-head .section-rule--short {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s var(--reveal-ease);
}

.reveal.is-in.section-head .section-rule--short,
.reveal.is-in .section-head .section-rule--short {
  transform: scaleX(1);
}

.reveal.is-in.section-head .section-title,
.reveal.is-in.section-head .moments__title,
.reveal.is-in .section-head .section-title,
.reveal.is-in .section-head .moments__title {
  opacity: 1;
  transform: none;
  transition-delay: 0.12s;
}

.reveal.is-in.section-head .moments__eyebrow,
.reveal.is-in .section-head .moments__eyebrow {
  opacity: 1;
  transform: none;
  transition-delay: 0.06s;
}

.reveal.is-in.section-head .section-sub,
.reveal.is-in .section-head .section-sub {
  opacity: 1;
  transform: none;
  transition-delay: 0.22s;
}

.section-head .moments__follow {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.7s var(--reveal-ease),
    transform 0.7s var(--reveal-ease);
}

.reveal.is-in.section-head .moments__follow,
.reveal.is-in .section-head .moments__follow {
  opacity: 1;
  transform: none;
  transition-delay: 0.28s;
}

/* Atmosphere film strip — auto-drift + drag/swipe scrub */
.film-strip {
  position: relative;
  background: #050505;
  border-block: 1px solid rgba(196, 160, 106, 0.28);
  padding: 14px 0;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.film-strip::before,
.film-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2.5rem, 8vw, 4.5rem);
  z-index: 2;
  pointer-events: none;
}

.film-strip::before {
  left: 0;
  background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.55) 42%, transparent 100%);
}

.film-strip::after {
  right: 0;
  background: linear-gradient(270deg, #050505 0%, rgba(5, 5, 5, 0.55) 42%, transparent 100%);
}

.film-strip.is-dragging {
  cursor: grabbing;
}

.film-strip.is-dragging .film-strip__frame {
  transform: scale(0.965);
}

.film-strip.is-hover-paused .film-strip__frame {
  filter: brightness(1.04);
}

.film-strip__track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding-inline: 10px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.film-strip__frame {
  position: relative;
  flex: none;
  width: clamp(11rem, 42vw, 17rem);
  margin: 0;
  overflow: hidden;
  transition: transform 0.28s var(--micro-ease), filter 0.28s ease;
  transform-origin: center center;
}

.film-strip__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.92);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.hero__cta--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.hero__cta--primary:hover {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 8px 28px rgba(196, 160, 106, 0.35);
}

.hero__cta--secondary {
  background: transparent;
  color: #fff;
}

.hero__cta--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* Smart hours */
.smart-hours {
  border: 1.5px solid var(--black);
  overflow: hidden;
  background: var(--white);
}

.smart-hours__status {
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.smart-hours__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.smart-hours__dot--open {
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.35);
  animation: hoursDotPulse 2.4s ease-in-out infinite;
}

html[data-theme="dark"] .smart-hours__dot--open {
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.4);
}
.smart-hours__dot--closed { background: #999; }
.smart-hours__dot--soon {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(196, 160, 106, 0.28);
  animation: hoursDotPulseBrass 2.2s ease-in-out infinite;
}

.smart-hours__headline {
  font-weight: 700;
  font-size: 15px;
  transition: opacity 0.35s var(--micro-ease), transform 0.35s var(--micro-ease);
}
.smart-hours__detail {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.45;
  transition: opacity 0.4s var(--micro-ease);
}

.smart-hours.is-refreshing .smart-hours__headline,
.smart-hours.is-refreshing .smart-hours__detail {
  opacity: 0.35;
  transform: translateY(2px);
}

.smart-hours.is-settling .smart-hours__headline {
  animation: hoursStatusIn 0.45s var(--micro-ease) both;
}
.smart-hours.is-settling .smart-hours__detail {
  animation: hoursStatusIn 0.5s 0.05s var(--micro-ease) both;
}

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

@keyframes hoursDotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.28); }
  50% { box-shadow: 0 0 0 7px rgba(74, 222, 128, 0.12); }
}

@keyframes hoursDotPulseBrass {
  0%, 100% { box-shadow: 0 0 0 3px rgba(196, 160, 106, 0.28); }
  50% { box-shadow: 0 0 0 7px rgba(196, 160, 106, 0.12); }
}

.smart-hours__timeline {
  border-top: 1px solid var(--hairline);
  padding: 10px 16px 12px;
  display: grid;
  gap: 6px;
}

.smart-hours__row {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 4px 0 4px 10px;
  transition: color 0.25s ease, background 0.25s ease;
}

.smart-hours__row span:first-child {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.smart-hours__row--active {
  color: var(--accent);
}

.smart-hours__row--active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(196, 160, 106, 0.55);
  animation: hoursNowPulse 2s ease-in-out infinite;
}

.smart-hours__row--active span { font-weight: 700; }
.smart-hours__row--active span:last-child {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(196, 160, 106, 0.7);
}

@keyframes hoursNowPulse {
  0%, 100% { opacity: 0.75; box-shadow: 0 0 6px rgba(196, 160, 106, 0.35); }
  50% { opacity: 1; box-shadow: 0 0 12px rgba(196, 160, 106, 0.7); }
}

/* Full hours drill-down */
.hours-accordion {
  border-top: 1px solid var(--hairline);
}

.hours-accordion__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: none;
  border: none;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  text-align: left;
}

.hours-accordion__toggle:hover { background: var(--bg-soft); }

.hours-accordion__chevron {
  font-size: 12px;
  opacity: .55;
  transition: transform .28s ease;
}

.hours-accordion__toggle.is-open .hours-accordion__chevron {
  transform: rotate(180deg);
}

.hours-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0 16px;
}

.hours-accordion__panel.is-open {
  grid-template-rows: 1fr;
  padding-bottom: 14px;
}

.hours-accordion__panel-inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.hours-accordion__panel.is-open .hours-accordion__panel-inner {
  opacity: 1;
  transform: none;
  transition-delay: 0.04s;
}

@media (prefers-reduced-motion: reduce) {
  .hours-accordion__panel,
  .hours-accordion__panel-inner,
  .hours-accordion__chevron,
  .hours-drill__body,
  .hours-drill__plus::after {
    transition: none !important;
  }

  .site-logo--mark,
  .page-brand__mark,
  .logo-link:has(.site-logo--mark)::after,
  .smart-hours__dot--open,
  .smart-hours__dot--soon,
  .smart-hours__row--active::before,
  .smart-hours.is-settling .smart-hours__headline,
  .smart-hours.is-settling .smart-hours__detail {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .logo-link:has(.site-logo--mark)::after {
    display: none;
  }

  .hero__content h1,
  .hero__lockup p,
  .hero__ctas {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__media {
    animation: none !important;
    transform: scale(1.06) !important;
  }

  .reveal,
  .reveal.is-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .section-head .section-title,
  .section-head .moments__eyebrow,
  .section-head .moments__title,
  .section-head .section-sub,
  .section-head .moments__follow,
  .section-head .section-rule--short,
  .reveal.is-in.section-head .section-title,
  .reveal.is-in.section-head .moments__title,
  .reveal.is-in.section-head .moments__eyebrow,
  .reveal.is-in.section-head .section-sub,
  .reveal.is-in .section-head .section-title,
  .reveal.is-in .section-head .moments__title,
  .reveal.is-in .section-head .moments__eyebrow,
  .reveal.is-in .section-head .section-sub,
  .reveal.is-in .section-head .moments__follow,
  .reveal.is-in.section-head .section-rule--short,
  .reveal.is-in .section-head .section-rule--short {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }

  .moments-tile,
  .moments-tile img,
  .moments-tile__shade {
    transition: none !important;
  }

  .moments-tile:hover img,
  .moments-tile:focus-visible img,
  .moments-tile:active img {
    transform: none !important;
    filter: none !important;
  }

  .menu-portal__media img,
  .menu-portal--kinetic:hover .menu-portal__media img,
  .menu-portal--kinetic:focus-visible .menu-portal__media img,
  .menu-portal--kinetic .menu-portal__arrow,
  .menu-portal--kinetic:hover .menu-portal__arrow,
  .menu-portal--kinetic:focus-visible .menu-portal__arrow {
    transform: none !important;
    transition: none !important;
  }

  .menu-portal__media img {
    transform: scale(1.06) !important;
  }

  .header-reserve,
  .header-reserve:hover,
  .header-reserve:active {
    transform: none !important;
    box-shadow: none !important;
    transition: none !important;
  }

  .moments-tile__shade {
    opacity: 1 !important;
    transform: none !important;
  }

  .film-strip__track {
    width: max-content;
    max-width: none;
    margin-inline: 0;
    padding-inline: 10px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    transform: none !important;
  }

  .film-strip__frame[aria-hidden="true"] {
    display: none;
  }

  .film-strip {
    cursor: default;
    overflow-x: auto;
  }

  .hero__cta,
  .hero__cta:hover,
  .hero__cta:active,
  .btn,
  .btn:hover,
  .btn:active,
  .action-dock__btn,
  .action-dock__btn:hover,
  .action-dock__btn:active,
  .action-dock__btn--primary:hover,
  .action-dock__btn--primary:active,
  .menu-chip,
  .menu-chip:active {
    transform: none !important;
    box-shadow: none !important;
    transition: none !important;
  }

  .menu-chip::after {
    transition: none !important;
  }

  .menu-chip.is-active::after,
  .menu-chip:hover:not(.is-active)::after {
    width: calc(100% - 16px);
  }

  .menu-reserve-bar,
  .menu-reserve-bar.is-visible {
    transform: none !important;
    transition: none !important;
  }
}

.hours-drill {
  border-top: 1px solid #2a2a2a;
}

html:not([data-theme="dark"]) .hours-drill {
  border-top-color: #ddd;
}

.hours-drill:first-child {
  border-top: 1px solid #2a2a2a;
  margin-top: 2px;
}

html:not([data-theme="dark"]) .hours-drill:first-child {
  border-top-color: #ddd;
}

.hours-drill__summary {
  list-style: none;
  cursor: pointer;
  padding: 13px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}

.hours-drill__summary::-webkit-details-marker { display: none; }

.hours-drill__left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.hours-drill__plus {
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.7;
}

.hours-drill__plus::before,
.hours-drill__plus::after {
  content: '';
  position: absolute;
  background: currentColor;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hours-drill__plus::before {
  width: 12px;
  height: 1.5px;
}

.hours-drill__plus::after {
  width: 1.5px;
  height: 12px;
  transition: opacity .22s ease, transform .22s ease;
}

.hours-drill[open] .hours-drill__plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.hours-drill__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours-drill__peek {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-align: right;
  transition: opacity .2s ease;
}

.hours-drill[open] .hours-drill__peek {
  opacity: 0;
}

.hours-drill__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.hours-drill[open] .hours-drill__body {
  grid-template-rows: 1fr;
}

.hours-drill__body-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 2px 12px 24px;
}

.hours-drill__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  padding: 9px 0;
  border-top: 1px solid #2a2a2a;
}

html:not([data-theme="dark"]) .hours-drill__row {
  border-top-color: #e8e8e8;
}

.hours-drill__row span:first-child {
  color: var(--muted);
  letter-spacing: 0.04em;
  font-size: 12px;
}

.hours-drill__row span:last-child {
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.hours-accordion__note {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 2px 2px;
  border-top: 1px solid #2a2a2a;
}

html:not([data-theme="dark"]) .hours-accordion__note {
  border-top-color: #ddd;
}

/* Cards */
.event-card, .menu-portal, .info-card {
  border: 1.5px solid var(--black);
  text-decoration: none;
  color: var(--black);
  display: block;
  transition: background .15s;
}

.event-card:hover { background: var(--bg-soft); }
.menu-portal:hover:not(.menu-portal--kinetic) { background: var(--bg-soft); }

.event-card { padding: 16px; margin-bottom: 10px; }

.event-card--media {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.event-card__media {
  background: #111;
  min-height: 100%;
}

.event-card__thumb {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 110px;
  padding: 0;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.event-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.event-card--media:hover .event-card__thumb img,
.event-card--media:focus-within .event-card__thumb img {
  transform: scale(1.05);
}

.event-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.25);
  color: var(--white);
  font-size: 14px;
}

.event-card__body { padding: 16px; }

.event-card__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.event-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 4px 0 6px;
}
.event-card__meta { font-size: 13px; color: var(--muted); line-height: 1.5; }
.event-card__cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  text-decoration: none;
}

.event-card__cta:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}

/* This week — editorial list (not boxed promo cards) */
.this-week__intro {
  margin-bottom: 8px;
}

.this-week__list {
  display: grid;
  gap: 0;
  margin-top: 18px;
  border-bottom: 1px solid rgba(196, 160, 106, 0.28);
}

.event-card--editorial {
  border: none;
  border-top: 1px solid rgba(196, 160, 106, 0.28);
  background: transparent;
  margin: 0;
  padding: 0;
  transition: background 0.2s ease;
}

.event-card--editorial:hover,
.event-card--editorial:focus-within {
  background: rgba(196, 160, 106, 0.06);
}

.event-card--editorial.event-card--media {
  grid-template-columns: 1fr;
  min-height: 0;
}

.event-card--editorial .event-card__media {
  min-height: 240px;
  aspect-ratio: 4 / 5;
  position: relative;
}

.event-card--editorial .event-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(196, 160, 106, 0.22);
}

.event-card--editorial .event-card__thumb {
  min-height: 240px;
}

.event-card--editorial .event-card__thumb img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
  filter: contrast(1.05) saturate(0.95);
}

.event-card--editorial:hover .event-card__thumb img,
.event-card--editorial:focus-within .event-card__thumb img {
  transform: scale(1.08);
  filter: contrast(1.08) saturate(1);
}

.event-card--editorial .event-card__body {
  padding: 18px 2px 22px;
  display: grid;
  gap: 0;
  align-content: start;
}

.event-card--editorial .event-card__tag {
  color: var(--accent);
  letter-spacing: 0.16em;
  font-size: 10px;
}

.event-card--editorial .event-card__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 34px);
  line-height: 1.05;
  margin: 8px 0 10px;
  max-width: 16ch;
}

.event-card--editorial .event-card__meta {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.55;
  max-width: 36rem;
  color: var(--muted);
}

.event-card--editorial .event-card__cta {
  margin-top: 16px;
  justify-self: start;
}

/* Homepage This week — compact side-by-side tiles, full photo in frame */
.this-week .event-card--editorial.event-card--media {
  grid-template-columns: 132px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  overflow: visible;
}

.this-week .event-card--editorial .event-card__media {
  width: 132px;
  height: 165px;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  margin-inline: 0;
  align-self: start;
  overflow: hidden;
}

.this-week .event-card--editorial .event-card__thumb {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.this-week .event-card--editorial .event-card__thumb img {
  object-fit: contain;
  object-position: center;
}

.this-week .event-card--editorial .event-card__body {
  padding: 0;
  min-width: 0;
}

.this-week .event-card--editorial .event-card__tag {
  letter-spacing: 0.12em;
}

.this-week .event-card--editorial .event-card__title {
  max-width: none;
}

.this-week .event-card--editorial:hover .event-card__thumb img,
.this-week .event-card--editorial:focus-within .event-card__thumb img {
  transform: scale(1.03);
}

@media (min-width: 720px) {
  .event-card--editorial.event-card--media {
    grid-template-columns: minmax(280px, 44%) 1fr;
    align-items: stretch;
  }

  .event-card--editorial .event-card__media,
  .event-card--editorial .event-card__thumb {
    min-height: 100%;
    aspect-ratio: 4 / 5;
    max-height: 360px;
  }

  .event-card--editorial .event-card__body {
    padding: 22px 8px 22px 28px;
    align-content: center;
  }

  .this-week .event-card--editorial.event-card--media {
    grid-template-columns: minmax(140px, 22%) 1fr;
    gap: 22px;
    padding: 20px 0;
  }

  .this-week .event-card--editorial .event-card__media,
  .this-week .event-card--editorial .event-card__thumb {
    width: 100%;
    height: auto;
    max-height: 180px;
    min-height: 0;
    margin-inline: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
  }

  .this-week .event-card--editorial .event-card__body {
    padding: 0 8px 0 0;
  }
}

.menu-portals { display: grid; gap: 10px; }

.menu-portal {
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: #2a2a2a;
  transition: border-color .15s, background .15s;
}

.menu-portal:hover {
  border-color: var(--accent);
  background: var(--bg-soft);
}

.menu-portal__title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-portal__sub {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.menu-portal__arrow {
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

/* Kinetic destinations — photo rail + brass edge + arrow nudge */
.menu-portal--kinetic {
  --portal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0;
  padding: 0;
  min-height: 88px;
  background: #050505;
  border-color: rgba(196, 160, 106, 0.28);
  transition:
    border-color 0.35s var(--portal-ease),
    box-shadow 0.35s var(--portal-ease),
    background 0.35s var(--portal-ease);
}

.menu-portal--kinetic:hover,
.menu-portal--kinetic:focus-visible {
  border-color: var(--accent);
  background: #050505;
  box-shadow:
    inset 0 0 0 1px rgba(196, 160, 106, 0.35),
    0 10px 28px rgba(0, 0, 0, 0.35);
  outline: none;
}

.menu-portal__media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 88px;
}

.menu-portal__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(5, 5, 5, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.menu-portal__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14) translateX(-8%);
  transition: transform 0.7s var(--portal-ease), filter 0.35s ease;
  filter: contrast(1.04) saturate(0.92);
}

/* Brunch reel still — crop away center play affordance */
.menu-portal__img--brunch {
  object-position: 28% 42%;
}

.menu-portal--kinetic:hover .menu-portal__media img,
.menu-portal--kinetic:focus-visible .menu-portal__media img {
  transform: scale(1.14) translateX(0);
  filter: contrast(1.08) saturate(1);
}

.menu-portal__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 12px 14px 16px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.menu-portal--kinetic .menu-portal__title {
  color: #f2f2f2;
}

.menu-portal--kinetic .menu-portal__sub {
  color: #9a9a9a;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.menu-portal--kinetic .menu-portal__arrow {
  display: flex;
  align-items: center;
  padding-right: 16px;
  font-size: 26px;
  transition: transform 0.35s var(--portal-ease), color 0.25s ease;
}

.menu-portal--kinetic:hover .menu-portal__arrow,
.menu-portal--kinetic:focus-visible .menu-portal__arrow {
  transform: translateX(5px);
  color: var(--accent-hover);
}

.menu-portal--featured.menu-portal--kinetic {
  min-height: 104px;
  grid-template-columns: minmax(110px, 34%) minmax(0, 1fr) auto;
}

.menu-portal--featured.menu-portal--kinetic .menu-portal__media {
  min-height: 104px;
}

@media (min-width: 720px) {
  .menu-portal--kinetic {
    min-height: 96px;
    grid-template-columns: 120px minmax(0, 1fr) auto;
  }

  .menu-portal--featured.menu-portal--kinetic {
    min-height: 120px;
    grid-template-columns: minmax(160px, 32%) minmax(0, 1fr) auto;
  }
}

/* Menu items */
.menu-section { padding: 32px 0 48px; }

.menu-item { margin-bottom: 24px; }
.menu-item--art {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: start;
}

.menu-item--art-reverse {
  grid-template-columns: 1fr 90px;
}

.cocktail-svg {
  width: 80px;
  height: auto;
  display: block;
  opacity: 0.95;
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: clamp(18px, 4.5vw, 22px);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.15;
}

.menu-item__dish-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: 0;
  transition: color 0.2s var(--micro-ease);
}

.menu-item__dish-btn:hover,
.menu-item__dish-btn:focus-visible {
  color: var(--accent);
  outline: none;
}

.menu-item__dish-btn:hover .menu-item__photo,
.menu-item__dish-btn:focus-visible .menu-item__photo {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-1px);
}

.menu-item__dish-text {
  min-width: 0;
}

.menu-item__photo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid rgba(196, 160, 106, 0.55);
  background: rgba(196, 160, 106, 0.12);
  color: var(--accent);
  pointer-events: none;
  transition:
    background 0.2s var(--micro-ease),
    border-color 0.2s var(--micro-ease),
    color 0.2s var(--micro-ease),
    transform 0.2s var(--micro-ease);
}

.menu-item__photo svg {
  width: 15px;
  height: 15px;
  display: block;
}

.menu-item__dish-btn:active .menu-item__photo {
  transform: scale(0.96);
}

.menu-item__desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.55;
}

.menu-item__price {
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  color: var(--accent);
}

.menu-item--row {
  margin-bottom: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
}

.menu-item__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.menu-item__meta {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-left: 6px;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: lowercase;
}

.menu-item__flags {
  margin-left: 6px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.menu-group {
  scroll-margin-top: calc(var(--header-h) + var(--menu-chips-h) + 8px);
  margin-top: 28px;
}

.menu-group__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.menu-group__rule {
  height: 2px;
  background: var(--accent);
  margin-bottom: 4px;
  max-width: 72px;
  opacity: 1;
}

.menu-chips {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -18px 8px;
  padding: 10px 18px;
  background: color-mix(in srgb, var(--white) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}

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

.menu-chip {
  position: relative;
  flex: 0 0 auto;
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1.5px solid var(--black);
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--micro-duration) var(--micro-ease),
    color var(--micro-duration) var(--micro-ease),
    border-color var(--micro-duration) var(--micro-ease),
    transform 0.12s var(--micro-ease);
}

.menu-chip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 0.32s var(--micro-ease);
  pointer-events: none;
}

.menu-chip.is-active,
.menu-chip:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.menu-chip.is-active::after {
  width: calc(100% - 16px);
  background: var(--accent-ink);
}

.menu-chip:hover:not(.is-active)::after {
  width: calc(100% - 24px);
}

.menu-chip:active {
  transform: scale(0.96);
}

.menu-print {
  display: inline-block;
  margin-top: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
}

.menu-print:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
  opacity: 1;
}

/* Menu pages — page title rule in brass */
.menu-section .section-rule {
  background: var(--accent);
  max-width: 200px;
  height: 3px;
}

.menu-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.menu-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 20px;
  border-top: 1px solid var(--dock-rule);
  margin-top: 28px;
}

.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.menu-tab {
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1.5px solid var(--black);
  background: var(--white);
  cursor: pointer;
}

.menu-tab.active { background: var(--black); color: var(--white); }

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-gallery {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--dock-rule);
}

.menu-feature {
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid var(--dock-rule);
}

.menu-feature img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  display: block;
}

.menu-gallery img {
  border: 1px solid var(--dock-rule);
  cursor: zoom-in;
  transition: opacity .15s;
}

.menu-gallery img:hover { opacity: .92; }

.menu-gallery__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

/* Moments — same black as page/footer (no gray band) */
.moments-section {
  background: #000;
  color: #f2f2f2;
  border-top: 0;
  border-bottom: 0;
}

.moments-section .section-rule { background: rgba(255,255,255,.25); }
.moments-section .section-rule--short { background: var(--accent); }
.moments-section .section-sub { color: #fff; }
.moments-section .section-sub a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

.moments__intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.moments__eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}

.moments__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 48px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  color: #f2f2f2;
}

.moments__follow {
  flex-shrink: 0;
  border-color: #f2f2f2;
  color: #f2f2f2;
  background: transparent;
}

.moments__follow:hover {
  background: #f2f2f2;
  color: #0b0b0b;
}

.moments__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.moments__grid--latest .moments-tile {
  aspect-ratio: 1;
}

@media (min-width: 768px) {
  .moments__grid,
  .moments__grid--latest {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

.moments__profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  text-decoration: none;
  color: #f2f2f2;
}

.moments__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.35);
  flex-shrink: 0;
  background: #333;
}

.moments__avatar--logo {
  object-fit: contain;
  background: var(--white);
  padding: 10px 6px;
  width: 56px;
  height: 56px;
  filter: none;
}

.moments__profile-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.moments__handle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.moments__brand {
  font-size: 11px;
  opacity: .65;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.moments-tile__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  top: -8%;
  border: 0;
  pointer-events: none;
  transform: scale(1.15);
  transform-origin: center top;
}

.moments-tile--live .moments-tile__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
}

.moments-tile {
  --moments-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --parallax: 0px;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(196, 160, 106, 0.55);
  background: #222;
  cursor: pointer;
  color: var(--white);
  text-align: left;
  text-decoration: none;
  font: inherit;
  isolation: isolate;
  opacity: 0;
  transform: translateY(18px);
  transition:
    border-color 0.35s var(--moments-ease),
    box-shadow 0.35s var(--moments-ease),
    opacity 0.55s var(--moments-ease),
    transform 0.55s var(--moments-ease);
  transition-delay: 0s, 0s, calc(var(--i, 0) * 70ms), calc(var(--i, 0) * 70ms);
}

.moments__grid.is-ready .moments-tile {
  opacity: 1;
  transform: none;
}

.moments-tile img {
  width: 100%;
  height: calc(100% + 14px);
  margin-top: -7px;
  object-fit: cover;
  transition:
    transform 0.7s var(--moments-ease),
    filter 0.35s ease;
  filter: contrast(1.04) saturate(0.94);
  will-change: transform;
  transform: translate3d(0, var(--parallax), 0) scale(1.04);
}

.moments-tile__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: .45;
}

.moments-tile:hover,
.moments-tile:focus-visible {
  border-color: var(--accent-hover);
  box-shadow:
    inset 0 0 0 1px rgba(212, 181, 126, 0.55),
    0 0 0 1px rgba(196, 160, 106, 0.35);
  outline: none;
}

.moments-tile:hover img,
.moments-tile:focus-visible img {
  transform: translate3d(0, var(--parallax), 0) scale(1.12);
  filter: contrast(1.08) saturate(1.02);
}

.moments-tile__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 14px 14px 16px;
  background:
    linear-gradient(180deg, transparent 28%, rgba(0,0,0,.55) 62%, rgba(0,0,0,.92) 100%);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.35s var(--moments-ease),
    transform 0.35s var(--moments-ease);
  pointer-events: none;
}

.moments-tile:hover .moments-tile__shade,
.moments-tile:focus-visible .moments-tile__shade {
  opacity: 1;
  transform: none;
}

@media (max-width: 767px) {
  .moments-tile__shade {
    opacity: 1;
    transform: none;
    background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.82) 100%);
  }

  .moments-tile:active img {
    transform: translate3d(0, var(--parallax), 0) scale(1.08);
  }
}

.moments-tile__caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(13px, 2.4vw, 15px);
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.94);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.moments-tile__hint {
  margin-top: 0;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.95;
}

.moments-tile__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.62);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.moments__empty {
  grid-column: 1 / -1;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  padding: 24px 0;
}

.moments__empty a { color: #f2f2f2; font-weight: 600; }

/* Moments viewer */
body.moments-open { overflow: hidden; }

.moments-viewer {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.moments-viewer[hidden] { display: none; }

.moments-viewer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.9);
}

.moments-viewer__panel {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  max-height: 92vh;
  background: #0b0b0b;
  border: 1px solid rgba(196, 160, 106, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.moments-viewer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(196, 160, 106, 0.22);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.moments-viewer__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.moments-viewer__frame {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  background: #050505;
}

.moments-viewer__stage {
  aspect-ratio: 4/5;
  max-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.moments-viewer__stage img {
  max-width: 100%;
  max-height: 58vh;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moments-viewer__nav {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 28px;
  padding: 8px 10px;
  cursor: pointer;
  opacity: .85;
  transition: opacity .15s, transform 0.18s ease;
}

.moments-viewer__nav:hover {
  opacity: 1;
  transform: scale(1.08);
}

.moments-viewer__meta {
  padding: 16px 18px 20px;
  border-top: 1px solid rgba(196, 160, 106, 0.22);
  display: grid;
  gap: 14px;
}

.moments-viewer__caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  min-height: 1.4em;
}

.moments-viewer__ig-link {
  width: 100%;
  text-align: center;
}

/* Legacy IG strip (menus/other pages) */
.ig-strip { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--dock-rule); }
.ig-strip__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.ig-grid a { aspect-ratio: 1; overflow: hidden; }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; }

/* Forms */
.form-block { max-width: 520px; }
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 12px;
  border: 1.5px solid var(--black);
  background: var(--white);
}
.form-row textarea { min-height: 120px; resize: vertical; }

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--micro-duration) var(--micro-ease),
    color var(--micro-duration) var(--micro-ease),
    border-color var(--micro-duration) var(--micro-ease),
    transform var(--micro-duration) var(--micro-ease),
    box-shadow var(--micro-duration) var(--micro-ease);
}

.btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--accent-ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 160, 106, 0.32);
}

.btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.08s;
  box-shadow: 0 2px 8px rgba(196, 160, 106, 0.2);
}
.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 40px 18px calc(24px + var(--dock-h) + var(--safe-bottom));
  margin-top: 48px;
  text-align: center;
}

/* Moments already closes the page band — no orphan gap before footer */
main:has(.moments-section--secondary:last-child) + .site-footer {
  margin-top: 0;
}

.site-footer a { color: var(--white); text-decoration: none; opacity: .85; }
.site-footer a:hover { opacity: 1; }

.footer-grid {
  display: grid;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.footer-block {
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.footer-block h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: .6;
}

.footer-block p, .footer-block li {
  font-size: 13px;
  line-height: 1.6;
  opacity: .9;
}

.footer-block ul { list-style: none; }
.footer-block li { margin-bottom: 4px; }

.footer-logo {
  width: auto;
  height: 52px;
  max-width: min(220px, 70vw);
  margin: 0 auto 16px;
  display: block;
  object-fit: contain;
  object-position: center;
  /* White PNG preferred; legacy dark PNG still works if inverted by theme hook */
  filter: none;
  opacity: 1;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 18px;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(242, 242, 242, 0.78);
  text-decoration: none;
  line-height: 0;
  transition: color .15s;
}

.footer-social__link:hover,
.footer-social__link:focus-visible {
  color: #fff;
  opacity: 1;
}

.footer-social__icon {
  width: 28px;
  height: 28px;
  display: block;
}

.footer-copy {
  max-width: var(--max);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 11px;
  opacity: .5;
  text-align: center;
}

.footer-copy__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(196, 160, 106, 0.55);
  transition: color 0.18s ease, text-decoration-color 0.18s ease, opacity 0.18s ease;
}

.footer-copy__link:hover,
.footer-copy__link:focus-visible {
  color: var(--accent);
  text-decoration-color: var(--accent);
  outline: none;
}

/* Action dock — mobile conversion bar */
.action-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: calc(var(--dock-h) + var(--safe-bottom));
  padding: 0 4px var(--safe-bottom);
  background: #000;
  border-top: 2px solid var(--accent);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  gap: 2px;
}

.action-dock__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  color: #9a9a9a;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 0;
  background: transparent;
  transition:
    color var(--micro-duration) var(--micro-ease),
    background var(--micro-duration) var(--micro-ease),
    transform var(--micro-duration) var(--micro-ease),
    box-shadow var(--micro-duration) var(--micro-ease);
  min-width: 0;
  padding: 8px 2px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.action-dock__btn:last-child { border-right: none; }
.action-dock__btn:hover,
.action-dock__btn:focus-visible {
  color: #f2f2f2;
  background: transparent;
  outline: none;
}

.action-dock__btn:active {
  transform: scale(0.94);
  transition-duration: 0.08s;
}

.action-dock__btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  margin: 6px 2px;
  align-self: stretch;
  border-radius: 2px;
}

.action-dock__btn--primary:hover,
.action-dock__btn--primary:focus-visible {
  background: var(--accent-hover);
  color: var(--accent-ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(196, 160, 106, 0.38);
}

.action-dock__btn--primary:active {
  transform: translateY(1px) scale(0.96);
  box-shadow: 0 2px 6px rgba(196, 160, 106, 0.22);
}

.action-dock__btn--active {
  background: transparent;
  color: var(--accent);
}

.action-dock__btn--active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2px;
  background: var(--accent);
}

.action-dock__icon {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.action-dock__icon svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.action-dock__btn--primary .action-dock__icon svg {
  stroke-width: 2;
}

/* Parking modal */
.parking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 2px solid var(--black);
  background: var(--bg-soft);
  cursor: pointer;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
  transition: background .15s;
}

.parking-card:hover { background: var(--hover-soft); }

.parking-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex: 1;
  min-width: 0;
}

@media (max-width: 479px) {
  .parking-card__title {
    font-size: 18px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
}

.parking-card__arrow {
  font-size: 24px;
  opacity: .45;
  flex-shrink: 0;
}

.parking-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.parking-modal.open { display: flex; }

.parking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
}

.parking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(90vh, 820px);
  overflow: auto;
  background: var(--white);
  border: 2px solid var(--black);
}

.parking-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--dock-rule);
}

.parking-modal__top h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.parking-modal__close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}

.parking-modal__body { padding: 18px; }

.parking-modal__map {
  width: 100%;
  border: 1px solid var(--dock-rule);
  margin-bottom: 16px;
}

.parking-modal__body p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--muted);
}

.parking-modal__list {
  list-style: none;
  margin: 16px 0;
}

.parking-modal__list li {
  font-size: 13px;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
}

.parking-modal__list li:last-child { border-bottom: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open { display: flex; }

.lightbox__figure {
  margin: 0;
  max-width: min(920px, 100%);
  text-align: center;
}

.lightbox img {
  max-height: 78vh;
  max-width: 100%;
  object-fit: contain;
  border: 1px solid rgba(196, 160, 106, 0.35);
}

.lightbox__caption {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.section-pad { padding: 36px 0; }
.section-pad--tight { padding: 24px 0; }

.home-reserve {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.home-reserve__copy {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 600;
  line-height: 1.2;
}

.footer-text-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  opacity: .85;
  cursor: pointer;
  text-align: center;
}

.footer-text-btn:hover { opacity: 1; text-decoration: underline; text-underline-offset: 2px; }

.prose p {
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--black);
}

.info-list { list-style: none; margin: 12px 0; }
.info-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
}

.embed-block {
  border: 1.5px solid var(--black);
  margin: 24px 0;
  background: var(--white);
}

.embed-block iframe {
  display: block;
  width: 100%;
  border: none;
}

/* OpenTable framing — brand chrome around the third-party widget */
.reserve-panel {
  margin: 8px 0 28px;
  padding: 28px 18px 22px;
  border-top: 1px solid rgba(196, 160, 106, 0.45);
  border-bottom: 1px solid rgba(196, 160, 106, 0.45);
  background:
    linear-gradient(180deg, rgba(196, 160, 106, 0.07), transparent 42%),
    #000;
  text-align: center;
}

.reserve-panel__eyebrow {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.reserve-panel__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--black);
}

.reserve-panel__lede {
  margin: 10px auto 22px;
  max-width: 28rem;
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.55;
  color: var(--muted);
}

.ot-widget-wrap {
  width: min(100%, 280px);
  margin: 0 auto;
  padding: 14px 14px 10px;
  border: 1px solid rgba(196, 160, 106, 0.55);
  box-shadow: inset 0 0 0 1px rgba(196, 160, 106, 0.18);
  overflow: hidden;
  line-height: 0;
  background: #fff;
  box-sizing: border-box;
  text-align: center;
}

.ot-widget-wrap iframe {
  display: block;
  width: 224px !important;
  max-width: 100% !important;
  height: 310px !important;
  min-height: 310px !important;
  max-height: none !important;
  border: 0 !important;
  margin: 0 auto !important;
}

.reserve-panel .form-note {
  margin-top: 18px;
}

@media (min-width: 720px) {
  .reserve-panel {
    padding: 36px 32px 28px;
  }
}

.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.form-note a { color: var(--black); font-weight: 600; }

.event-detail {
  padding: 28px 0;
  border-top: 1px solid var(--dock-rule);
}

.event-detail__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.event-detail__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
}

.event-detail--with-image {
  display: grid;
  gap: 24px;
  align-items: start;
}

.event-detail__img {
  border: 1px solid var(--dock-rule);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Events page — expanded editorial cards */
.events-list {
  margin-top: 0;
}

.event-card--detail .event-card__title {
  max-width: none;
}

.event-card--detail .event-card__prose {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.event-card--detail .event-card__prose p + p {
  margin-top: 10px;
}

.event-card--detail .event-card__actions,
.event-card--detail .btn-row {
  margin-top: 18px;
}

.event-card__media--static {
  min-height: 240px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.event-card__media--static::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(196, 160, 106, 0.22);
}

.event-card__media--static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
  filter: contrast(1.05) saturate(0.95);
}

.event-card--editorial:hover .event-card__media--static img,
.event-card--editorial:focus-within .event-card__media--static img {
  transform: scale(1.08);
  filter: contrast(1.08) saturate(1);
}

/* Reservations — atmosphere + widget layout */
.reserve-page {
  padding: 28px 0 48px;
}

.reserve-page__grid {
  display: grid;
  gap: 32px;
}

.reserve-page__photo {
  aspect-ratio: 4 / 5;
  background: #111 url('../assets/site/cocktails-hero.jpeg') center / cover no-repeat;
  border: 1px solid rgba(196, 160, 106, 0.35);
  box-shadow: inset 0 0 0 1px rgba(196, 160, 106, 0.12);
}

.reserve-page__kicker {
  margin: 18px 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.reserve-page__aside-copy .lead {
  font-size: 16px;
}

.reserve-page__hours {
  margin-top: 20px;
}

.reserve-page__main .page-hero {
  margin-bottom: 0;
}

.ot-widget-wrap--dark {
  background: #0a0a0a;
  border-color: rgba(196, 160, 106, 0.65);
  box-shadow:
    inset 0 0 0 1px rgba(196, 160, 106, 0.22),
    0 12px 40px rgba(0, 0, 0, 0.45);
}

/* Menu hub */
.menu-hub-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.menu-hub-hero__media {
  position: absolute;
  inset: 0;
  background: url('../assets/site/cocktails-hero.jpeg') center / cover no-repeat;
}

.menu-hub-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.2) 100%);
}

.menu-hub-hero__content {
  position: relative;
  z-index: 1;
  padding: 48px 18px 32px;
}

.menu-hub-hero__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.menu-hub-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 9vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
}

.menu-hub-hero__sub {
  margin-top: 12px;
  max-width: 32rem;
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.menu-hub__hours {
  margin: 28px 0 8px;
}

.menu-hub__portals {
  margin-top: 20px;
}

.menu-portal--featured {
  padding: 18px 16px;
  border-color: rgba(196, 160, 106, 0.35);
}

.menu-hub__reserve {
  margin-top: 32px;
}

/* Menu detail — sticky reserve prompt on scroll */
.menu-reserve-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--dock-h) + var(--safe-bottom));
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  background: rgba(0, 0, 0, 0.94);
  border-top: 1px solid rgba(196, 160, 106, 0.45);
  transform: translateY(110%);
  transition: transform 0.32s var(--micro-ease);
  pointer-events: none;
}

.menu-reserve-bar.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.menu-reserve-bar__copy {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  margin: 0;
}

.menu-reserve-bar__btn {
  padding: 10px 16px;
  font-size: 10px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .menu-reserve-bar {
    bottom: 0;
    padding-bottom: calc(10px + var(--safe-bottom));
  }
}

@media (min-width: 900px) {
  .reserve-page__grid {
    grid-template-columns: minmax(260px, 340px) 1fr;
    align-items: start;
    gap: 48px;
  }

  .reserve-page__main .reserve-panel {
    text-align: left;
  }

  .reserve-page__main .reserve-panel__lede {
    margin-left: 0;
  }

  .reserve-page__main .ot-widget-wrap {
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .event-detail--with-image { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .site-logo {
    height: 48px;
    max-width: 200px;
  }
  .site-logo--mark { height: 76px; width: 76px; max-width: 76px; }
  .footer-logo {
    height: 56px;
    max-width: 240px;
  }
  .site-award { width: 44px; height: 44px; }
  .nav-toggle { display: none; }
  .nav-desktop { display: flex; align-items: center; }
  .header-reserve { display: inline-flex; }
  .nav-drawer { display: none !important; }
  body { padding-bottom: 0; }
  .action-dock { display: none; }
  .site-footer { padding-bottom: 40px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .hero { min-height: 68vh; }
  .menu-item--art { grid-template-columns: 72px 1fr; gap: 10px; }
  .menu-item--art-reverse { grid-template-columns: 1fr 72px; }
  .cocktail-svg { width: 68px; }
  .ig-grid { grid-template-columns: repeat(6, 1fr); }
  .moments__grid--latest { gap: 8px; }
  .event-card--media:not(.event-card--editorial) { grid-template-columns: 140px 1fr; }
  .event-card--editorial.event-card--media { grid-template-columns: minmax(280px, 44%) 1fr; }
  .this-week .event-card--editorial.event-card--media { grid-template-columns: minmax(140px, 22%) 1fr; }
}

@media (min-width: 1024px) {
  .logo-main { font-size: 20px; }
  .logo-tag { font-size: 8px; }
}
