:root {
  --ink: #0e1612;
  --ink-2: #16221d;
  --cream: #f4ede0;
  --paper: #fffaf1;
  --gold: #c9a55c;
  --gold-bright: #e6c581;
  --green: #2f6b4a;
  --green-deep: #071b12;
  --rust: #b34a2a;
  --muted: rgba(244, 237, 224, 0.72);
  --muted-strong: rgba(244, 237, 224, 0.88);
  --muted-dark: rgba(14, 22, 18, 0.62);
  --line: rgba(244, 237, 224, 0.24);
  --line-dark: rgba(14, 22, 18, 0.16);
  --font-main: "EB Garamond", Georgia, serif;
  --font-display: "Cinzel", Georgia, serif;
  --text-body: 18px;
  --text-body-large: 20px;
  --text-body-compact: 16px;
  --max: 1240px;
  --gutter: clamp(18px, 4vw, 56px);
  --radius: 3px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 172px;
  background: var(--ink);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--font-main);
  font-size: var(--text-body);
  font-weight: 600;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  color: inherit;
  font-family: var(--font-display);
}

h1,
h2,
h3,
p,
figure,
ul,
dl,
dd {
  margin: 0;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  font-size: 106px;
  line-height: 0.9;
}

h2 {
  font-size: 68px;
  line-height: 0.96;
}

h3 {
  font-size: 28px;
  line-height: 1.12;
}

p {
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.55;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--gold-bright);
  border: 2px solid var(--cream);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

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

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

::selection {
  color: var(--ink);
  background: var(--gold);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  opacity: 1;
  visibility: visible;
  color: var(--cream);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 27, 18, 0.94);
  backdrop-filter: blur(18px);
  transition: background 260ms var(--ease), border-color 260ms var(--ease), backdrop-filter 260ms var(--ease), transform 260ms var(--ease), opacity 220ms var(--ease), visibility 220ms var(--ease);
}

.home-page .site-header:not(.is-scrolled):not(.is-open) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 27, 18, 0.96);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100vw - var(--gutter) - var(--gutter)), var(--max));
  min-height: 96px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: center;
}

.brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: 176px;
  display: inline-flex;
  transition: opacity 240ms var(--ease), transform 240ms var(--ease);
}

.site-header:not(.is-scrolled) .brand {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.site-header:not(.is-scrolled) .desktop-nav {
  grid-column: 1 / -1;
  justify-self: center;
}

.site-header:not(.is-scrolled) .header-actions {
  display: none;
}

.site-header.is-scrolled .header-inner {
  min-height: 132px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
  padding: 20px 0 22px;
  align-items: center;
}

.site-header.is-scrolled .brand {
  grid-column: 2;
  grid-row: 1;
  width: 156px;
}

.site-header.is-scrolled .desktop-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
}

.site-header.is-scrolled .header-actions {
  grid-column: 3;
  grid-row: 1 / 3;
  justify-self: end;
  align-self: center;
  background: transparent;
  backdrop-filter: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav,
.header-actions,
.hero-ctas,
.visit-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  grid-column: 1;
  grid-row: 1;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(244, 237, 224, 0.18);
  background: rgba(3, 16, 9, 0.56);
  backdrop-filter: blur(14px);
}

.desktop-nav a,
.header-link,
.menu-button,
.mobile-menu a,
.button {
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  min-width: 78px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  color: rgba(244, 237, 224, 0.86);
  text-align: center;
}

.desktop-nav a + a {
  border-left: 1px solid rgba(244, 237, 224, 0.12);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 11px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  border: 1px solid var(--line);
}

.header-link {
  min-width: 108px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: rgba(3, 16, 9, 0.28);
}

.header-link:nth-child(2) {
  min-width: 168px;
}

.header-link + .header-link {
  border-left: 1px solid var(--line);
}

.drink-icons svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  display: none;
  min-height: 42px;
  align-items: center;
  gap: 12px;
  padding: 0 0 0 14px;
  border: 1px solid var(--line);
  background: rgba(3, 16, 9, 0.26);
  cursor: pointer;
}

.menu-button i {
  position: relative;
  width: 42px;
  height: 42px;
  border-left: 1px solid var(--line);
}

.menu-button i::before,
.menu-button i::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: currentColor;
  transition: transform 220ms var(--ease), top 220ms var(--ease);
}

.menu-button i::before {
  top: 15px;
}

.menu-button i::after {
  top: 24px;
}

.site-header.is-open .menu-button i::before {
  top: 20px;
  transform: rotate(45deg);
}

.site-header.is-open .menu-button i::after {
  top: 20px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: block;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--gold);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.94) contrast(1.06);
  transform: translateY(calc(var(--hero-shift, 0) * 1px)) scale(1.04);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(rgba(22, 100, 58, 0.16), rgba(22, 100, 58, 0.16)),
    linear-gradient(180deg, rgba(14, 22, 18, 0.22), rgba(14, 22, 18, 0.48) 56%, rgba(14, 22, 18, 0.92)),
    linear-gradient(90deg, rgba(14, 22, 18, 0.66), rgba(14, 22, 18, 0.14) 52%, rgba(14, 22, 18, 0.68));
}

.hero-content {
  width: min(calc(100vw - var(--gutter) - var(--gutter)), var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(152px, 22svh, 190px) 0 clamp(48px, 8svh, 78px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(44px, 7svh, 72px);
}

.hero-title {
  width: min(100%, 1080px);
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: clamp(306px, 30vw, 384px);
  height: auto;
  margin: 0 auto clamp(40px, 5.5svh, 60px);
}

.hero h1 {
  max-width: 1060px;
  margin: 0 auto;
  color: var(--cream);
  font-size: clamp(42px, 5.4vw, 68px);
}

.hero h1 > span {
  display: block;
}

.hero h1 > span + span {
  color: var(--gold-bright);
}

.hero-kicker {
  margin-top: 12px;
  color: var(--cream);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.rating-card {
  width: min(100%, 316px);
  margin: 28px auto 0;
  padding: 18px 22px;
  border: 1px solid var(--gold);
  background: rgba(14, 22, 18, 0.54);
  text-align: center;
}

.rating-card strong {
  color: var(--cream);
  font-size: 36px;
  line-height: 1;
}

.rating-card .stars {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold-bright);
  letter-spacing: 0;
}

.rating-card small {
  display: block;
  margin-top: 7px;
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-bottom {
  width: min(100%, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin: 0 auto;
  text-align: center;
}

.hero-bottom p {
  max-width: 660px;
  color: rgba(244, 237, 224, 0.86);
  font-size: 18px;
}

.hero-ctas,
.visit-actions {
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(201, 165, 92, 0.16);
  color: var(--cream);
  transition: color 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.button:hover {
  color: var(--ink);
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201, 165, 92, 0.32);
}

.button-solid {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
}

.button-solid:hover {
  color: var(--ink);
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(230, 197, 129, 0.45);
}

.button.dark {
  color: var(--cream);
  border-color: var(--ink);
  background: var(--ink);
}

.button.dark:hover {
  color: var(--ink);
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(14, 22, 18, 0.28);
}

.story-compact {
  padding: 96px var(--gutter);
  background: var(--ink-2);
  color: var(--cream);
  border-bottom: 1px solid var(--line);
}

.story-compact .story-photo {
  border-color: var(--line);
}

/* Force pure white + bold for every text element layered over the pour animation */
[data-pour-bg],
[data-pour-bg] h1,
[data-pour-bg] h2,
[data-pour-bg] h3,
[data-pour-bg] h4,
[data-pour-bg] p,
[data-pour-bg] a,
[data-pour-bg] dt,
[data-pour-bg] dd,
[data-pour-bg] dd a,
[data-pour-bg] li,
[data-pour-bg] span,
[data-pour-bg] strong,
[data-pour-bg] .section-label {
  color: #fff !important;
  font-weight: 800 !important;
}

[data-pour-bg] .button,
[data-pour-bg] .button-solid,
[data-pour-bg] .button.dark {
  color: #fff !important;
  font-weight: 800 !important;
  border-color: #fff !important;
  background: transparent !important;
}

[data-pour-bg] .button:hover,
[data-pour-bg] .button-solid:hover,
[data-pour-bg] .button.dark:hover {
  color: var(--ink) !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.25);
}

.story-compact[data-pour-bg] .story-cta.button,
.story-compact[data-pour-bg] .story-cta.button:hover,
.story-compact[data-pour-bg] .story-cta.button:focus-visible {
  color: var(--ink) !important;
  border-color: var(--gold-bright) !important;
  background: var(--gold-bright) !important;
  box-shadow: 0 8px 22px rgba(230, 197, 129, 0.34);
}

.story-compact[data-pour-bg] .story-cta.button:hover,
.story-compact[data-pour-bg] .story-cta.button:focus-visible {
  border-color: var(--gold) !important;
  background: var(--gold) !important;
  transform: translateY(-2px);
}

[data-mosaic-bg],
[data-pour-bg] {
  position: relative;
}

[data-mosaic-bg] > *:not(.mosaic-bg),
[data-pour-bg] > *:not(.pour-bg) {
  position: relative;
  z-index: 1;
}

.pour-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
}

.pour-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(7, 27, 18, 0.36);
}

.pour-bg svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .pour-bg {
    display: none;
  }
}

/* ======================================================
   HOMEPAGE ANNOUNCEMENT POPUP
   ====================================================== */
body.home-popup-open {
  overflow: hidden;
}

.home-popup[hidden] {
  display: none;
}

.home-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms var(--ease), visibility 220ms var(--ease);
}

.home-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.home-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 16, 9, 0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-popup-panel {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100vw - 48px));
  max-height: calc(100svh - 48px);
  overflow: auto;
  border: 1px solid rgba(230, 197, 129, 0.88);
  color: var(--cream);
  background: var(--green-deep);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.68),
    inset 0 0 0 1px rgba(244, 237, 224, 0.08);
  transform: translateY(22px) scale(0.97);
  transition: transform 260ms var(--ease);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(244, 237, 224, 0.08);
}

.home-popup.is-open .home-popup-panel {
  transform: translateY(0) scale(1);
}

