@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================================
   O'SULLIVAN'S — Irish Pub V2
   Style: Raw & Brutalist
   Mobile-first: base styles = mobile, min-width = larger screens
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;700&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap");

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

:root {
  --white: #f2ede6;
  --off: #e8e0d0;
  --paper: #d4c9b0;
  --black: #0a0a08;
  --black2: #111108;
  --black3: #1a1a12;
  --green: #1a4d2e;
  --green2: #2a7a48;
  --green3: #3db566;
  --green4: #a8e6be;
  --red: #8b1a1a;
  --red2: #c42b2b;
  --muted: #6b6550;
  --border: #2a2a1e;
  --border2: #3a3a28;

  /* Typography scale — mobile first */
  --fs-xs: 0.7rem;
  --fs-sm: 0.85rem;
  --fs-base: 1rem;
  --fs-md: 1.15rem;
  --fs-lg: 1.5rem;
  --fs-xl: 2rem;
  --fs-2xl: 3rem;
  --fs-3xl: 5rem;
  --fs-hero: clamp(4.5rem, 22vw, 14rem);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: auto;
}

/* ─── SELECTION ─── */
::selection {
  background: var(--green);
  color: var(--white);
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--green2);
}


/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  height: 56px;
  background: var(--black);
  border-bottom: 2px solid var(--green);
}

@media (min-width: 768px) {
  .header {
    padding: 0 2.5rem;
    height: 64px;
  }
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-main {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}
.logo-sub {
  font-family: "Courier Prime", monospace;
  font-size: 0.55rem;
  color: var(--green3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .logo-main {
    font-size: 1.8rem;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 0;
}
@media (min-width: 900px) {
  .nav {
    display: flex;
  }
}

.nav a {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 1rem;
  border-left: 1px solid var(--border);
  transition:
    color 0.15s,
    background 0.15s;
  white-space: nowrap;
}
.nav a:hover,
.nav a.active {
  color: var(--green3);
  background: rgba(42, 122, 72, 0.08);
}
.nav a.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  border-color: var(--green);
  margin-left: 0.5rem;
}
.nav a.nav-cta:hover {
  background: var(--green2);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid var(--border2);
  overflow: hidden;
}
.lang-btn {
  font-family: "Courier Prime", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.28rem 0.6rem;
  color: var(--muted);
  transition: all 0.15s;
  min-width: 36px;
  min-height: 32px; /* touch target */
}
.lang-btn.active {
  background: var(--green);
  color: var(--white);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  min-width: 44px;
  min-height: 44px; /* touch target */
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (min-width: 900px) {
  .hamburger {
    display: none;
  }
}

/* ─── MOBILE DRAWER ─── */
.mobile-nav {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black2);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  border-top: 2px solid var(--green);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav a {
  font-family: "Bebas Neue", sans-serif;
  font-size: var(--fs-2xl);
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition:
    color 0.15s,
    padding-left 0.2s;
  min-height: 60px;
  display: flex;
  align-items: center;
}
.mobile-nav a:hover {
  color: var(--green3);
  padding-left: 0.5rem;
}
.mobile-nav .lang-toggle {
  margin-top: 2rem;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .mobile-nav {
    top: 64px;
  }
}

/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 1.25rem 2rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--green);
}

@media (min-width: 768px) {
  .hero {
    padding: 8rem 2.5rem 3rem;
  }
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: grayscale(0.4);
  z-index: 0;
}

.hero-ticker {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  background: var(--green);
  overflow: hidden;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--green2);
}
@media (min-width: 768px) {
  .hero-ticker {
    top: 64px;
  }
}
.hero-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerMove 90s linear infinite !important;
  width: max-content;
}
.hero-ticker-track span {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 2rem;
}
.hero-ticker-track span::before {
  content: "◆";
  margin-right: 2rem;
  opacity: 0.6;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-eyebrow {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green3);
  margin-bottom: 1rem;
  position: relative;
  opacity: 0;
  animation: brutIn 0.5s 0.1s forwards;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: var(--fs-hero);
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.15em;
  opacity: 0;
  animation: brutIn 0.6s 0.2s forwards;
}
.hero h1 .green {
  color: var(--green3);
}
.hero h1 .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.hero-sub-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  opacity: 0;
  animation: brutIn 0.6s 0.4s forwards;
}
@media (min-width: 600px) {
  .hero-sub-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.hero-desc {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-sm);
  color: var(--paper);
  line-height: 1.6;
  max-width: 380px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-corner-badge {
  position: absolute;
  top: calc(56px + 2.25rem);
  right: 1.25rem;
  width: 88px;
  height: 88px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  animation: brutIn 0.6s 0.6s forwards;
}
@media (min-width: 768px) {
  .hero-corner-badge {
    top: calc(64px + 2.5rem);
    right: 2.5rem;
    width: 110px;
    height: 110px;
  }
}
.hero-corner-badge .num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: var(--green3);
  line-height: 1;
}
.hero-corner-badge .label {
  font-family: "Courier Prime", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 8px;
  text-align: center;
}

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  padding: 0.8rem 1.5rem;
  border: 2px solid;
  transition: all 0.15s;
  min-height: 44px; /* touch target */
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green2);
  border-color: var(--green2);
}
.btn-ghost {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--black);
}
.btn-green-outline {
  background: transparent;
  border-color: var(--green2);
  color: var(--green3);
}
.btn-green-outline:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ─── SECTION BASE ─── */
.section {
  padding: 4rem 1.25rem;
}
@media (min-width: 768px) {
  .section {
    padding: 6rem 2.5rem;
  }
}
@media (min-width: 1200px) {
  .section {
    padding: 8rem 2.5rem;
  }
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--green3);
  padding: 0.2rem 0.6rem;
  margin-bottom: 1.5rem;
}
.section-tag::before {
  content: "01";
  font-size: 0.6em;
  opacity: 0.7;
}
.section-tag[data-n]::before {
  content: attr(data-n);
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.section-title .green {
  color: var(--green3);
}

/* ─── ABOUT ─── */
.about-section {
  background: var(--black2);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

.about-img-col {
  position: relative;
}
@media (min-width: 900px) {
  .about-img-col {
    border-right: 2px solid var(--border);
    padding-right: 3rem;
  }
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--black3);
  border: 2px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
/* Real photo: .about-img img { width:100%; height:100%; object-fit:cover; display:block; } */
.about-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green);
  padding: 0.5rem 1rem;
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}
.about-img-placeholder {
  font-family: "Bebas Neue", sans-serif;
  font-size: 6rem;
  color: var(--border2);
  opacity: 0.5;
}