.home-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(230, 197, 129, 0.86);
  color: var(--cream);
  background: rgba(7, 27, 18, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.home-popup-close:hover,
.home-popup-close:focus-visible {
  color: var(--ink);
  background: var(--gold-bright);
  transform: rotate(4deg);
}

.home-popup-close svg {
  width: 24px;
  height: 24px;
}

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

.home-popup-promo img {
  width: 100%;
  height: auto;
}

.home-popup[data-popup-mode="events"] .home-popup-panel {
  width: min(940px, calc(100vw - 48px));
  background:
    radial-gradient(circle at 10% 0%, rgba(47, 107, 74, 0.35), transparent 36%),
    linear-gradient(180deg, #0e2118, var(--green-deep));
}

.home-popup-events {
  padding: clamp(34px, 5vw, 58px);
}

.home-popup-events-head {
  max-width: 660px;
  margin: 0 auto clamp(24px, 4vw, 38px);
  padding: 0 58px;
  text-align: center;
}

.home-popup-events-head p {
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-popup-events-head h2 {
  color: var(--cream);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 0.98;
}

.home-popup-events-head span {
  display: block;
  margin-top: 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-popup-events-list {
  display: grid;
  gap: 18px;
}

.home-popup-event-card {
  --popup-event-accent: var(--gold-bright);
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  border: 1px solid color-mix(in srgb, var(--popup-event-accent) 55%, transparent);
  border-left: 5px solid var(--popup-event-accent);
  background:
    linear-gradient(135deg, rgba(244, 237, 224, 0.07), transparent 52%),
    rgba(14, 22, 18, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.home-popup-event-card[data-event-type~="games"] {
  --popup-event-accent: #7ab388;
}

.home-popup-event-card[data-event-type~="special"] {
  --popup-event-accent: #d97b52;
}

.home-popup-event-date {
  display: grid;
  place-content: center;
  padding: 22px 16px;
  border-right: 1px solid color-mix(in srgb, var(--popup-event-accent) 42%, transparent);
  color: var(--popup-event-accent);
  background: color-mix(in srgb, var(--popup-event-accent) 10%, transparent);
  text-align: center;
}

.home-popup-event-date span,
.home-popup-event-date strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
}

.home-popup-event-date span {
  font-size: 21px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-popup-event-date strong {
  margin-top: 9px;
  color: var(--cream);
  font-size: 48px;
}

.home-popup-event-body {
  min-width: 0;
  padding: 24px clamp(22px, 4vw, 38px);
}

.home-popup-event-type {
  display: inline-flex;
  padding: 5px 10px;
  border: 1px solid color-mix(in srgb, var(--popup-event-accent) 58%, transparent);
  color: var(--popup-event-accent);
  background: color-mix(in srgb, var(--popup-event-accent) 8%, transparent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-popup-event-card h3 {
  margin-top: 12px;
  color: var(--cream);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.home-popup-event-fulldate {
  margin-top: 9px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-popup-event-desc {
  max-width: 620px;
  margin-top: 14px;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.5;
}

.home-popup-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(244, 237, 224, 0.14);
}

.home-popup-event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-popup-event-meta span:last-child::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--popup-event-accent);
}

.home-popup-event-meta svg {
  width: 18px;
  height: 18px;
  color: var(--popup-event-accent);
}

.home-popup-event-meta circle,
.home-popup-event-meta path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.home-popup-events-link {
  width: max-content;
  margin: 28px auto 0;
}

@media (max-width: 620px) {
  .home-popup {
    padding: 10px;
  }

  .home-popup-panel,
  .home-popup[data-popup-mode="events"] .home-popup-panel {
    width: min(100%, calc(100vw - 20px));
    max-height: calc(100svh - 20px);
  }

  .home-popup-close {
    top: 9px;
    right: 9px;
    width: 42px;
    height: 42px;
  }

  .home-popup-events {
    padding: 68px 16px 24px;
  }

  .home-popup-events-head {
    padding: 0 12px;
  }

  .home-popup-events-head h2 {
    font-size: 36px;
  }

  .home-popup-event-card {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .home-popup-event-date {
    padding: 18px 8px;
  }

  .home-popup-event-date span {
    font-size: 15px;
  }

  .home-popup-event-date strong {
    font-size: 34px;
  }

  .home-popup-event-body {
    padding: 20px 16px;
  }

  .home-popup-event-card h3 {
    font-size: 27px;
  }

  .home-popup-event-desc {
    font-size: 16px;
  }

  .home-popup-events-link {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-popup,
  .home-popup-panel {
    transition: none;
  }
}

/* ======================================================
   PARCHMENT MENU CARD
   ====================================================== */
.pub-menu-showcase {
  min-height: 100vh;
  padding: clamp(26px, 3.2vw, 40px) var(--gutter) 84px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E"),
    radial-gradient(1100px 900px at 50% 22%, #fbf4e2 0%, #f4ead0 46%, #e7d6ad 100%);
  background-blend-mode: multiply, normal;
}

.page-hero[data-bg="menu-photo"]::before {
  background-image: url("img/menu-hero-optimized.jpg");
  background-position: center 25%;
}

.page-hero[data-bg="menu-photo"]::after {
  background:
    linear-gradient(rgba(7, 27, 18, 0.22), rgba(7, 27, 18, 0.22)),
    linear-gradient(180deg, rgba(14, 22, 18, 0.36), rgba(14, 22, 18, 0.84));
}

.menu-page-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-page-hero-logo {
  width: min(54%, 520px);
  max-height: 120px;
  height: auto;
  margin: 16px auto 0;
  object-fit: contain;
  filter: drop-shadow(0 7px 18px rgba(0, 0, 0, 0.62));
}

.menu-page-hero .section-label,
.menu-page-hero p:not(.section-label) {
  margin-top: 0;
  margin-bottom: 0;
}

.pub-menu-mount {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.pub-menu-mount noscript {
  display: block;
  padding: 24px;
  color: var(--cream);
  text-align: center;
}

.pub-menu-sheet {
  --pub-parch: #f4ead0;
  --pub-parch-hi: #fbf4e2;
  --pub-parch-lo: #e7d6ad;
  --pub-green: #163f2a;
  --pub-green-2: #0f3220;
  --pub-green-deep: #0a2417;
  --pub-gold: #b98a3c;
  --pub-gold-soft: #cdab66;
  --pub-ink: #23302a;
  --pub-ink-soft: #5a5546;
  position: relative;
  overflow: visible;
  padding: 0 clamp(18px, 4vw, 52px) clamp(30px, 4vw, 48px);
  border: 0;
  border-radius: 0;
  color: var(--pub-ink);
  background: transparent;
  box-shadow: none;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.pub-menu-sheet::before,
.pub-menu-sheet::after {
  display: none;
}

.pub-menu-sheet > * {
  position: relative;
  z-index: 1;
}

.pub-menu-corner {
  display: none;
}

.pub-menu-corner svg {
  width: 100%;
  height: 100%;
}

.pub-menu-corner-tl {
  top: 6px;
  left: 6px;
}

.pub-menu-corner-tr {
  top: 6px;
  right: 6px;
  transform: scaleX(-1);
}

.pub-menu-corner-bl {
  bottom: 6px;
  left: 6px;
  transform: scaleY(-1);
}

.pub-menu-corner-br {
  right: 6px;
  bottom: 6px;
  transform: scale(-1);
}

.pub-menu-card-head {
  padding: clamp(6px, 1.5vw, 18px) 0 clamp(10px, 2vw, 22px);
  text-align: center;
}

.pub-menu-flourish {
  display: inline-block;
  width: min(360px, 70%);
  height: 22px;
  color: var(--pub-gold);
}

.pub-menu-flourish.is-flipped {
  transform: scaleY(-1);
}

.pub-menu-foot-name,
.pub-menu-contact {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pub-menu-logo-frame {
  width: min(72%, 560px);
  aspect-ratio: 1596 / 363;
  margin: 0 auto;
  overflow: hidden;
}

.pub-menu-logo {
  width: 125.32%;
  max-width: none;
  transform: translate(-9.7%, -40.7%);
}

.pub-menu-shamrock {
  width: clamp(26px, 5vw, 46px);
  height: auto;
}

.pub-menu-blurb {
  color: var(--pub-ink-soft);
  font-style: italic;
  font-weight: 500;
}

.pub-menu-nav-shell {
  position: sticky;
  top: 139px;
  z-index: 8;
  width: 100%;
  overflow-x: auto;
  border-bottom: 1px solid var(--gold);
  background: var(--green-deep);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  scrollbar-width: none;
}

.pub-menu-nav-shell::-webkit-scrollbar {
  display: none;
}

.pub-menu-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.pub-menu-nav button {
  min-height: 66px;
  padding: 0.7em 1em;
  border: 0;
  border-right: 1px solid rgba(244, 237, 224, 0.16);
  border-radius: 0;
  color: #f6efda;
  background: transparent;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.76rem, 1.25vw, 0.94rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.82;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease), opacity 200ms var(--ease);
  white-space: nowrap;
}

.pub-menu-nav button:first-child {
  border-left: 1px solid rgba(244, 237, 224, 0.16);
}

.pub-menu-nav button:hover {
  background: rgba(255, 255, 255, 0.07);
  opacity: 1;
}

.pub-menu-nav button[aria-selected="true"] {
  color: var(--green-deep);
  background: var(--gold);
  box-shadow: inset 0 -4px 0 var(--gold-bright);
  opacity: 1;
}

.pub-menu-screen {
  animation: pub-menu-panel-in 320ms var(--ease) both;
}

.pub-menu-screen[hidden] {
  display: none;
}

@keyframes pub-menu-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pub-menu-blurb {
  margin: 0 0 clamp(14px, 2.4vw, 26px);
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  text-align: center;
}

.pub-menu-cols {
  column-count: 2;
  column-gap: clamp(36px, 5vw, 70px);
}

.pub-menu-screen[data-pub-menu-panel="latenight"] .pub-menu-cols,
.pub-menu-screen[data-pub-menu-panel="happyhour"] .pub-menu-cols {
  width: min(100%, 860px);
  margin-inline: auto;
  column-count: 1;
}

.pub-menu-screen[data-pub-menu-panel="happyhour"] .pub-menu-cols {
  width: min(100%, 620px);
  text-align: center;
}

.pub-menu-screen[data-pub-menu-panel="happyhour"] .pub-menu-prose-item p {
  margin-inline: auto;
}

.pub-menu-section,
.pub-menu-panel {
  break-inside: avoid;
  margin-bottom: clamp(20px, 2.8vw, 30px);
}

.pub-menu-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  margin-bottom: 0.85em;
  padding: 0.5em 2em;
  border-radius: 7px;
  color: #f6efda;
  background: linear-gradient(180deg, var(--pub-green), var(--pub-green-2));
  box-shadow: inset 0 0 0 1px var(--pub-gold), inset 0 0 0 4px var(--pub-green), 0 3px 8px -4px rgba(0, 0, 0, 0.4);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.02rem, 1.8vw, 1.32rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.15;
  text-align: center;
}

.pub-menu-diamond {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  color: var(--pub-gold-soft);
}

.pub-menu-item {
  margin-bottom: 0.75em;
}

.pub-menu-item-head {
  display: flex;
  gap: 0.4em;
  align-items: baseline;
}

.pub-menu-item-head i,
.pub-menu-specials li > i {
  flex: 1 1 0;
  min-width: 10px;
  height: 0;
  align-self: flex-end;
  border-bottom: 2px dotted var(--pub-gold);
  opacity: 0.85;
  transform: translateY(-0.32em);
}

.pub-menu-item-name,
.pub-menu-prose-item strong {
  color: var(--pub-green-2);
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(0.96rem, 2.3vw, 1.07rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pub-menu-item-name em {
  display: block;
  color: var(--pub-ink-soft);
  font-size: 0.86em;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.pub-menu-price {
  flex: 0 0 auto;
  color: var(--pub-green-2);
  font-size: clamp(0.96rem, 2.3vw, 1.07rem);
  font-weight: 700;
  white-space: nowrap;
}

.pub-menu-price span {
  color: var(--pub-gold);
}

.pub-menu-item p,
.pub-menu-note,
.pub-menu-panel p,
.pub-menu-legal {
  color: var(--pub-ink-soft);
  font-weight: 500;
}

.pub-menu-item p {
  max-width: 46em;
  margin-top: 0.16em;
  font-size: clamp(0.86rem, 2.1vw, 0.97rem);
  line-height: 1.4;
}

.pub-menu-drink-detail {
  max-width: 38em;
}

.pub-menu-prose-item {
  margin-bottom: 1.1em;
}

.pub-menu-subitems {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55em 0.7em;
  max-width: 36em;
  margin: 0.65em auto 0;
  padding: 0;
  list-style: none;
}

.pub-menu-subitems li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2em;
  padding: 0.55em 0.8em;
  border: 1px solid rgba(120, 90, 30, 0.3);
  border-radius: 5px;
  color: var(--pub-green-2);
  background: rgba(255, 255, 255, 0.28);
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(0.92rem, 2vw, 1.02rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.pub-menu-name-list {
  column-count: 2;
  column-gap: 1.6em;
}

.pub-menu-name-list li,
.pub-menu-name-grid li {
  break-inside: avoid;
  padding: 0.2em 0;
  border-bottom: 1px dotted rgba(120, 90, 30, 0.32);
  color: var(--pub-green-2);
  font-weight: 600;
}

.pub-menu-name-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.35em 1.4em;
}

.pub-menu-name-grid li {
  font-size: 0.92em;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pub-menu-note {
  margin-top: 0.7em;
  padding-top: 0.55em;
  border-top: 1px solid rgba(120, 90, 30, 0.28);
  font-size: 0.86em;
  font-style: italic;
  line-height: 1.45;
}

.pub-menu-panel {
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.4vw, 24px) clamp(16px, 2vw, 20px);
  border-radius: 9px;
  color: #f6efda;
  background: linear-gradient(180deg, var(--pub-green), var(--pub-green-2));
  box-shadow: inset 0 0 0 1px var(--pub-gold), inset 0 0 0 5px var(--pub-green), 0 8px 22px -12px rgba(0, 0, 0, 0.6);
}

.pub-menu-panel h2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7em;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.7em;
  color: #f6efda;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-align: center;
}

.pub-menu-panel h2 em {
  color: var(--pub-gold-soft);
  font-size: 0.75em;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.pub-menu-panel p {
  margin-top: 0.8em;
  color: var(--pub-gold-soft);
  font-size: 0.84em;
  font-style: italic;
  text-align: center;
}

.pub-menu-wee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.35em 1em;
  text-align: center;
}

.pub-menu-wee-grid li {
  padding: 0.32em 0.3em;
  border-bottom: 1px solid rgba(205, 171, 102, 0.28);
  font-size: 0.92em;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pub-menu-specials li {
  display: flex;
  gap: 0.6em;
  align-items: center;
  padding: 0.42em 0;
  border-bottom: 1px solid rgba(205, 171, 102, 0.22);
}

.pub-menu-special-day {
  flex: 0 0 auto;
  width: 3.1em;
  padding: 0.32em 0;
  border-radius: 4px;
  color: var(--pub-green-deep);
  background: linear-gradient(180deg, #e9cf86, var(--pub-gold));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.pub-menu-specials strong {
  flex: 0 1 auto;
  font-size: 0.95em;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-transform: uppercase;
}

.pub-menu-specials strong em {
  color: var(--pub-gold-soft);
  font-size: 0.88em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.pub-menu-specials b {
  flex: 0 0 auto;
  color: var(--pub-gold-soft);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.9em;
  font-weight: 600;
}

.pub-menu-card-foot {
  padding-top: clamp(14px, 2vw, 20px);
  margin-top: clamp(18px, 3vw, 30px);
  border-top: 1px solid rgba(35, 48, 42, 0.2);
  text-align: center;
}

.pub-menu-card-foot .pub-menu-flourish {
  width: min(300px, 64%);
}

.pub-menu-foot-name {
  gap: 0.7em;
  margin: 0.5em 0 0.2em;
  color: var(--pub-green);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.85rem, 2.4vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.pub-menu-foot-name span {
  display: inline-flex;
  color: var(--pub-gold);
}

.pub-menu-foot-name .pub-menu-shamrock {
  width: 20px;
}

.pub-menu-contact {
  gap: 0.6em;
  margin: 0.2em 0 0.8em;
  color: var(--pub-green-2);
  font-size: 0.95rem;
  font-weight: 600;
}

.pub-menu-contact a {
  border-bottom: 1px solid var(--pub-gold);
}

.pub-menu-contact i {
  color: var(--pub-gold);
  font-style: normal;
}

.pub-menu-legal {
  max-width: 54em;
  margin: 0 auto;
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .pub-menu-nav-shell {
    top: 94px;
  }
}

@media (max-width: 760px) {
  .pub-menu-showcase {
    padding: 22px 0 0;
  }

  .menu-page-hero-logo {
    width: min(72%, 360px);
    max-height: 82px;
    margin-top: 12px;
    margin-bottom: 0;
  }

  .pub-menu-sheet {
    padding: 0 16px 30px;
    font-size: 16.5px;
  }

  .pub-menu-logo-frame {
    width: min(82%, 360px);
  }

  .pub-menu-cols {
    column-count: 1;
  }

  .pub-menu-nav-shell {
    top: 78px;
  }

  .pub-menu-nav {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    width: max-content;
    min-width: 100%;
    padding: 0;
  }

  .pub-menu-nav button {
    min-height: 56px;
    font-size: 0.74rem;
  }

  .pub-menu-section-title {
    padding-right: 1em;
    padding-left: 1em;
  }

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

  .pub-menu-foot-name {
    letter-spacing: 0.08em;
  }

  .pub-menu-contact {
    flex-direction: column;
    gap: 0.2em;
  }

  .pub-menu-contact i {
    display: none;
  }
}

.mosaic-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(var(--mosaic-cols, 8), 1fr);
  grid-template-rows: repeat(var(--mosaic-rows, 6), 1fr);
  pointer-events: none;
  color: var(--gold);
  opacity: 0.5;
}

.mosaic-cell {
  position: relative;
  overflow: visible;
}

.mosaic-icon,
.mosaic-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72%;
  height: 72%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  will-change: transform, opacity;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-duration: var(--mosaic-d, 7s);
  animation-delay: var(--mosaic-del, 0s);
}

.mosaic-icon svg,
.mosaic-burst svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mosaic-icon {
  animation-name: mosaicAppear;
  z-index: 1;
}

.mosaic-burst {
  animation-name: mosaicBurst;
  animation-timing-function: ease-out;
  z-index: 2;
}

@keyframes mosaicAppear {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.65); }
  35%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  65%  { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
  70%  { opacity: 1; transform: translate(-50%, -50%) scale(0.92); }
  74%  { opacity: 0; transform: translate(-50%, -50%) scale(0.92); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.92); }
}

@keyframes mosaicBurst {
  0%, 72% { opacity: 0; transform: translate(-50%, -50%) scale(0.45); }
  76%     { opacity: 1; transform: translate(-50%, -50%) scale(0.7); }
  90%     { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
  100%    { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .mosaic-icon {
    animation: none;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  .mosaic-burst {
    display: none;
  }
}

.story-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.story-photo {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.story-copy {
  max-width: 620px;
}

.story-copy h2 {
  color: var(--ink);
  font-size: 56px;
}

.story-copy p:not(.section-label) {
  max-width: 540px;
  margin-top: 22px;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.62;
}

.story-copy .button {
  margin-top: 30px;
}

.section-label {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label.light {
  color: var(--gold-bright);
}

.section-label.dark {
  color: var(--green);
}

.video-section,
.drink-video {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 180vh;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: clip;
  isolation: isolate;
}

.sticky-media,
.drink-sticky {
  grid-area: 1 / 1;
  position: sticky;
  top: 0;
  height: 100svh;
  z-index: 0;
  display: block;
  padding: 0;
  pointer-events: none;
}

.video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--ink-2);
  border: 0;
}

.photo-sequence,
.photo-sequence img {
  position: absolute;
  inset: 0;
}

.photo-sequence {
  overflow: hidden;
}

.events-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1) contrast(1.08) brightness(0.78);
}

.photo-sequence img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.92) contrast(1.12) brightness(0.72);
  transform: translateX(9%) scale(1.04);
  animation: photo-pass 24s linear infinite;
  will-change: opacity, transform;
}

.photo-sequence img:nth-child(2) {
  animation-delay: 6s;
}

.photo-sequence img:nth-child(3) {
  animation-delay: 12s;
}

.photo-sequence img:nth-child(4) {
  animation-delay: 18s;
}

.video-frame::after,
.action-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14, 22, 18, 0.92), rgba(14, 22, 18, 0.34) 44%, rgba(14, 22, 18, 0.82)),
    linear-gradient(180deg, rgba(14, 22, 18, 0.52), transparent 34%, rgba(14, 22, 18, 0.9));
}

.pinned-copy,
.drink-copy {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  width: min(calc(100vw - var(--gutter) - var(--gutter)), var(--max));
  min-height: 180vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 0;
  color: var(--cream);
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.38);
}

.pinned-copy {
  align-items: center;
  text-align: center;
}

.pinned-copy > *,
.drink-copy > * {
  width: min(100%, 620px);
}

.drink-copy {
  align-items: center;
  text-align: center;
}

.pinned-copy h2,
.drink-copy h2 {
  max-width: 620px;
}

.pinned-copy p:not(.section-label),
.drink-copy > p:not(.section-label) {
  max-width: 540px;
  margin-top: 22px;
  color: rgba(244, 237, 224, 0.84);
  font-size: 18px;
  line-height: 1.64;
}

.pinned-copy .button,
.drink-copy .button {
  width: max-content;
  margin-top: 30px;
}

.pinned-copy .button,
.drink-copy .button {
  align-self: center;
}

.featured-menu {
  --mini-menu-parch: #f4ead0;
  --mini-menu-parch-hi: #fbf4e2;
  --mini-menu-parch-lo: #e7d6ad;
  --mini-menu-green: #163f2a;
  --mini-menu-green-2: #0f3220;
  --mini-menu-green-deep: #0a2417;
  --mini-menu-gold: #b98a3c;
  --mini-menu-gold-soft: #cdab66;
  --mini-menu-ink: #23302a;
  --mini-menu-ink-soft: #5a5546;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(1100px 900px at 45% 22%, #123a28 0%, var(--green-deep) 72%);
  box-shadow:
    inset 0 0 0 1px rgba(230, 197, 129, 0.34),
    inset 0 0 110px rgba(0, 0, 0, 0.2);
}

.featured-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(0deg, rgba(82, 63, 27, 0.16) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(82, 63, 27, 0.09) 0 1px, transparent 1px 7px);
  mix-blend-mode: multiply;
}

.featured-menu > * {
  position: relative;
  z-index: 1;
}

.featured-left {
  padding: 78px clamp(32px, 5vw, 72px);
}

.featured-box {
  max-width: 600px;
  margin: 0;
}

.featured-heading {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(230, 197, 129, 0.28);
}

.featured-heading .section-label {
  color: var(--mini-menu-gold-soft);
}

.featured-heading h2 {
  color: var(--cream);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(42px, 4.4vw, 68px);
  letter-spacing: 0.01em;
  line-height: 0.96;
}

.menu-list {
  position: relative;
  margin-top: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.menu-list::before,
.menu-list::after {
  display: none;
}

.menu-list::before {
  top: 6px;
  left: 6px;
  border-top: 2px solid var(--mini-menu-gold);
  border-left: 2px solid var(--mini-menu-gold);
}

.menu-list::after {
  right: 6px;
  bottom: 6px;
  border-right: 2px solid var(--mini-menu-gold);
  border-bottom: 2px solid var(--mini-menu-gold);
}

.featured-menu-banner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 8px;
  padding: 14px 16px;
  border-radius: 4px;
  color: #f6efda;
  background: linear-gradient(180deg, var(--mini-menu-green), var(--mini-menu-green-2));
  box-shadow:
    inset 0 0 0 1px var(--mini-menu-gold),
    inset 0 0 0 4px var(--mini-menu-green),
    0 3px 8px -4px rgba(0, 0, 0, 0.4);
  font-family: "Cinzel", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.15;
  text-align: center;
}

.menu-list article {
  position: relative;
  display: block;
  padding: 24px 8px;
  margin: 0 -8px;
  border-bottom: 1px solid rgba(230, 197, 129, 0.24);
  cursor: pointer;
  transform: scale(1);
  transform-origin: center;
  transition: transform 260ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
  will-change: transform;
  z-index: 0;
}

.menu-list article.is-active {
  background: rgba(244, 237, 224, 0.08);
  box-shadow: inset 3px 0 0 var(--mini-menu-gold);
}

.menu-list article:hover,
.menu-list article:focus-visible {
  z-index: 2;
  background: rgba(244, 237, 224, 0.13);
  box-shadow:
    inset 3px 0 0 var(--mini-menu-gold),
    0 18px 38px rgba(14, 22, 18, 0.16);
  transform: scale(1.035);
}

.menu-list article:focus-visible {
  outline: 2px solid var(--mini-menu-gold);
  outline-offset: 3px;
}

.menu-list article:last-child {
  border-bottom: 0;
}

/* Inline dish photo: only used on mobile (slides open under the name when selected) */
.menu-item-photo {
  display: none;
}

.featured-menu-item-head {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.featured-menu-item-head h3 {
  flex: 0 1 auto;
  color: var(--cream);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.1;
}

.featured-menu-item-head i {
  flex: 1 1 0;
  min-width: 10px;
  height: 0;
  align-self: flex-end;
  border-bottom: 2px dotted var(--mini-menu-gold);
  opacity: 0.85;
  transform: translateY(-0.32em);
}

.menu-list p,
.featured-sticky p,
.visit-copy p,
.visit-card dd {
  color: var(--muted-dark);
}

.menu-list p {
  margin-top: 8px;
  color: rgba(244, 237, 224, 0.76);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.32;
}

.featured-menu-item-head strong {
  flex: 0 0 auto;
  color: var(--mini-menu-gold-soft);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.featured-box > .button {
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: fit-content;
  border-color: var(--mini-menu-gold);
  background: rgba(201, 165, 92, 0.14);
}

.featured-right {
  position: relative;
  min-height: 120vh;
  padding: 96px var(--gutter);
  color: #f6efda;
  border-left: 1px solid rgba(120, 90, 30, 0.34);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--green-deep);
}

.featured-right-bg,
.featured-right-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.featured-right-bg {
  z-index: -2;
  overflow: hidden;
  opacity: 0.16;
  mix-blend-mode: multiply;
}

.featured-right-bg .photo-sequence {
  position: absolute;
  inset: 0;
}

.featured-right-bg .photo-sequence img {
  filter: saturate(0.62) contrast(0.96) sepia(0.24);
}

.featured-right-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 27, 18, 0.38), rgba(7, 27, 18, 0.82));
}

.featured-hero {
  position: relative;
  margin: 0;
  width: 100%;
  height: 520px;
  border: 8px solid var(--mini-menu-green-deep);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 2px var(--mini-menu-gold),
    0 18px 36px rgba(55, 43, 18, 0.22);
}

.featured-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05);
  transform: scale(1);
  opacity: 1;
  transition: opacity 180ms var(--ease), transform 420ms var(--ease), filter 420ms var(--ease);
  will-change: opacity, transform;
}

.featured-hero.is-changing img {
  opacity: 0.32;
  transform: scale(1.035);
  filter: saturate(0.84) contrast(1.08);
}

.featured-right .featured-sticky h3 {
  color: #f6efda;
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.04em;
}

.featured-right .featured-sticky p:not(.section-label) {
  color: rgba(246, 239, 218, 0.82);
}

.featured-right .featured-sticky img {
  border-color: var(--line);
}

.featured-right > .mosaic-bg {
  color: var(--gold-bright);
  opacity: 0.28;
}

.featured-sticky {
  display: grid;
  gap: 24px;
}

.featured-sticky > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  filter: saturate(0.92) contrast(1.03);
}

.featured-blurb {
  padding: 24px 28px;
  background: linear-gradient(180deg, var(--mini-menu-green), var(--mini-menu-green-2));
  border: 1px solid var(--mini-menu-gold);
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 4px var(--mini-menu-green),
    0 12px 24px rgba(55, 43, 18, 0.16);
  text-align: center;
}

.featured-blurb .section-label {
  margin-bottom: 14px;
}

.featured-blurb h3 {
  margin: 0 auto;
}

.featured-blurb p:not(.section-label) {
  margin: 12px auto 0;
}

.featured-sticky h3 {
  max-width: 480px;
  color: #f6efda;
  font-size: 30px;
}

.featured-sticky p:not(.section-label) {
  max-width: 520px;
  margin-top: 12px;
  font-size: 17px;
}

.split-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.action-panel {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  border-right: 1px solid var(--gold);
}

.action-panel:last-child {
  border-right: 0;
}

.action-panel img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08) brightness(0.72);
}

.action-panel > div {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 520px);
  text-align: center;
}

.action-panel h2 {
  color: var(--cream);
  font-size: 44px;
}

.action-panel p:not(.section-label) {
  max-width: 430px;
  margin: 14px auto 0;
  color: var(--muted-strong);
}

.events-toolbar {
  width: min(100%, 500px);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(230, 197, 129, 0.42);
  background: rgba(14, 22, 18, 0.48);
  backdrop-filter: blur(14px);
}

.events-filter {
  min-height: 32px;
  border: 0;
  border-radius: 0;
  color: rgba(244, 237, 224, 0.78);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.events-filter:hover,
.events-filter.is-active {
  color: var(--ink);
  background: var(--gold);
}

.events-table-shell {
  width: min(100%, 500px);
  margin: 10px auto 0;
  overflow-x: auto;
  border: 1px solid rgba(230, 197, 129, 0.52);
  background: rgba(14, 22, 18, 0.6);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.events-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  color: var(--cream);
  text-align: left;
}

.events-table th {
  padding: 8px 10px;
  color: var(--gold-bright);
  background: rgba(201, 165, 92, 0.12);
  border-bottom: 1px solid rgba(244, 237, 224, 0.24);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.events-table td {
  padding: 9px 10px;
  border-bottom: 1px solid rgba(244, 237, 224, 0.16);
  vertical-align: middle;
}

.events-table tbody tr {
  cursor: pointer;
  transition: background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.events-table tbody tr:last-child td {
  border-bottom: 0;
}

.events-table tbody tr:hover,
.events-table tbody tr.is-selected {
  background: rgba(201, 165, 92, 0.17);
}

.events-table tbody tr.is-selected {
  box-shadow: inset 3px 0 0 var(--gold);
}

.events-table tbody tr[hidden] {
  display: none;
}

.events-table td:first-child {
  width: 92px;
}

.events-table strong,
.events-table td > span {
  display: block;
}

.event-day {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-date {
  color: var(--cream);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.events-table td:nth-child(2) span {
  margin-top: 3px;
  color: rgba(244, 237, 224, 0.66);
  font-size: 10px;
  font-weight: 700;
}

.events-table strong {
  color: var(--cream);
  font-size: 12px;
  text-transform: uppercase;
}

.event-time {
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.event-type {
  width: max-content;
  min-width: 66px;
  padding: 6px 9px;
  border: 1px solid rgba(230, 197, 129, 0.5);
  color: var(--gold-bright);
  background: rgba(244, 237, 224, 0.07);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.action-panel p.event-status {
  min-height: 20px;
  margin-top: 8px;
  color: rgba(244, 237, 224, 0.74);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.action-panel .button {
  margin-top: 18px;
}

.drink-video {
  min-height: 150vh;
}

.drink-frame::after {
  background:
    linear-gradient(90deg, rgba(14, 22, 18, 0.86), rgba(14, 22, 18, 0.38) 45%, rgba(14, 22, 18, 0.7)),
    linear-gradient(180deg, rgba(14, 22, 18, 0.46), transparent 32%, rgba(14, 22, 18, 0.88));
}

.weekly-video .drink-copy > * {
  width: min(100%, 940px);
}

.weekly-video .drink-copy h2 {
  max-width: 820px;
  font-size: 54px;
}

.weekly-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(244, 237, 224, 0.22);
  background: rgba(244, 237, 224, 0.22);
  text-align: center;
}

.weekly-grid article {
  min-height: 178px;
  padding: 22px 14px;
  background: rgba(14, 22, 18, 0.62);
}

.weekly-grid span {
  display: inline-block;
  color: var(--gold-bright);
  background: transparent;
  font-family: "Permanent Marker", "Caveat", cursive;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  letter-spacing: 1px;
  transform: rotate(-3deg);
  transform-origin: left center;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.35);
}

.weekly-grid article:nth-child(2n) span { transform: rotate(2deg); }
.weekly-grid article:nth-child(3n) span { transform: rotate(-1deg); }
.weekly-grid article:nth-child(5n) span { transform: rotate(4deg); }
.weekly-grid article:nth-child(7n) span { transform: rotate(-2deg); }

.weekly-grid h3 {
  margin-top: 18px;
  color: var(--cream);
  font-size: 18px;
}

.weekly-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.drink-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.drink-icons article {
  min-height: 168px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
}

.drink-icons article:last-child {
  border-right: 0;
}

.drink-icons svg {
  width: 38px;
  height: 38px;
  margin: 0 auto;
  color: var(--gold-bright);
  stroke-width: 1.7;
}

.drink-icons h3 {
  margin-top: 18px;
  color: var(--cream);
  font-size: 17px;
}

.drink-icons p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.brunch-banner {
  padding: 58px var(--gutter);
  background: var(--gold);
  color: var(--ink);
  border-top: 1px solid rgba(14, 22, 18, 0.16);
  border-bottom: 1px solid rgba(14, 22, 18, 0.16);
}

.brunch-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.brunch-mark {
  width: clamp(82px, 8vw, 116px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brunch-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.brunch-banner .section-label {
  color: var(--ink);
}

.brunch-banner h2 {
  color: var(--ink);
  font-size: 42px;
}

.brunch-banner p:not(.section-label) {
  max-width: 720px;
  margin-top: 10px;
  color: rgba(14, 22, 18, 0.72);
  font-size: 17px;
}

.brunch-banner .button {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.brunch-banner .button:hover {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.reviews {
  padding: 84px 0 72px;
  background: var(--green-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.reviews-head {
  width: min(calc(100vw - var(--gutter) - var(--gutter)), var(--max));
  margin: 0 auto 38px;
  text-align: center;
}

.reviews-head h2 {
  max-width: 980px;
  margin: 0 auto;
  color: var(--cream);
  font-size: 52px;
}

.review-track {
  display: flex;
  gap: 12px;
  overflow: hidden;
}

.review-lane {
  min-width: max-content;
  display: flex;
  gap: 12px;
  animation: review-marquee 44s linear infinite;
}

.review-card {
  width: min(80vw, 410px);
  min-height: 228px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(244, 237, 224, 0.045);
}

.review-card span {
  color: var(--gold-bright);
  letter-spacing: 0;
}

.review-card p {
  margin-top: 20px;
  color: var(--cream);
  font-size: 18px;
  line-height: 1.45;
}

.review-card strong {
  margin-top: 22px;
  color: var(--gold-bright);
  font-size: 14px;
}

@keyframes review-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 12px));
  }
}

@keyframes photo-pass {
  0% {
    opacity: 0;
    transform: translateX(9%) scale(1.04);
  }
  7%,
  25% {
    opacity: 1;
  }
  32% {
    opacity: 0;
    transform: translateX(-9%) scale(1.04);
  }
  100% {
    opacity: 0;
    transform: translateX(-9%) scale(1.04);
  }
}

.visit {
  padding: 82px var(--gutter);
  background: var(--ink-2);
}

.visit .visit-card {
  position: relative;
  width: min(100%, 880px);
  padding: clamp(24px, 3vw, 38px);
  border-color: rgba(230, 197, 129, 0.64);
  background: linear-gradient(180deg, rgba(47, 107, 74, 0.74), rgba(22, 63, 42, 0.78));
  box-shadow:
    inset 0 0 0 1px rgba(205, 171, 102, 0.78),
    inset 0 0 0 6px rgba(22, 63, 42, 0.38),
    0 22px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-align: center;
}

.visit .visit-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(230, 197, 129, 0.42);
  pointer-events: none;
}

.visit-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 22px);
  padding: 4px 12px 22px;
  border-bottom: 1px solid rgba(205, 171, 102, 0.5);
}

.visit-card-head h3 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 24px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-card-head span {
  color: var(--gold-bright);
  font-size: 9px;
}

.visit-card dl {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visit .visit-card dl div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 24px clamp(16px, 3vw, 36px);
  border-right: 1px solid rgba(205, 171, 102, 0.28);
  border-bottom: 1px solid rgba(205, 171, 102, 0.28);
  text-align: center;
}

.visit .visit-card dl div:nth-child(even) {
  border-right: 0;
}

.visit .visit-card dl div:nth-child(n + 5) {
  border-bottom: 0;
}

.visit .map-card {
  border: 2px solid rgba(230, 197, 129, 0.9);
  box-shadow: inset 0 0 0 1px rgba(7, 27, 18, 0.68);
}

.visit-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  text-align: center;
}

.visit-copy {
  max-width: 640px;
}

.visit-copy h2 {
  margin: 0 auto;
  max-width: 560px;
  font-size: 48px;
}

.visit-copy p:not(.section-label) {
  margin: 18px auto 0;
  max-width: 460px;
}

.visit-copy .visit-actions {
  margin-top: 28px;
  justify-content: center;
}

.visit .visit-actions .button,
.visit .visit-actions .button-solid {
  color: var(--cream) !important;
  border: 1px solid var(--gold) !important;
  background: linear-gradient(180deg, #163f2a, #0f3220) !important;
  box-shadow:
    inset 0 0 0 1px rgba(230, 197, 129, 0.58),
    inset 0 0 0 4px #0a2417,
    0 9px 24px rgba(0, 0, 0, 0.24);
}

.visit .visit-actions .button:hover,
.visit .visit-actions .button:focus-visible,
.visit .visit-actions .button-solid:hover,
.visit .visit-actions .button-solid:focus-visible {
  color: var(--cream) !important;
  border-color: var(--gold-bright) !important;
  background: linear-gradient(180deg, #1e5036, #0f3220) !important;
  box-shadow:
    inset 0 0 0 1px var(--gold-bright),
    inset 0 0 0 4px #0a2417,
    0 11px 28px rgba(0, 0, 0, 0.32);
}

.visit-card {
  border: 1px solid var(--gold);
}

.visit-card dt {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.visit-card dd,
.visit-card dd a {
  color: var(--cream);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.45;
}

.visit-map-section {
  position: relative;
  left: 50%;
  z-index: 2;
  width: calc(100vw - clamp(24px, 3vw, 48px));
  margin: 64px auto 0;
  padding: clamp(9px, 1vw, 13px);
  border: 2px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(22, 63, 42, 0.9), rgba(7, 27, 18, 0.92)),
    var(--green-deep);
  box-shadow:
    inset 0 0 0 1px rgba(230, 197, 129, 0.76),
    inset 0 0 0 7px rgba(7, 27, 18, 0.88),
    0 28px 72px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

.visit-map-section::before {
  position: absolute;
  inset: 5px;
  z-index: 0;
  border: 1px solid rgba(230, 197, 129, 0.72);
  content: "";
  pointer-events: none;
}

.contact-map-section {
  margin-top: 0;
}

.map-card {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--gold);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: clamp(380px, 42vw, 520px);
  border: 0;
}

.footer {
  padding: 56px var(--gutter) 32px;
  background: var(--green-deep);
  border-top: 1px solid var(--gold);
}

.footer-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(130px, 1fr));
  gap: 0;
  overflow: hidden;
  border: 2px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(47, 107, 74, 0.3), rgba(7, 27, 18, 0.58)),
    rgba(14, 34, 25, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(230, 197, 129, 0.62),
    inset 0 0 0 7px rgba(7, 27, 18, 0.72),
    0 24px 60px rgba(0, 0, 0, 0.28);
}

.footer-grid > div {
  min-width: 0;
  min-height: 250px;
  padding: 42px clamp(24px, 3vw, 40px);
}

.footer-grid > div + div {
  border-left: 1px solid rgba(230, 197, 129, 0.28);
}

.footer-logo {
  width: min(100%, 206px);
}

.footer p {
  max-width: 360px;
  margin-top: 22px;
  color: var(--muted-strong);
  line-height: 1.55;
}

.footer h3 {
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(230, 197, 129, 0.34);
  color: var(--gold-bright);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-top: 12px;
  color: var(--muted-strong);
  font-size: 14px;
  transition:
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.footer a:hover {
  color: var(--gold-bright);
  transform: translateX(3px);
}

.footer-line {
  width: min(100%, var(--max));
  margin: -2px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px clamp(22px, 3vw, 38px);
  border: 2px solid var(--gold);
  background: rgba(7, 27, 18, 0.94);
  box-shadow:
    inset 0 0 0 1px rgba(230, 197, 129, 0.42),
    inset 0 0 0 6px rgba(22, 63, 42, 0.42),
    0 18px 44px rgba(0, 0, 0, 0.22);
  color: rgba(244, 237, 224, 0.72);
  font-size: 13px;
}

.footer .footer-staff-login {
  margin-left: auto;
  margin-top: 0;
  padding: 8px 16px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--cream);
  background: linear-gradient(180deg, #163f2a, #0f3220);
  box-shadow:
    inset 0 0 0 1px rgba(230, 197, 129, 0.34),
    inset 0 0 0 3px #0a2417;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.footer .footer-staff-login:hover {
  color: var(--cream);
  border-color: var(--gold-bright);
  background: linear-gradient(180deg, #1e5036, #0f3220);
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-letter-ready .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.52em);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.is-letter-ready .letter-word {
  display: inline-block;
  white-space: nowrap;
}

.is-letter-ready.is-visible .letter {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--letter-index) * 22ms);
}

@media (max-width: 1180px) {
  h1 {
    font-size: 78px;
  }

  h2 {
    font-size: 56px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .site-header.is-scrolled .header-inner {
    min-height: 94px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-rows: auto;
    padding: 8px 0;
  }

  .site-header.is-scrolled .brand {
    grid-column: 2;
    grid-row: 1;
  }

  .menu-button {
    grid-column: 3;
    grid-row: 1;
    display: inline-flex;
    justify-self: end;
  }

  .mobile-menu {
    position: fixed;
    inset: 94px var(--gutter) auto;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(7, 27, 18, 0.98);
    backdrop-filter: blur(18px);
  }

  .site-header.is-open .mobile-menu {
    display: grid;
    gap: 2px;
  }

  .mobile-menu a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .video-section,
  .drink-video,
  .story-inner,
  .featured-menu,
  .split-actions,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: 760px;
  }

  .story-photo,
  .story-photo img {
    min-height: 360px;
  }

  .video-section,
  .drink-video {
    min-height: 160svh;
  }

  .sticky-media,
  .drink-sticky {
    position: sticky;
    height: 100svh;
    padding: 0;
  }

  .pinned-copy,
  .drink-copy {
    min-height: 160svh;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .featured-right {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(120, 90, 30, 0.34);
  }

  .featured-sticky {
    position: relative;
    top: auto;
  }

  .action-panel {
    border-right: 0;
    border-bottom: 1px solid var(--gold);
  }

  .action-panel:last-child {
    border-bottom: 0;
  }

  .drink-icons,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid > div {
    min-height: 220px;
  }

  .footer-grid > div:nth-child(3) {
    border-left: 0;
  }

  .footer-grid > div:nth-child(n + 3) {
    border-top: 1px solid rgba(230, 197, 129, 0.28);
  }

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

  .brunch-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .brunch-inner .button {
    grid-column: 2;
    justify-self: start;
  }

  .drink-icons article:nth-child(2) {
    border-right: 0;
  }

}

@media (max-width: 720px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 22px;
  }

  .header-inner {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    min-height: 84px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 12px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 84px;
  }

  .brand {
    width: 138px;
  }

  .menu-button {
    min-height: 42px;
    gap: 0;
    padding-left: 0;
  }

  .menu-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .menu-button i {
    width: 42px;
    height: 42px;
    border-left: 0;
  }

  .menu-button i::before {
    top: 13px;
  }

  .menu-button i::after {
    top: 22px;
  }

  .mobile-menu {
    top: 84px;
  }

  .hero-media {
    top: 0;
  }

  .hero-media img,
  .hero-media video {
    object-position: center top;
    transform: none;
  }

  .hero-content {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    padding-top: 132px;
    padding-bottom: 34px;
    gap: 44px;
  }

  .hero-title {
    margin-top: 0;
    text-align: center;
  }

  .hero-logo {
    width: 280px;
    margin-bottom: 22px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(34px, 10.8vw, 44px);
  }

  .hero-kicker {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
    line-height: 1.45;
  }

  .rating-card {
    margin-left: 0;
  }

  .hero-bottom {
    gap: 18px;
  }

  .hero-bottom p {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-ctas .button,
  .visit-actions .button {
    width: 100%;
  }

  .pinned-copy,
  .drink-copy,
  .story-compact,
  .featured-left,
  .featured-right,
  .brunch-banner,
  .visit,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .story-compact {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .story-inner {
    gap: 26px;
  }

  .story-photo,
  .story-photo img {
    min-height: 300px;
  }

  .story-copy h2,
  .weekly-video .drink-copy h2,
  .brunch-banner h2 {
    font-size: 36px;
  }

  .video-frame {
    height: 100%;
  }

  .featured-heading h2,
  .reviews-head h2,
  .visit-copy h2,
  .action-panel h2 {
    font-size: 36px;
  }

  .visit-map-section {
    width: calc(100vw - 20px);
    margin-top: 44px;
    padding: 8px;
  }

  .map-card iframe {
    height: 320px;
  }

  .featured-sticky img {
    height: 320px;
  }

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

  .visit .visit-card {
    padding: 24px 20px;
  }

  .visit-card-head {
    gap: 10px;
    padding: 4px 8px 18px;
  }

  .visit-card-head h3 {
    font-size: 16px;
    letter-spacing: 0.08em;
  }

  .visit-card dl {
    grid-template-columns: 1fr;
  }

  .visit .visit-card dl div,
  .visit .visit-card dl div:nth-child(even),
  .visit .visit-card dl div:nth-child(n + 5) {
    min-height: 108px;
    padding: 20px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(205, 171, 102, 0.28);
  }

  .visit .visit-card dl div:last-child {
    border-bottom: 0;
  }

  .menu-list strong {
    white-space: normal;
  }

  /* Mobile dishes enter like event cards, then reveal copy and photo in sequence. */
  .featured-right {
    display: none;
  }

  .menu-list article {
    --signature-entry-x: -28px;
    --signature-entry-rotation: -1.8deg;
    cursor: default;
    opacity: 0;
    transform:
      translate3d(var(--signature-entry-x), 58px, 0)
      rotate(var(--signature-entry-rotation))
      scale(0.94);
    transform-origin: center 22%;
    transition:
      opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 720ms cubic-bezier(0.34, 1.56, 0.64, 1),
      border-color 320ms var(--ease);
    transition-delay: calc(var(--signature-cascade-index) * 70ms);
    will-change: opacity, transform;
  }

  .menu-list article:nth-of-type(even) {
    --signature-entry-x: 28px;
    --signature-entry-rotation: 1.8deg;
  }

  .menu-list article.is-cascade-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }

  .menu-list article:hover,
  .menu-list article:focus-visible {
    background: transparent;
    box-shadow: none;
  }

  .menu-list article .featured-menu-copy {
    opacity: 0;
    transform: translateY(26px) scale(0.97);
    transition:
      opacity 500ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 680ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: calc((var(--signature-cascade-index) * 70ms) + 90ms);
    will-change: opacity, transform;
  }

  .menu-list article.is-cascade-visible .featured-menu-copy {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .menu-list article .menu-item-photo {
    display: block;
    width: 100%;
    height: clamp(220px, 72vw, 300px);
    object-fit: cover;
    border: 2px solid var(--mini-menu-green-deep);
    border-radius: 4px;
    margin-top: 16px;
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    filter: saturate(0.78) brightness(0.88);
    transform: translateY(34px) rotate(0.8deg) scale(0.96);
    transition:
      opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
      clip-path 820ms cubic-bezier(0.22, 1, 0.36, 1),
      filter 760ms var(--ease),
      transform 820ms cubic-bezier(0.34, 1.56, 0.64, 1),
      box-shadow 760ms var(--ease);
    transition-delay: calc((var(--signature-cascade-index) * 70ms) + 330ms);
    will-change: opacity, clip-path, filter, transform;
  }

  .menu-list article.is-cascade-visible .menu-item-photo {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: saturate(1) brightness(1);
    transform: translateY(0) rotate(0) scale(1);
    box-shadow: 0 18px 38px rgba(7, 27, 18, 0.28);
  }

  .drink-icons,
  .footer-grid,
  .weekly-grid {
    grid-template-columns: 1fr;
  }

  .weekly-grid article {
    min-height: auto;
  }

  .brunch-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brunch-mark {
    margin: 0 auto;
  }

  .brunch-inner .button {
    grid-column: auto;
    justify-self: stretch;
  }

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

  .events-table-shell {
    width: 100%;
    overflow-x: hidden;
  }

  .events-table {
    min-width: 0;
    table-layout: fixed;
  }

  .events-table th,
  .events-table td {
    padding: 8px 6px;
  }

  .events-table th {
    font-size: 9px;
  }

  .events-table td:first-child,
  .events-table th:first-child {
    width: 62px;
  }

  .events-table th:nth-child(3),
  .events-table td:nth-child(3) {
    width: 50px;
  }

  .events-table th:nth-child(4),
  .events-table td:nth-child(4) {
    width: 58px;
  }

  .event-day {
    font-size: 9px;
  }

  .event-date {
    font-size: 14px;
  }

  .events-table strong {
    font-size: 11px;
    line-height: 1.22;
  }

  .events-table td:nth-child(2) span {
    font-size: 9px;
    line-height: 1.25;
  }

  .event-time {
    font-size: 11px;
  }

  .event-type {
    width: 100%;
    min-width: 0;
    padding: 5px 2px;
    font-size: 8px;
  }

  .action-panel p.event-status {
    font-size: 10px;
  }

  .drink-icons article {
    min-height: auto;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .drink-icons article:last-child {
    border-bottom: 0;
  }

  .action-panel {
    min-height: 380px;
  }

  .reviews {
    padding-top: 62px;
  }

  .review-card {
    width: 320px;
  }

  .footer-line {
    flex-direction: column;
  }

  .footer,
  .footer-grid,
  .footer-line {
    text-align: center;
  }

  .footer {
    padding: 34px 14px 22px;
  }

  .footer-grid > div {
    min-height: 0;
    padding: 30px 22px;
    border-left: 0 !important;
  }

  .footer-grid > div + div {
    border-top: 1px solid rgba(230, 197, 129, 0.28);
  }

  .footer h3 {
    width: min(100%, 240px);
    margin-right: auto;
    margin-left: auto;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-line {
    align-items: center;
    gap: 12px;
    padding: 22px 18px;
  }

  .footer .footer-staff-login {
    margin-left: 0;
    margin-top: 6px;
  }
}

/* ======================================================
   SUBPAGE LAYOUTS
   ====================================================== */

.page-hero {
  --page-hero-header-offset: 132px;
  position: relative;
  height: clamp(520px, 56svh, 640px);
  min-height: 0;
  padding: 0 var(--gutter);
  background: var(--ink);
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
  isolation: isolate;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: saturate(0.82) contrast(1.08) brightness(0.6);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14, 22, 18, 0.4), rgba(14, 22, 18, 0.86));
}

.page-hero[data-bg="bar"]::before { background-image: url("assets/molloys/bar.jpg"); }
.page-hero[data-bg="bar-interior"]::before { background-image: url("assets/molloys/bar-interior.jpg"); }
.page-hero[data-bg="fireplace"]::before { background-image: url("assets/molloys/fireplace.jpg"); }
.page-hero[data-bg="liquor-wall"]::before { background-image: url("assets/molloys/liquor-wall.jpg"); }
.page-hero[data-bg="live-music"]::before { background-image: url("assets/molloys/live-music.jpg"); }
.page-hero[data-bg="darts"]::before { background-image: url("assets/molloys/darts.jpg"); }
.page-hero[data-bg="patio"]::before { background-image: url("assets/molloys/patio.jpg"); }
.page-hero[data-bg="front"]::before { background-image: url("assets/molloys/front.jpg"); }
.page-hero[data-bg="fish-chips"]::before { background-image: url("assets/molloys/fish-chips.jpg"); }
.page-hero[data-bg="menu-hero"]::before { background-image: url("assets/molloys/menu-hero.jpg"); }
.page-hero[data-bg="about-photo"]::before {
  background-image: url("img/about-hero-optimized.jpg");
  background-position: center;
}

.page-hero[data-bg="contact-photo"]::before {
  background-image: url("img/contact-hero-optimized-v2.jpg");
  background-position: center top;
  filter: saturate(1.08) contrast(1.06) brightness(0.72);
}

/* Menu hero: same green filter as the homepage videos */
.page-hero[data-bg="menu-hero"]::after {
  background:
    linear-gradient(rgba(22, 100, 58, 0.33), rgba(22, 100, 58, 0.33)),
    linear-gradient(180deg, rgba(14, 22, 18, 0.4), rgba(14, 22, 18, 0.86));
}
.page-hero[data-bg="salad"]::before { background-image: url("assets/molloys/salad.jpg"); }
.page-hero[data-bg="spring-rolls"]::before { background-image: url("assets/molloys/spring-rolls.jpg"); }

.page-hero-inner {
  width: min(100%, var(--max));
  height: calc(100% - var(--page-hero-header-offset));
  margin: var(--page-hero-header-offset) auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero h1 {
  max-width: 1100px;
  margin: 0 auto;
  color: var(--cream);
  font-size: clamp(44px, 5.4vw, 82px);
  line-height: 0.98;
  text-wrap: balance;
}

.page-hero .section-label {
  margin: 0 0 18px;
  color: var(--gold-bright);
}

.page-hero p {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .page-hero {
    --page-hero-header-offset: 94px;
  }
}

.menu-tabs {
  background: var(--ink);
  border-bottom: 1px solid var(--gold);
}

.menu-tabs-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.menu-tabs a {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  color: rgba(244, 237, 224, 0.78);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
}

.menu-tabs a:hover {
  color: var(--ink);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.menu-tabs a[aria-current="page"] {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.menu-body {
  padding: 90px var(--gutter);
  background: var(--cream);
  color: var(--ink);
}

.menu-body-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.menu-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  padding: 18px;
  border: 1px solid rgba(47, 107, 74, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.86), rgba(244, 237, 224, 0.5));
  box-shadow:
    inset 0 0 0 6px rgba(255, 250, 241, 0.62),
    0 14px 32px rgba(14, 22, 18, 0.06);
}

.menu-category-tabs button {
  position: relative;
  padding: 12px 22px;
  border: 1px solid rgba(14, 22, 18, 0.18);
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.menu-category-tabs button:hover {
  transform: translateY(-2px);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(201, 165, 92, 0.28);
}

.menu-category-tabs button[aria-selected="true"] {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream);
  box-shadow: inset 0 -3px 0 var(--gold), 0 8px 18px rgba(14, 22, 18, 0.14);
}

.menu-category-tabs button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.menu-category {
  margin-bottom: 64px;
  animation: menu-category-in 320ms var(--ease) both;
}

.menu-category[hidden] {
  display: none;
}

.menu-category:last-child {
  margin-bottom: 0;
}

@keyframes menu-category-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-category-head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 8px;
}

.menu-category-head h2 {
  color: var(--ink);
  font-size: 42px;
}

.menu-category-head .section-label {
  color: var(--green);
}

.menu-category-head p {
  margin-top: 10px;
  color: var(--muted-dark);
  font-size: 14px;
}

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

.menu-grid.one-col {
  grid-template-columns: minmax(0, 1fr);
}

.menu-grid article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 20px 16px;
  margin: 0 -16px;
  border-bottom: 1px solid var(--line-dark);
  transition: background 220ms var(--ease), box-shadow 220ms var(--ease), transform 260ms var(--ease);
  cursor: default;
}

.menu-grid article:hover {
  background: var(--paper);
  box-shadow:
    inset 3px 0 0 var(--gold),
    0 14px 30px rgba(14, 22, 18, 0.12);
  transform: translateX(4px);
}

.menu-grid article:hover h3 {
  color: var(--green);
}

.menu-grid h3 {
  color: var(--ink);
  font-size: 20px;
}

.menu-grid article p {
  margin-top: 6px;
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.menu-grid .price {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-note {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px dashed rgba(14, 22, 18, 0.28);
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.tag-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag-cluster span {
  padding: 8px 14px;
  border: 1px solid rgba(14, 22, 18, 0.22);
  background: rgba(14, 22, 18, 0.04);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.wine-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px 22px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: baseline;
}

.wine-row strong {
  color: var(--ink);
  font-size: 15px;
}

.wine-row em {
  color: var(--muted-dark);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
}

.wine-row .price {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.wine-row small {
  grid-column: 1 / -1;
  max-width: 52em;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.45;
}

.wine-special-note {
  margin-top: 24px;
  padding-top: 18px;
  color: var(--green-deep);
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: var(--text-body);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.content-body {
  padding: 96px var(--gutter);
  background: var(--ink);
  color: var(--cream);
}

.content-body.cream {
  background: var(--cream);
  color: var(--ink);
}

.content-inner {
  width: min(100%, 880px);
  margin: 0 auto;
}

.content-inner h2 {
  color: var(--cream);
  font-size: 48px;
  margin-bottom: 24px;
}

.content-body.cream h2 {
  color: var(--ink);
}

.content-inner p + p {
  margin-top: 18px;
}

.content-inner p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted-strong);
}

.content-body.cream .content-inner p {
  color: var(--muted-dark);
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.tile {
  padding: 28px 24px;
  border: 1px solid var(--gold);
  background: rgba(244, 237, 224, 0.04);
}

.content-body.cream .tile {
  background: rgba(14, 22, 18, 0.04);
  border-color: rgba(14, 22, 18, 0.28);
}

.tile h3 {
  color: var(--gold-bright);
  font-size: 22px;
  margin-bottom: 10px;
}

.content-body.cream .tile h3 {
  color: var(--green);
}

.tile p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.about-closing {
  margin-top: 36px;
  text-align: center;
}

.about-events-title {
  margin-top: 38px;
  color: var(--gold-bright);
  font-size: 24px;
}

.about-events-title + .tile-grid {
  margin-top: 22px;
}

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

.about-weekly-grid .tile:nth-child(4) {
  grid-column: 2;
}

.schedule-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 20px 24px;
  border: 1px solid var(--line);
  background: rgba(244, 237, 224, 0.04);
}

.schedule-row strong {
  color: var(--gold-bright);
  font-family: "Permanent Marker", cursive;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
}

.schedule-row h3 {
  color: var(--cream);
  font-size: 20px;
  text-transform: none;
}

.schedule-row p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.schedule-row em {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.form-shell {
  padding: 96px var(--gutter);
  background: var(--ink);
  color: var(--cream);
}

.form-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: stretch;
  justify-items: center;
}

.form-grid > .form-side,
.form-grid > form.molloys-form {
  width: 100%;
  max-width: 480px;
  height: 100%;
}

.contact-info-card {
  position: relative;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(230, 197, 129, 0.64);
  background: linear-gradient(180deg, rgba(47, 107, 74, 0.74), rgba(22, 63, 42, 0.78));
  box-shadow:
    inset 0 0 0 1px rgba(205, 171, 102, 0.78),
    inset 0 0 0 6px rgba(22, 63, 42, 0.38),
    0 22px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-align: center;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(230, 197, 129, 0.42);
  pointer-events: none;
}

.contact-info-card > * {
  position: relative;
  z-index: 1;
}

.contact-info-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 18px);
  padding: 2px 8px 20px;
  border-bottom: 1px solid rgba(205, 171, 102, 0.5);
}

.contact-info-head .section-label {
  margin: 0;
  color: var(--cream);
}

.contact-info-head span {
  color: var(--gold-bright);
  font-size: 9px;
}

.form-side h2 {
  color: var(--cream);
  font-size: 44px;
  margin-bottom: 18px;
}

.contact-info-card h2 {
  max-width: 390px;
  margin: 28px auto 16px;
  font-size: clamp(32px, 4vw, 42px);
  text-align: center;
}

.form-side > p {
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.55;
}

.contact-info-card > p {
  max-width: 390px;
  margin: 0 auto;
  text-align: center;
}

.form-side dl {
  margin-top: 32px;
}

.contact-info-card dl {
  margin-top: 28px;
  border-top: 1px solid rgba(205, 171, 102, 0.28);
}

.form-side dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info-card dl div {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 17px 12px;
  border-bottom-color: rgba(205, 171, 102, 0.28);
  text-align: center;
}

.form-side dl div:last-child {
  border-bottom: 0;
}

.form-side dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-info-card dt {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.11em;
}

.form-side dd,
.form-side dd a {
  color: var(--cream);
  font-size: 15px;
}

.contact-info-card dd,
.contact-info-card dd a {
  font-size: 16px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

form.molloys-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  border: 1px solid var(--gold);
  background: rgba(244, 237, 224, 0.03);
}

form.contact-form-card {
  position: relative;
  grid-template-rows: auto auto auto minmax(180px, 1fr) auto auto;
  padding: clamp(26px, 3vw, 38px);
  border-color: rgba(230, 197, 129, 0.64);
  background: linear-gradient(180deg, rgba(47, 107, 74, 0.74), rgba(22, 63, 42, 0.78));
  box-shadow:
    inset 0 0 0 1px rgba(205, 171, 102, 0.78),
    inset 0 0 0 6px rgba(22, 63, 42, 0.38),
    0 22px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

form.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(230, 197, 129, 0.42);
  pointer-events: none;
}

form.contact-form-card > * {
  position: relative;
  z-index: 1;
}

.contact-form-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 18px);
  padding: 2px 8px 20px;
  border-bottom: 1px solid rgba(205, 171, 102, 0.5);
}

.contact-form-head .section-label {
  margin: 0;
  color: var(--cream);
}

.contact-form-head span {
  color: var(--gold-bright);
  font-size: 9px;
}

form.molloys-form label {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

form.molloys-form input,
form.molloys-form textarea,
form.molloys-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 22, 18, 0.46);
  color: var(--cream);
  font-family: var(--font-main);
  font-weight: 700;
  outline: none;
  transition: border-color 200ms var(--ease);
}

form.molloys-form textarea {
  min-height: 140px;
  padding: 14px;
  resize: vertical;
}

form.contact-form-card textarea {
  height: 100%;
  min-height: 180px;
}

form.contact-form-card input,
form.contact-form-card textarea {
  border-color: rgba(230, 197, 129, 0.38);
  background: rgba(7, 27, 18, 0.54);
}

form.contact-form-card label {
  color: var(--gold-bright);
  letter-spacing: 0.1em;
}

form.molloys-form input:focus,
form.molloys-form textarea:focus,
form.molloys-form select:focus {
  border-color: var(--gold);
}

form.molloys-form input::placeholder,
form.molloys-form textarea::placeholder {
  color: rgba(244, 237, 224, 0.4);
}

form.molloys-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

form.molloys-form button {
  margin-top: 6px;
  justify-self: start;
}

form.contact-form-card button {
  width: 100%;
  justify-self: stretch;
}

.contact-form-card .form-status {
  margin: 0;
  text-align: center;
}

.form-status {
  min-height: 22px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 700;
}

.banner-strip {
  padding: 34px var(--gutter);
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  border-bottom: 1px solid rgba(14, 22, 18, 0.16);
}

.banner-strip strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.banner-strip span {
  display: block;
  margin-top: 6px;
  color: rgba(14, 22, 18, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--cream);
  color: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.about-split-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--green-deep);
  filter: saturate(0.92) contrast(1.05);
}

.about-carousel {
  isolation: isolate;
  pointer-events: none;
  user-select: none;
}

.about-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.015);
  transition:
    opacity 720ms var(--ease),
    transform 3s ease-out;
}