.about-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--border2);
  margin-top: 1.5rem;
}
.stat-block {
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border2);
}
.stat-block:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: var(--fs-2xl);
  color: var(--green3);
  line-height: 1;
}
.stat-label {
  font-family: "Courier Prime", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .about-text-col {
    padding-left: 3rem;
  }
}

.about-text-col p {
  font-size: var(--fs-sm);
  color: var(--paper);
  line-height: 1.8;
}
.about-quote {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--green3);
  line-height: 1.1;
  border-left: 4px solid var(--green);
  padding-left: 1rem;
}

/* ─── MENU ─── */
.menu-section {
  background: var(--black);
}

.menu-tabs {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 2px solid var(--border2);
  margin-bottom: 0;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  flex-shrink: 0;
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.85rem 1.25rem;
  border-right: 1px solid var(--border2);
  transition: all 0.15s;
  min-height: 44px;
}
.menu-tab:last-child {
  border-right: none;
}
.menu-tab:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}
.menu-tab.active {
  color: var(--black);
  background: var(--green3);
}

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

.menu-list {
  border: 2px solid var(--border2);
  border-top: none;
}

.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  min-height: 44px;
}
.menu-row:last-child {
  border-bottom: none;
}
.menu-row:hover {
  background: rgba(42, 122, 72, 0.07);
}

.menu-row-left {
  flex: 1;
}
.menu-row-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--white);
}
.menu-row-desc {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: 2px;
  font-style: italic;
}
.menu-row-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 5px;
}
.menu-badge {
  font-family: "Courier Prime", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 2px 6px;
  border: 1px solid var(--green2);
  color: var(--green3);
}
.menu-badge.red {
  border-color: var(--red);
  color: #e06060;
}
.menu-row-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  color: var(--green3);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* ─── GALLERY ─── */
.gallery-section {
  background: var(--black2);
  border-top: 2px solid var(--border);
}

/* Mobile: horizontal scroll strip */
.gallery-strip {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 2px;
  scrollbar-width: none;
  cursor: grab;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-strip:active { cursor: grabbing; }

.gallery-item {
  flex: 0 0 280px;
  height: 320px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--black3);
}

@media (min-width: 768px) {
  .gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    cursor: default;
    gap: 2px;
  }
  .gallery-strip:active { cursor: default; }
  .gallery-item {
    flex: none;
    width: auto;
    height: auto;
    aspect-ratio: 1;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 8, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay {
  opacity: 1;
}
.gallery-zoom {
  width: 28px;
  height: 28px;
  color: var(--white);
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}
.gallery-overlay-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--green3);
  text-align: center;
  padding: 0 1rem;
}

/* Scroll dots — for gallery (mobile) and events */
.scroll-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 1rem 0 0.5rem;
}
.scroll-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border2);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.scroll-dot.active {
  background: var(--green3);
  transform: scale(1.35);
}
@media (min-width: 768px) {
  #galleryDots { display: none; }
}

/* Menu tabs scroll hint */
.menu-tabs-wrap {
  position: relative;
}
.menu-tabs-hint {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, transparent, var(--black) 70%);
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 1;
}
.menu-tabs-hint.hidden { opacity: 0; }
.menu-tabs-hint svg {
  width: 14px;
  height: 14px;
  color: var(--green3);
  stroke: var(--green3);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.97);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3.5rem;
}
.lightbox.open {
  display: flex;
}
.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: var(--green);
  border: none;
  cursor: pointer;
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.15s;
  z-index: 1002;
}
.lightbox-close:hover {
  background: var(--green2);
}
.lightbox-content {
  max-width: 900px;
  width: 100%;
  border: 2px solid var(--green);
  aspect-ratio: 4/3;
  background: var(--black3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.lightbox-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  background: rgba(10,10,8,0.7);
  padding: 0.5rem 1rem;
  text-align: center;
}
#lbImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.15s;
}
#lbImg.fade { opacity: 0; }

.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 2px solid var(--green2);
  background: rgba(10,10,8,0.8);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.15s, border-color 0.15s;
}
.lb-arrow:hover {
  background: var(--green);
  border-color: var(--green);
}
.lb-prev { left: 0.75rem; }
.lb-next { right: 0.75rem; }
.lb-counter {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Courier Prime", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  z-index: 1001;
}

/* ─── EVENTS ─── */
.events-section {
  background: var(--black);
  border-top: 2px solid var(--border);
}

.events-sub {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-sm);
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.events-scroll-outer {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  margin: 0 calc(-1 * var(--gap));
  padding: 0 var(--gap) 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--green2) var(--black2);
}
.events-scroll-outer::-webkit-scrollbar { height: 3px; }
.events-scroll-outer::-webkit-scrollbar-track { background: var(--black2); }
.events-scroll-outer::-webkit-scrollbar-thumb { background: var(--green2); }

.events-scroll-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.esc-card {
  width: 260px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--black2);
  border: 1px solid var(--border2);
  overflow: hidden;
  transition: border-color 0.2s;
}
@media (min-width: 600px) {
  .esc-card { width: 300px; }
}
.esc-card:hover { border-color: var(--green2); }

.esc-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.esc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.8);
  transition: transform 0.4s ease, filter 0.4s ease;
}
.esc-card:hover .esc-img img {
  transform: scale(1.04);
  filter: brightness(0.85) saturate(1);
}