.about-carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1.035);
}

.about-split-copy {
  padding: 84px clamp(28px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-split-copy h2 {
  color: var(--ink);
  font-size: 48px;
}

.about-split-copy p {
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.65;
}

.tribute {
  padding: 70px var(--gutter);
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.tribute-inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.tribute h2 {
  color: var(--gold-bright);
  font-size: 36px;
  margin-bottom: 18px;
}

.tribute p {
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-split-media {
    min-height: min(125vw, 680px);
  }
}

@media (max-width: 900px) {
  .menu-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    gap: 36px;
  }
  .form-grid > .form-side,
  .form-grid > form.molloys-form {
    height: auto;
  }
  form.contact-form-card {
    grid-template-rows: auto;
  }
  .schedule-row {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: left;
  }
  .wine-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .wine-row em {
    grid-column: 1 / -1;
    margin-top: -6px;
  }
}

@media (max-width: 720px) {
  .page-hero {
    --page-hero-header-offset: 84px;
    height: clamp(410px, 52svh, 480px);
    min-height: 0;
    padding: 0 18px;
  }
  .page-hero::before,
  .page-hero::after {
    top: var(--page-hero-header-offset);
  }
  .page-hero[data-bg]::before {
    background-position: center top;
  }
  .page-hero h1 {
    font-size: clamp(32px, 8.2vw, 46px);
    line-height: 1;
  }
  .page-hero .section-label {
    margin: 0 0 14px;
  }
  .page-hero p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.45;
  }
  .menu-page-hero .section-label,
  .menu-page-hero p:not(.section-label) {
    margin-top: 0;
    margin-bottom: 0;
  }
  .menu-body,
  .content-body,
  .form-shell,
  .about-split-copy,
  .tribute {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .menu-category-head h2,
  .form-side h2,
  .about-split-copy h2,
  .content-inner h2 {
    font-size: 34px;
  }
  form.molloys-form .form-row {
    grid-template-columns: 1fr;
  }
  form.molloys-form {
    padding: 22px;
  }
  .form-side dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .menu-tabs-inner {
    padding: 16px 12px;
  }
  .menu-tabs a {
    padding: 0 12px;
    font-size: 11px;
  }
  .about-weekly-grid {
    grid-template-columns: 1fr;
  }
  .about-weekly-grid .tile:nth-child(4) {
    grid-column: auto;
  }
}

/* ======================================================
   EVENTS PINNED (homepage long-scroll cards over sticky bg)
   ====================================================== */
.events-pinned {
  min-height: 260vh;
}

.events-pinned .drink-frame::after {
  background:
    linear-gradient(rgba(22, 100, 58, 0.16), rgba(22, 100, 58, 0.16)),
    linear-gradient(90deg, rgba(14, 22, 18, 0.88), rgba(14, 22, 18, 0.4) 50%, rgba(14, 22, 18, 0.78)),
    linear-gradient(180deg, rgba(14, 22, 18, 0.5), transparent 36%, rgba(14, 22, 18, 0.92));
}

.events-pinned-copy {
  justify-content: flex-start !important;
  min-height: 260vh;
  padding-top: clamp(110px, 16vh, 180px);
  padding-bottom: clamp(80px, 12vh, 140px);
  align-items: stretch !important;
}

.events-pinned-copy > * {
  width: min(100%, 920px) !important;
  margin-left: auto;
  margin-right: auto;
}

.events-pinned-head {
  text-align: center;
  margin-bottom: clamp(48px, 8vh, 96px);
}

.events-pinned-head h2 {
  margin: 0 auto 18px;
  color: var(--cream);
  font-size: clamp(40px, 5.4vw, 64px);
}

.events-pinned-intro {
  max-width: 620px;
  margin: 0 auto 26px;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.55;
}

.events-pinned-head .events-toolbar {
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 520px);
}

.events-scroll-grid {
  display: grid;
  gap: clamp(28px, 6vh, 64px);
  margin-top: 0;
}

.events-scroll-loading,
.events-scroll-empty {
  padding: 36px 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.event-scroll-card {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  width: min(100%, 380px);
  padding: clamp(22px, 2.6vh, 30px) clamp(22px, 2.4vw, 28px);
  border: 1px solid rgba(230, 197, 129, 0.42);
  background:
    linear-gradient(135deg, rgba(14, 22, 18, 0.78), rgba(14, 22, 18, 0.94)),
    rgba(244, 237, 224, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.42);

  opacity: 0;
  transform: translateY(80px) scale(0.86);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 320ms var(--ease);
  will-change: opacity, transform;
}

.event-scroll-card[data-side="right"] {
  justify-self: end;
  transform: translateY(80px) translateX(160px) rotate(4deg) scale(0.86);
}
.event-scroll-card[data-side="left"] {
  justify-self: start;
  transform: translateY(80px) translateX(-160px) rotate(-4deg) scale(0.86);
}

.event-scroll-card.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) rotate(0) scale(1);
}