.esc-pill {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-family: "Courier Prime", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--border2);
  color: var(--muted);
  background: rgba(10, 10, 8, 0.82);
  backdrop-filter: blur(4px);
}
.esc-pill.live  { border-color: var(--red);    color: var(--red2);   }
.esc-pill.quiz  { border-color: var(--green2); color: var(--green3); }

.esc-body {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem;
  align-items: flex-start;
}

.esc-date {
  background: var(--green);
  min-width: 46px;
  height: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.4rem;
}
.esc-day {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}
.esc-mon {
  font-family: "Courier Prime", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.esc-info { flex: 1; min-width: 0; }
.esc-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}
.esc-meta {
  font-family: "Courier Prime", monospace;
  font-size: 0.65rem;
  color: var(--muted);
  font-style: italic;
}

.events-footer {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.event-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0;
  background: var(--black2);
  border: 1px solid var(--border2);
  overflow: hidden;
  transition: border-color 0.15s;
  min-height: 44px;
}
@media (min-width: 600px) {
  .event-card {
    grid-template-columns: 90px 1fr auto;
  }
}
.event-card:hover {
  border-color: var(--green2);
}

.event-date-col {
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  text-align: center;
}
.event-day {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}
.event-mon {
  font-family: "Courier Prime", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.event-body {
  padding: 1rem 1.25rem;
}
.event-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .event-title {
    font-size: 1.6rem;
  }
}
.event-desc {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  color: var(--muted);
  font-style: italic;
}
.event-tag-col {
  display: none;
  padding: 1rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 600px) {
  .event-tag-col {
    display: flex;
  }
}
.event-pill {
  font-family: "Courier Prime", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border2);
  color: var(--muted);
  white-space: nowrap;
}
.event-pill.live {
  border-color: var(--red);
  color: var(--red2);
}

/* ─── PUB QUIZ ─── */
.quiz-section {
  background: var(--black2);
  border-top: 1px solid var(--border);
}
.quiz-start {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.quiz-shamrock {
  font-size: 4rem;
  line-height: 1;
  opacity: 0.6;
}
.quiz-intro {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.quiz-game {
  margin-top: 3rem;
  max-width: 640px;
}
.quiz-progress-wrap {
  height: 2px;
  background: var(--border2);
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--green3);
  width: 0%;
  transition: width 0.4s ease;
}
.quiz-meta {
  margin-bottom: 1rem;
}
.quiz-counter {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  color: var(--muted);
}
.quiz-question {
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
@media (max-width: 480px) {
  .quiz-options {
    grid-template-columns: 1fr;
  }
}
.quiz-opt {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-sm);
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border2);
  padding: 0.75rem 1rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  line-height: 1.3;
}
.quiz-opt:hover {
  border-color: var(--green2);
  color: var(--white);
}
.quiz-opt.correct {
  border-color: var(--green3);
  color: var(--green3);
  background: rgba(42, 122, 72, 0.15);
}
.quiz-opt.wrong {
  border-color: var(--red2);
  color: var(--red2);
  background: rgba(196, 43, 43, 0.1);
}
.quiz-result {
  margin-top: 3rem;
  max-width: 480px;
}
.quiz-shamrocks {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  color: var(--green3);
}
.quiz-score-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.quiz-score-msg {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-sm);
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2rem;
}
.quiz-result-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── BOOKING ─── */
.booking-section {
  background: var(--black2);
  border-top: 3px solid var(--green);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.35rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--black3);
  border: 2px solid var(--border2);
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs-base);
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  min-height: 44px;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green3);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233db566' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ─── PREMIUM BOOKING FORM ─── */
.form-step {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.form-step:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.step-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--green3);
  line-height: 1;
  flex-shrink: 0;
}
.step-line {
  flex: 1;
  height: 1px;
  background: var(--border2);
}
.step-lbl {
  font-family: "Courier Prime", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.step-opt {
  font-family: "Courier Prime", monospace;
  font-size: 0.6rem;
  color: var(--border2);
  font-style: italic;
}
.step-error .step-num {
  color: var(--red2);
}
.step-error .time-grid .pill-btn,
.step-error .guest-grid .pill-btn {
  border-color: var(--red2);
}
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}
@media (max-width: 480px) {
  .time-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.guest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.pill-btn {
  font-family: "Courier Prime", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border2);
  padding: 0.5rem 0.4rem;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  text-align: center;
  min-height: 38px;
  line-height: 1;
}
.pill-btn:hover {
  border-color: var(--green2);
  color: var(--white);
}
.pill-btn.selected {
  border-color: var(--green3);
  color: var(--green3);
  background: rgba(42, 122, 72, 0.12);
}
.pill-guest {
  flex: 1 1 auto;
  min-width: 90px;
  padding: 0.5rem 0.75rem;
}
.booking-submit {
  width: 100%;
  justify-content: center;
}
.or-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
  font-family: "Courier Prime", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.wa-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid #25d366;
  background: rgba(37, 211, 102, 0.04);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
}
.wa-cta:hover {
  background: rgba(37, 211, 102, 0.1);
}
.wa-icon {
  width: 22px;
  height: 22px;
  color: #25d366;
  flex-shrink: 0;
}
.wa-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.wa-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: #25d366;
}
.wa-sub {
  font-family: "Courier Prime", monospace;
  font-size: 0.6rem;
  color: var(--muted);
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-table {
  border: 2px solid var(--border2);
}
.info-table-head {
  background: var(--green);
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.6rem 1rem;
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  border-top: 1px solid var(--border);
  font-size: var(--fs-sm);
  min-height: 44px;
}
.info-row span:first-child {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.info-row span:last-child {
  color: var(--white);
  text-align: right;
}

.wa-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(37, 211, 102, 0.08);
  border: 2px solid rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: all 0.15s;
  min-height: 44px;
}
.wa-cta:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.5);
}
.wa-cta svg {
  width: 28px;
  height: 28px;
  fill: #25d366;
  flex-shrink: 0;
}
.wa-cta-text {
}
.wa-cta-label {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4ade80;
}
.wa-cta-sub {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: 2px;
  font-family: "Courier Prime", monospace;
  font-style: italic;
}

/* ─── REVIEWS ─── */
.reviews-section {
  background: var(--black);
  border-top: 2px solid var(--border);
}

.reviews-wrap {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  margin: 0 -1.25rem;
}
@media (min-width: 768px) {
  .reviews-wrap {
    margin: 0 -2.5rem;
  }
}

.reviews-track {
  display: flex;
  gap: 2px;
  animation: marquee 70s linear infinite !important;
  width: max-content;
  padding: 0.5rem 1.25rem;
}
.reviews-track:hover {
  animation-play-state: paused;
}

.review-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--black2);
  border: 2px solid var(--border2);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
@media (min-width: 768px) {
  .review-card {
    width: 340px;
  }
}
.review-card:hover {
  border-color: var(--green2);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.review-stars {
  display: flex;
  gap: 2px;
}
.review-stars span {
  color: var(--green3);
  font-size: 0.8rem;
}
.review-platform {
  font-family: "Courier Prime", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-text {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--paper);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 32px;
  height: 32px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.review-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--white);
}

/* ─── MAP ─── */
.map-section {
  background: var(--black2);
  border-top: 2px solid var(--border);
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid var(--border2);
}
@media (min-width: 900px) {
  .map-layout {
    grid-template-columns: 340px 1fr;
  }
}

.map-sidebar {
  padding: 2rem 1.5rem;
  border-bottom: 2px solid var(--border2);
}
@media (min-width: 900px) {
  .map-sidebar {
    border-bottom: none;
    border-right: 2px solid var(--border2);
  }
}