.event-scroll-card:hover {
  border-color: var(--gold-bright);
}

.esc-day-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: clamp(116px, 13vw, 150px);
  aspect-ratio: 1;
  padding: 12px;
  border: 1px solid var(--gold);
  background: rgba(201, 165, 92, 0.1);
  text-align: center;
  transform: rotate(-2deg);
  opacity: 0;
  transition: opacity 700ms var(--ease) 220ms, transform 700ms var(--ease) 220ms;
}

.event-scroll-card.is-visible .esc-day-stack {
  opacity: 1;
}

.event-scroll-card[data-side="right"] .esc-day-stack {
  transform: rotate(2deg);
}

.esc-day {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
}

.esc-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 560px);
  gap: 12px;
  text-align: center;
}

.esc-body > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.event-scroll-card.is-visible .esc-body > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 320ms; }
.event-scroll-card.is-visible .esc-body > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 400ms; }
.event-scroll-card.is-visible .esc-body > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 460ms; }
.event-scroll-card.is-visible .esc-body > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 520ms; }
.event-scroll-card.is-visible .esc-body > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 580ms; }

.esc-type {
  align-self: center;
  padding: 6px 14px;
  border: 1px solid rgba(230, 197, 129, 0.55);
  color: var(--gold-bright);
  background: rgba(244, 237, 224, 0.06);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-scroll-card h3 {
  color: var(--cream);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1;
  margin: 0;
}

.esc-fulldate {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.esc-desc {
  color: var(--muted-strong);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto;
}

.esc-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(244, 237, 224, 0.16);
}

.esc-time,
.esc-venue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.esc-time svg {
  width: 17px;
  height: 17px;
  color: var(--gold-bright);
}

.esc-venue::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.events-pinned-cta {
  margin-top: clamp(48px, 8vh, 96px);
  display: flex;
  justify-content: center;
}

@media (max-width: 820px) {
  .events-pinned {
    min-height: 300vh;
  }
  .events-pinned-copy {
    min-height: 300vh;
  }
  .events-pinned-head .events-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .event-scroll-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 22px;
  }
  .esc-day-stack {
    transform: rotate(-2deg);
    align-self: center;
    width: 116px;
    padding: 10px;
  }
  .event-scroll-card[data-side="right"] .esc-day-stack {
    transform: rotate(2deg);
  }
}