.map-sidebar h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.map-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  min-height: 44px;
}
.map-row:last-of-type {
  border-bottom: none;
}
.map-row-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.map-row-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}
.map-row-text {
}
.map-row-key {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.map-row-val {
  font-size: var(--fs-sm);
  color: var(--paper);
  font-style: italic;
}

.map-embed {
  height: 400px;
  position: relative;
  background: var(--black3);
}
@media (min-width: 900px) {
  .map-embed {
    height: 480px;
  }
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.map-ph {
  text-align: center;
  width: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.map-ph-icon {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: var(--border2);
  line-height: 1;
}
.map-ph-label {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--border2);
  margin-top: 0.5rem;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  border-top: 3px solid var(--green);
  padding: 3rem 1.25rem 1.5rem;
}
@media (min-width: 768px) {
  .footer {
    padding: 4rem 2.5rem 2rem;
  }
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand .logo-main {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
.footer-brand .logo-sub {
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green3);
  margin-bottom: 1rem;
}
.footer-col a,
.footer-col p {
  display: block;
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-sm);
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.15s;
  font-style: italic;
  min-height: 24px;
}
.footer-col a:hover {
  color: var(--green3);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-copy {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-xs);
  color: var(--muted);
  letter-spacing: 0.08em;
}
.footer-copy a {
  color: var(--green3);
  text-decoration: none;
}
.footer-social {
  display: flex;
  gap: 2px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--black2);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.5;
}
.footer-social a:hover svg {
  stroke: var(--white);
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: waPulse 3s ease infinite;
  transition: transform 0.15s;
}
.wa-float:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}
.wa-float svg {
  width: 26px;
  height: 26px;
  fill: white;
}
@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  60% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ─── SCROLL TO TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 5.25rem;
  right: 1.25rem;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green3);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(42,122,72,0.4);
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
  border: none;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--green2); transform: translateY(-2px); }

/* ─── BOOKING SUCCESS ─── */
.booking-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  border: 2px solid var(--green);
}
.booking-success-icon {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  color: var(--green3);
  line-height: 1;
}
.booking-success h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--white);
  margin: 0.5rem 0;
}
.booking-success p {
  font-family: "Courier Prime", monospace;
  font-size: var(--fs-sm);
  color: var(--muted);
  font-style: italic;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.16s;
}
.reveal-d3 {
  transition-delay: 0.24s;
}

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

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ─── FOOD GALLERY ─── */
.fg-section { padding-top: 0; }
.fg-header { max-width: 1200px; margin: 0 auto 2rem; }
.fg-lead {
  font-size: var(--fs-sm);
  color: var(--muted);
  max-width: 600px;
  margin-top: 0.5rem;
  line-height: 1.7;
}
.fg-wrap { position: relative; }
.fg-strip {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  gap: 2px;
}
.fg-strip::-webkit-scrollbar { display: none; }

.fg-item,
.fg-placeholder {
  flex: 0 0 86%;
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (min-width: 600px) {
  .fg-item, .fg-placeholder { flex: 0 0 48%; }
}
@media (min-width: 1024px) {
  .fg-item, .fg-placeholder { flex: 0 0 31%; }
}

.fg-item { cursor: pointer; }
.fg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.fg-item:hover img,
.fg-item:focus img { transform: scale(1.05); }

.fg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.fg-item:hover .fg-overlay,
.fg-item:focus .fg-overlay { opacity: 1; }

.fg-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

/* Placeholder */
.fg-placeholder {
  border: 2px dashed var(--border2);
  background: var(--black2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: default;
}
.fg-ph-icon {
  width: 36px;
  height: 36px;
  opacity: 0.18;
  color: var(--muted);
  stroke: var(--muted);
}
.fg-ph-text {
  font-family: "Courier Prime", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.4;
}

/* Arrows */
.fg-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,8,0.82);
  border: 1px solid var(--border2);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
}
@media (min-width: 600px) { .fg-arrow { display: flex; } }
.fg-arrow:hover,
.fg-arrow:focus { background: var(--green); border-color: var(--green); }
.fg-arrow-prev { left: 0.5rem; }
.fg-arrow-next { right: 0.5rem; }
.fg-arrow svg { width: 20px; height: 20px; pointer-events: none; }

/* Dots */
.fg-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 1.25rem 0 0.5rem;
}