@media (max-width: 540px) {
  .events-pinned {
    min-height: 320vh;
  }
  .events-pinned-copy {
    min-height: 320vh;
    padding-left: 18px;
    padding-right: 18px;
  }
  .event-scroll-card h3 {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-scroll-card,
  .esc-day-stack,
  .esc-body > * {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 1ms linear !important;
  }
}

/* ======================================================
   EVENTS PAGE (monthly calendar)
   ====================================================== */
.events-page {
  padding: 80px var(--gutter) 104px;
  background:
    radial-gradient(circle at 14% 10%, rgba(47, 107, 74, 0.22), transparent 34%),
    linear-gradient(180deg, var(--ink), #111b16 54%, var(--ink));
  color: var(--cream);
}

.events-page-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.events-page-head {
  text-align: center;
  margin-bottom: 36px;
}

.events-page-head h2 {
  color: var(--cream);
  font-size: clamp(38px, 5vw, 58px);
  margin-bottom: 22px;
}

.events-page-head .events-toolbar {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.events-upcoming-calendar {
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(230, 197, 129, 0.52);
  background:
    linear-gradient(180deg, rgba(47, 107, 74, 0.22), rgba(7, 27, 18, 0.34)),
    rgba(14, 22, 18, 0.82);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.28);
}

.events-upcoming-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(244, 237, 224, 0.18);
}

.events-upcoming-top h3 {
  margin-top: 4px;
  color: var(--cream);
  font-size: clamp(26px, 3.4vw, 38px);
}

.events-upcoming-top p[data-events-compact-range] {
  margin-top: 5px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.events-calendar-view-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.events-calendar-controls[hidden] {
  display: none;
}

.calendar-toggle-button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  color: var(--cream);
  background: linear-gradient(180deg, #163f2a, #0f3220);
  box-shadow:
    inset 0 0 0 1px rgba(230, 197, 129, 0.42),
    inset 0 0 0 4px #0a2417;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.calendar-toggle-button:hover,
.calendar-toggle-button:focus-visible {
  border-color: var(--gold-bright);
  background: linear-gradient(180deg, #1e5036, #0f3220);
  transform: translateY(-1px);
}

.events-upcoming-scroll {
  margin-top: 22px;
}

.events-upcoming-grid .calendar-day {
  min-height: 124px;
}

.calendar-day.is-range-placeholder {
  background: rgba(14, 22, 18, 0.58);
  box-shadow: none;
}

.events-calendar-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.events-calendar-admin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(122, 179, 136, 0.48);
  background: rgba(47, 107, 74, 0.18);
}

.events-calendar-admin[hidden],
.calendar-editor[hidden],
.events-admin-login[hidden] {
  display: none !important;
}

.events-calendar-admin strong,
.events-calendar-admin span {
  display: block;
}

.events-calendar-admin strong {
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.events-calendar-admin span {
  margin-top: 3px;
  color: rgba(244, 237, 224, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.events-calendar-admin > div:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.calendar-admin-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.calendar-admin-button-ghost {
  color: var(--cream);
  background: rgba(244, 237, 224, 0.07);
}

.calendar-icon-button,
.calendar-today-button {
  min-height: 42px;
  border: 1px solid rgba(230, 197, 129, 0.5);
  border-radius: var(--radius);
  color: var(--cream);
  background: rgba(244, 237, 224, 0.07);
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.calendar-icon-button {
  width: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
}

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

.calendar-today-button {
  padding: 0 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.calendar-icon-button:hover,
.calendar-today-button:hover {
  color: var(--ink);
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.calendar-icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.events-calendar-scroll {
  margin-top: 22px;
  overflow: visible;
  padding-bottom: 6px;
}

.events-calendar-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  min-width: 920px;
  border: 1px solid rgba(230, 197, 129, 0.34);
  background: rgba(230, 197, 129, 0.24);
  overflow: visible;
}

.events-calendar-weekday {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  background: rgba(14, 22, 18, 0.96);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.calendar-day {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(244, 237, 224, 0.07), rgba(244, 237, 224, 0.035)),
    rgba(18, 30, 24, 0.94);
}

.calendar-day.is-outside-month {
  background: rgba(14, 22, 18, 0.72);
}

.calendar-day.is-past {
  opacity: 0.48;
}

.calendar-day.is-today {
  box-shadow: inset 0 0 0 2px var(--gold-bright);
}

.calendar-day-top {
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.calendar-day-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.calendar-date-number {
  color: var(--cream);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.is-outside-month .calendar-date-number,
.is-past .calendar-date-number {
  color: rgba(244, 237, 224, 0.5);
}

.calendar-today-badge {
  padding: 3px 6px;
  color: var(--ink);
  background: var(--gold-bright);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}

.calendar-add-day {
  width: 24px;
  height: 24px;
  display: none;
  place-items: center;
  border: 1px solid rgba(230, 197, 129, 0.58);
  border-radius: var(--radius);
  color: var(--gold-bright);
  background: rgba(14, 22, 18, 0.64);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.events-upcoming-calendar.is-admin .calendar-add-day {
  display: grid;
}

.calendar-add-day:hover,
.calendar-add-day:focus-visible {
  color: var(--ink);
  background: var(--gold-bright);
}

.calendar-day-events {
  display: grid;
  gap: 7px;
  align-content: start;
}

.calendar-event {
  --event-accent: var(--gold-bright);
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 38px;
  display: grid;
  gap: 2px;
  padding: 7px 8px;
  border: 1px solid rgba(230, 197, 129, 0.42);
  border: 1px solid color-mix(in srgb, var(--event-accent) 62%, transparent);
  border-left: 4px solid var(--event-accent);
  border-radius: var(--radius);
  color: var(--cream);
  background: rgba(14, 22, 18, 0.72);
  text-align: left;
  cursor: pointer;
  transition: background 180ms var(--ease), transform 180ms var(--ease), border-color 180ms var(--ease);
}

.calendar-event-music {
  --event-accent: var(--gold-bright);
}

.calendar-event-games {
  --event-accent: #7ab388;
}

.calendar-event-special {
  --event-accent: #d97b52;
}

.calendar-event:hover,
.calendar-event:focus,
.calendar-event:focus-visible {
  z-index: 8;
  background: rgba(14, 22, 18, 0.96);
  border-color: var(--event-accent);
  transform: translateY(-1px);
}

.calendar-event-time,
.calendar-event-title {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-event-time {
  color: var(--event-accent);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-event-title {
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
}

.calendar-event-edit {
  width: max-content;
  margin-top: 3px;
  padding: 2px 6px;
  color: var(--ink);
  background: var(--gold-bright);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.calendar-event-popover {
  position: absolute;
  left: -4px;
  bottom: calc(100% + 10px);
  z-index: 40;
  width: min(300px, 82vw);
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  text-transform: none;
  transform: translateY(8px);
  transition: opacity 160ms var(--ease), transform 160ms var(--ease), visibility 160ms var(--ease);
  visibility: hidden;
}

.calendar-day[data-weekday="5"] .calendar-event-popover,
.calendar-day[data-weekday="6"] .calendar-event-popover {
  right: -4px;
  left: auto;
}

.calendar-event:hover .calendar-event-popover,
.calendar-event:focus .calendar-event-popover,
.calendar-event:focus-visible .calendar-event-popover {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.calendar-popover-type {
  width: max-content;
  padding: 3px 7px;
  color: var(--paper);
  background: var(--green);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-event-popover strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.12;
  text-transform: uppercase;
}

.calendar-event-popover span {
  color: rgba(14, 22, 18, 0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  white-space: normal;
}

.events-empty {
  padding: 24px 0 0;
  text-align: center;
}

.events-empty p {
  color: var(--muted);
  font-size: 15px;
}

.events-calendar-note {
  margin-top: 14px;
  color: rgba(244, 237, 224, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.calendar-editor {
  margin-top: 22px;
  border: 1px solid rgba(230, 197, 129, 0.5);
  background: rgba(14, 22, 18, 0.82);
}

.calendar-editor-form {
  padding: clamp(18px, 2.6vw, 28px);
}

.calendar-editor-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.calendar-editor-head h3 {
  color: var(--cream);
  font-size: 28px;
}

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

.calendar-editor-wide {
  grid-column: 1 / -1;
}

.calendar-editor-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-editor-form input,
.calendar-editor-form select,
.calendar-editor-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(244, 237, 224, 0.28);
  border-radius: var(--radius);
  color: var(--cream);
  background: rgba(244, 237, 224, 0.06);
  outline: none;
}

.calendar-editor-form textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.calendar-editor-form input:focus,
.calendar-editor-form select:focus,
.calendar-editor-form textarea:focus {
  border-color: var(--gold-bright);
}

.calendar-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.calendar-editor-actions .button {
  min-height: 44px;
}

.events-footer-admin {
  grid-column: span 2;
  padding-top: 0;
}

.events-admin-login label {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.events-admin-login div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 14px;
}

.events-admin-login input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--cream);
  outline: none;
}

.events-admin-login p {
  min-height: 20px;
  margin-top: 10px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .events-page {
    padding: 58px 18px 72px;
  }

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

  .events-upcoming-top,
  .events-calendar-view-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .calendar-toggle-button {
    width: 100%;
  }

  .events-calendar-controls {
    justify-content: space-between;
  }

  .events-calendar-admin,
  .events-calendar-admin > div:last-child {
    align-items: stretch;
    flex-direction: column;
  }

  .events-calendar-grid {
    min-width: 760px;
  }

  .calendar-day {
    min-height: 108px;
    padding: 9px;
  }

  .calendar-editor-grid,
  .events-admin-login div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .events-footer-admin {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .events-calendar-scroll {
    overflow-x: auto;
    overflow-y: hidden;
  }
}

/* ======================================================
   EVENTS GALLERY
   ====================================================== */
.events-gallery-section {
  padding: clamp(72px, 9vw, 124px) var(--gutter);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(47, 107, 74, 0.24), transparent 34%),
    linear-gradient(180deg, #101d17, var(--ink));
  border-bottom: 1px solid var(--line);
}

.events-gallery-head {
  width: min(100%, var(--max));
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.events-gallery-head h2 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--cream);
  font-size: clamp(38px, 5.5vw, 66px);
}

.events-gallery {
  width: min(100%, var(--max));
  margin: 0 auto;
  columns: 4 240px;
  column-gap: clamp(12px, 1.8vw, 22px);
}

.events-gallery-item {
  position: relative;
  width: 100%;
  height: 390px;
  margin: 0 0 clamp(12px, 1.8vw, 22px);
  break-inside: avoid;
  overflow: hidden;
  border: 1px solid rgba(230, 197, 129, 0.34);
  background: rgba(244, 237, 224, 0.04);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(52px) rotate(0.7deg) scale(0.96);
  transition:
    opacity 720ms var(--ease),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms var(--ease);
  transition-delay: var(--cascade-delay, 0ms);
}

.events-gallery-item.is-tall {
  height: 470px;
}

.events-gallery-item.is-short {
  height: 310px;
}

.events-gallery-item:nth-child(even) {
  transform: translateY(52px) rotate(-0.7deg) scale(0.96);
}

.events-gallery-item.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0) scale(1);
}

.events-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 27, 18, 0.22));
  pointer-events: none;
}

.events-gallery-item img,
.events-gallery-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.015);
  transition: transform 900ms var(--ease), filter 500ms var(--ease);
}

.events-gallery-item:hover {
  border-color: rgba(230, 197, 129, 0.72);
}

.events-gallery-item:hover img,
.events-gallery-item:hover video {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.055);
}

.events-gallery-video {
  background: #071b12;
}

.events-gallery-video video {
  pointer-events: none;
}

@media (max-width: 820px) {
  .events-gallery-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .events-gallery {
    columns: 2;
    column-gap: 12px;
  }

  .events-gallery-item,
  .events-gallery-item.is-tall {
    height: min(76vw, 410px);
    margin-bottom: 12px;
  }

  .events-gallery-item.is-short {
    height: min(54vw, 310px);
  }
}

@media (max-width: 460px) {
  .events-gallery-item,
  .events-gallery-item.is-tall {
    height: 260px;
  }

  .events-gallery-item.is-short {
    height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .events-gallery-item,
  .events-gallery-item img,
  .events-gallery-item video {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ======================================================
   ADMIN
   ====================================================== */
.admin-body {
  background: var(--ink);
  color: var(--cream);
  min-height: 100vh;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px var(--gutter);
  background: rgba(7, 27, 18, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.admin-header .brand {
  width: 156px;
  display: inline-flex;
}

.admin-header .brand img {
  width: 100%;
  height: auto;
}

.admin-header-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-header-meta[hidden] {
  display: none;
}

.admin-header-meta span {
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}

.admin-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 56px var(--gutter) 96px;
}

.admin-login {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.admin-login-card {
  width: min(100%, 480px);
  padding: 44px;
  border: 1px solid var(--gold);
  background: rgba(244, 237, 224, 0.04);
}

.admin-login-card h1 {
  color: var(--cream);
  font-size: 32px;
  margin-bottom: 12px;
}

.admin-intro {
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.admin-login-card .molloys-form {
  border: 0;
  padding: 0;
  background: transparent;
}

.admin-demo-hint {
  margin-top: 22px;
  padding: 14px 18px;
  border: 1px dashed rgba(230, 197, 129, 0.4);
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
}

.admin-demo-hint strong {
  color: var(--gold-bright);
  font-weight: 800;
}

.admin-dashboard-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.admin-dashboard-head h1 {
  color: var(--cream);
  font-size: 40px;
  margin-bottom: 8px;
}

.admin-dashboard-head .admin-intro {
  margin-bottom: 0;
}

.admin-dashboard-actions {
  display: flex;
  gap: 10px;
}

.admin-event-form {
  margin-bottom: 36px;
}

.admin-form-actions {
  display: flex;
  gap: 10px;
}

.admin-events-list {
  display: grid;
  gap: 10px;
}

.admin-event {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: rgba(244, 237, 224, 0.04);
}

.admin-event-when {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-event-when span {
  color: var(--gold-bright);
  font-family: "Permanent Marker", cursive;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  line-height: 1;
}

.admin-event-when small {
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-event-body h3 {
  margin: 0;
  color: var(--cream);
  font-size: 18px;
  font-family: var(--font-main);
  font-weight: 800;
  text-transform: uppercase;
}

.admin-event-body p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-event-type {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(230, 197, 129, 0.5);
  color: var(--gold-bright);
  background: rgba(244, 237, 224, 0.07);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-event-actions {
  display: flex;
  gap: 8px;
}

.admin-event-actions .button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 12px;
}

.admin-empty {
  padding: 24px;
  border: 1px dashed var(--line);
  color: var(--muted);
  text-align: center;
}

.admin-workspace-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.admin-workspace-head h1 {
  color: var(--cream);
  font-size: clamp(34px, 5vw, 54px);
}

.admin-workspace-head .admin-intro {
  margin: 10px 0 0;
}

.admin-workspace-tabs {
  display: inline-flex;
  padding: 5px;
  border: 1px solid var(--line);
  background: rgba(244, 237, 224, 0.04);
}

.admin-workspace-tabs button {
  min-width: 120px;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  color: var(--muted-strong);
  background: transparent;
  font: 800 13px/1 var(--font-main);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-workspace-tabs button.is-active {
  color: var(--ink);
  background: var(--gold-bright);
}

.admin-menu-manager {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  background: rgba(244, 237, 224, 0.035);
}

.admin-menu-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.admin-menu-head h2 {
  color: var(--cream);
  font-size: clamp(34px, 5vw, 52px);
}

.admin-menu-head .admin-intro {
  margin: 10px 0 0;
}

.admin-menu-head-actions {
  display: flex;
  gap: 10px;
}

.admin-menu-status {
  margin-top: 24px;
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
  color: var(--muted-strong);
  background: rgba(230, 197, 129, 0.08);
  font-size: 15px;
  font-weight: 700;
}

.admin-menu-editor {
  margin-top: 28px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--gold);
  background: var(--green-deep);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.admin-menu-editor[hidden],
[data-admin-view-panel][hidden] {
  display: none;
}

.admin-menu-editor [hidden] {
  display: none;
}

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

.admin-menu-form-wide {
  grid-column: 1 / -1;
}

.admin-menu-editor label,
.admin-menu-toolbar label {
  display: grid;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-menu-editor input,
.admin-menu-editor select,
.admin-menu-editor textarea,
.admin-menu-toolbar input,
.admin-menu-toolbar select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(230, 197, 129, 0.42);
  border-radius: 0;
  outline: 0;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.18);
  font: 600 17px/1.35 var(--font-body);
}

.admin-menu-editor textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-menu-editor input:focus,
.admin-menu-editor select:focus,
.admin-menu-editor textarea:focus,
.admin-menu-toolbar input:focus,
.admin-menu-toolbar select:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(230, 197, 129, 0.12);
}

.admin-menu-toolbar {
  display: grid;
  grid-template-columns: minmax(190px, 0.4fr) minmax(260px, 1fr);
  gap: 16px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.12);
}

.admin-menu-list {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.admin-menu-group {
  border: 1px solid var(--line);
  background: rgba(244, 237, 224, 0.035);
}

.admin-menu-group > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.12);
}

.admin-menu-group > header span,
.admin-menu-group > header small {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-menu-group > header h3 {
  margin-top: 3px;
  color: var(--cream);
  font-size: 20px;
}

.admin-menu-items {
  display: grid;
}

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

.admin-menu-item button {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  padding: 17px 20px;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 180ms var(--ease);
}

.admin-menu-item button:hover {
  background: rgba(230, 197, 129, 0.08);
}

.admin-menu-item-copy {
  display: grid;
  gap: 5px;
}

.admin-menu-item-copy strong {
  color: var(--cream);
  font-size: 18px;
}

.admin-menu-item-copy strong em {
  display: inline-flex;
  margin-right: 9px;
  padding: 3px 7px;
  color: var(--ink);
  background: var(--gold-bright);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-menu-item-copy small {
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.admin-menu-item b {
  color: var(--gold-bright);
  font-size: 16px;
  white-space: nowrap;
}

.admin-menu-edit-label {
  padding: 7px 11px;
  border: 1px solid rgba(230, 197, 129, 0.4);
  color: var(--cream);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .admin-shell {
    padding: 30px 18px 72px;
  }
  .admin-login-card {
    padding: 28px;
  }
  .admin-dashboard-head {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-dashboard-head h1 {
    font-size: 30px;
  }
  .admin-event {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .admin-event-actions {
    justify-content: flex-start;
  }
  .admin-header {
    padding: 14px 18px;
  }
  .admin-workspace-head,
  .admin-menu-head {
    align-items: stretch;
    flex-direction: column;
  }
  .admin-workspace-tabs,
  .admin-menu-head-actions {
    width: 100%;
  }
  .admin-workspace-tabs button,
  .admin-menu-head-actions .button {
    flex: 1;
  }
  .admin-menu-manager {
    padding: 22px 16px;
  }
  .admin-menu-form-grid,
  .admin-menu-toolbar {
    grid-template-columns: 1fr;
  }
  .admin-menu-item button {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }
  .admin-menu-edit-label {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* ======================================================
   BODY COPY READABILITY SCALE
   ====================================================== */
.hero-bottom p,
.story-copy p:not(.section-label),
.pinned-copy p:not(.section-label),
.drink-copy > p:not(.section-label),
.review-card p,
.visit-copy p:not(.section-label),
.page-hero p,
.content-inner p {
  font-size: var(--text-body-large);
}

.featured-sticky p:not(.section-label),
.brunch-banner p:not(.section-label),
.form-side > p,
.about-split-copy p,
.tribute p,
.events-pinned-intro,
.esc-desc,
.admin-intro {
  font-size: 19px;
}

.menu-list p,
.menu-grid article p,
.tile p,
.form-side dd,
.form-side dd a {
  font-size: var(--text-body);
}

.weekly-grid p,
.drink-icons p,
.schedule-row p,
.footer a,
.wine-row em,
.events-scroll-loading,
.events-scroll-empty {
  font-size: var(--text-body-compact);
}

.footer-line,
.menu-note,
.form-status,
.events-empty p,
.events-admin-login p,
.admin-event-body p {
  font-size: 15px;
}

.pub-menu-sheet {
  font-size: 18px;
}

.pub-menu-item p {
  font-size: clamp(1rem, 2.1vw, 1.1rem);
}

.pub-menu-note,
.pub-menu-panel p {
  font-size: 0.96em;
}

.pub-menu-legal {
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .pub-menu-sheet {
    font-size: 17px;
  }
}

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

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

  .review-lane {
    animation: none;
  }

  .about-carousel-slide {
    transition: none;
    transform: none;
  }

  .reveal,
  .is-letter-ready .letter {
    opacity: 1;
    transform: none;
  }

  .menu-list article:hover,
  .menu-list article:focus-visible,
  .featured-hero.is-changing img {
    transform: none;
  }
}
