/* ============================================
   DESPERADOS — Design System & Core Styles
   Color: Brown + Cream + Burgundy Red
   ============================================ */

@font-face {
  font-family: 'VVDS Bartender';
  src: url('../fonts/VVDS_TheBartender-SansCondensedPressed.woff2') format('woff2'),
       url('../fonts/VVDS_TheBartender-SansCondensedPressed.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Avallon Caps';
  src: url('../fonts/AvallonCaps.woff2') format('woff2'),
       url('../fonts/AvallonCaps.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #f5f5f1;
  --black-light: #eceae6;
  --black-card: #ffffff;
  --cream: #2d1a10;
  --cream-soft: #432b1e;
  --cream-muted: rgba(45, 26, 16, 0.6);
  --yellow: #8b5a2b;
  --yellow-bright: #6b3f1a;
  --yellow-dim: rgba(139, 90, 43, 0.08);
  --white: #1a0f08;
  --gray: #8a7b70;
  --red: #682929;

  --font-display: 'VVDS Bartender', 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Oswald', 'Inter', -apple-system, sans-serif;
  --font-accent: 'Permanent Marker', cursive;

  --header-h: 72px;
  --section-pad: clamp(60px, 10vw, 120px);
  --content-max: 1200px;
  --content-narrow: 800px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--yellow); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--yellow-bright); }

::selection {
  background: var(--red);
  color: #f5f5f1;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 48px);
  background: #f5f5f1;
}

.site-header.scrolled {
  background: #f5f5f1;
  box-shadow: 0 1px 0 rgba(45, 26, 16, 0.08);
}

.nav-inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 30px;
  width: auto;
  visibility: hidden;
}

.nav-logo {
  position: relative;
}

.nav-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #682929;
  -webkit-mask: url('../images/logo/desperados-nav-white.png') no-repeat left center / contain;
  mask: url('../images/logo/desperados-nav-white.png') no-repeat left center / contain;
}

.menu-illustration {
  filter: sepia(1) saturate(2) hue-rotate(315deg) brightness(0.6);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: clamp(16px, 2.5vw, 36px);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--cream-soft);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover { color: var(--yellow); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--yellow); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f5f5f1;
  background: var(--red);
  padding: 10px 24px;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
  background: #7a3333;
  color: #f5f5f1;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream-soft);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

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

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #f5f5f1;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #f5f5f1;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 36px);
  font-style: normal;
  color: var(--red);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero-slogan {
  font-family: var(--font-accent);
  font-size: clamp(14px, 1.8vw, 20px);
  font-style: normal;
  color: rgba(245, 245, 241, 0.7);
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.5s forwards;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--yellow), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---- Menu Hero variant ---- */
.hero--menu {
  min-height: 70vh;
}

.hero-overlay--menu {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero-title--menu {
  font-size: clamp(48px, 10vw, 120px);
}

.hero-slogan--menu {
  max-width: 600px;
  margin: 0 auto 0;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(245, 245, 241, 0.8);
  line-height: 1.7;
}

/* ---- Sport Hero variant ---- */
.hero--sport {
  min-height: 70vh;
  background: #1a0f08;
}

.hero--sport .hero-bg img {
  object-position: center 30%;
}

.hero-overlay--sport {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero--sport .hero-tagline {
  color: var(--black);
}

.hero-title--sport {
  font-size: clamp(48px, 10vw, 120px);
  color: var(--black);
}

.hero-slogan--sport {
  max-width: 600px;
  margin: 0 auto 0;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(245, 245, 241, 0.8);
  line-height: 1.7;
}

/* ---- Företag Hero variant ---- */
.hero--foretag {
  min-height: 70vh;
}

.hero-overlay--foretag {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero-title--foretag {
  font-size: clamp(48px, 10vw, 120px);
}

.hero-slogan--foretag {
  max-width: 640px;
  margin: 0 auto 0;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(245, 245, 241, 0.8);
  line-height: 1.7;
}

/* ---- Evenemang Hero variant ---- */
.hero--evenemang {
  min-height: 70vh;
}

.hero-overlay--evenemang {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero-title--evenemang {
  font-size: clamp(48px, 10vw, 120px);
  color: #f5f5f1;
}

.hero-slogan--evenemang {
  max-width: 600px;
  margin: 0 auto 0;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(245, 245, 241, 0.8);
  line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 14px 36px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.btn-primary {
  background: var(--red);
  color: #f5f5f1;
}

.btn-primary:hover {
  background: #7a3333;
  color: #f5f5f1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(104, 41, 41, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream-muted);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--cream);
  transform: translateY(-2px);
}

.hero-actions .btn-outline {
  color: #f5f5f1;
  border-color: rgba(245, 245, 241, 0.5);
}

.hero-actions .btn-outline:hover {
  color: #f5f5f1;
  border-color: #f5f5f1;
}

/* ============================================
   SECTION FOUNDATIONS
   ============================================ */

.section {
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
}

.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.section-narrow {
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--yellow);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
}

.section-text {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--cream-muted);
  max-width: 600px;
}

.section-dark { background: var(--black); }
.section-darker { background: var(--black-light); }
.section-card-bg { background: var(--black-card); }

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--red);
  margin: 32px 0;
}

/* ============================================
   DEAL CARDS
   ============================================ */

.deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 48px;
}

.deal-card--wings {
  grid-column: 3 / 5;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}

.deal-card {
  background: var(--black-card);
  border: 1px solid rgba(45, 26, 16, 0.06);
  border-radius: 4px;
  padding: 32px 28px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.deal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.deal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(104, 41, 41, 0.25);
}

.deal-card:hover::before { transform: scaleX(1); }

.deal-day {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.deal-title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
}

.deal-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-muted);
}

.deal-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.deal-list li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--cream);
  padding-left: 16px;
  position: relative;
}

.deal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.deal-tagline {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--gold);
  margin: 16px 0;
}

.deal-highlight {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(45, 26, 16, 0.1);
}

.deal-highlight-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--cream);
  margin-bottom: 10px;
}

.deal-highlight .deal-text {
  margin-top: 8px;
}

.deal-text--bold {
  font-weight: 600;
  color: var(--cream);
}

/* ============================================
   MATCH / SPORT CARDS
   ============================================ */

.sport-day-group { margin-bottom: 40px; }

.sport-day-label {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #f5f5f1;
  background: var(--red);
  display: block;
  padding: 12px 20px;
  border-radius: 6px;
  border-bottom: none;
  margin-bottom: 16px;
}

.match-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(45, 26, 16, 0.04);
  transition: background 0.2s;
}

.match-card:hover { background: rgba(45, 26, 16, 0.02); }

.match-teams {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
}

.match-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--cream-muted);
}

.match-league {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.match-time {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--yellow);
  letter-spacing: 1px;
}

/* ============================================
   ACTIVITY ROWS (alternating image/text)
   ============================================ */

.activity-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .activity-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }

  /* On mobile, always show image first (on top) even for reversed rows */
  .activity-row--reversed > :last-child {
    order: -1;
  }
}

/* ============================================
   ACTIVITY CARDS
   ============================================ */

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.activity-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 9/16;
  cursor: pointer;
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.activity-card:hover img { transform: scale(1.05); }

.activity-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.65) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.activity-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f5f5f1;
}

.activity-card-price {
  font-size: 14px;
  color: #f5f5f1;
  margin-top: 4px;
}

/* ============================================
   ACTIVITY SLIDER (horizontal carousel)
   ============================================ */

.act-slider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.act-slider__viewport {
  flex: 1;
  overflow: hidden;
}

.act-slider__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}

#activities-preview .section-inner {
  max-width: 1440px;
}

.act-slider .activity-card {
  flex: 0 0 calc((100% - 48px) / 4);
}

.act-slider__btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(45, 26, 16, 0.15);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.act-slider__btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: var(--yellow-dim);
}

.act-slider__btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.act-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.act-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(45, 26, 16, 0.3);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.act-slider__dot:hover {
  border-color: var(--red);
}

.act-slider__dot.active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.2);
}

.act-slider__dot:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .act-slider .activity-card {
    flex: 0 0 calc((100% - 32px) / 3);
  }
}

@media (max-width: 900px) {
  .act-slider .activity-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

@media (max-width: 768px) {
  .act-slider {
    gap: 12px;
  }

  .act-slider__track {
    gap: 16px;
  }

  .act-slider .activity-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .act-slider__btn {
    width: 36px;
    height: 36px;
  }
}

/* ============================================
   MOST WANTED CAMPAIGN
   ============================================ */

.most-wanted {
  background: var(--black-light);
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
  overflow: hidden;
}

.most-wanted__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.most-wanted__media {
  position: relative;
}

.most-wanted__img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.most-wanted__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.most-wanted__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f5f5f1;
  background: var(--red);
  padding: 6px 16px;
  border-radius: 3px;
  margin-bottom: 20px;
  width: fit-content;
}

.most-wanted__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 0.95;
  margin-bottom: 12px;
}

.most-wanted__tagline {
  font-family: var(--font-accent);
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--cream);
  margin-bottom: 4px;
}

.most-wanted__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cream-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.most-wanted__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.most-wanted__item {
  padding: 20px 24px;
  background: var(--black-card);
  border: 1px solid rgba(45, 26, 16, 0.06);
  border-radius: 4px;
  border-left: 3px solid var(--red);
}

.most-wanted__item-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
}

.most-wanted__veg {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #4a8c3f;
  background: rgba(74, 140, 63, 0.1);
  padding: 2px 8px;
  border-radius: 3px;
  vertical-align: middle;
}

.most-wanted__item-desc {
  font-size: 14px;
  color: var(--cream-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .most-wanted__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .most-wanted__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .most-wanted__media {
    order: -1;
  }

  .most-wanted__img {
    max-width: 360px;
  }

  .most-wanted__item {
    text-align: left;
  }
}

/* ============================================
   MENU STYLES
   ============================================ */

.menu-category {
  margin-bottom: 64px;
}

.menu-category-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.menu-category-sub {
  font-family: 'Permanent Marker', cursive;
  font-style: normal;
  font-size: 16px;
  color: var(--cream-muted);
  margin-bottom: 32px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(45, 26, 16, 0.06);
}

.menu-item-info { flex: 1; padding-right: 24px; }

.menu-item-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 13px;
  color: var(--cream-muted);
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--yellow);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Menu badges */
.menu-item-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-right: 8px;
  margin-top: 6px;
  line-height: 1;
}

.menu-item-badge--new {
  background: var(--red);
  color: #f5f5f1;
}

.menu-item-badge--veg {
  background: rgba(45, 26, 16, 0.10);
  color: var(--cream-muted);
  border: 1px solid rgba(45, 26, 16, 0.15);
}

.menu-item-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.menu-subcategory-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--yellow);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 32px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(45, 26, 16, 0.10);
}

/* Illustration in menu */
.menu-illustration {
  max-width: 200px;
  margin: 24px auto;
}

/* ============================================
   MENU PAGE — O'Learys-inspired layout
   ============================================ */

.menu-page-section {
  padding: 0;
}

.menu-page-section > .section-inner {
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
}

/* Sticky category navigation */
.menu-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid rgba(45, 26, 16, 0.08);
}

.menu-nav__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 clamp(20px, 4vw, 48px);
}

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

.menu-nav__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cream-muted);
  padding: 16px 24px;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s;
}

.menu-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.menu-nav__link:hover {
  color: var(--cream);
}

.menu-nav__link.active {
  color: var(--yellow);
}

.menu-nav__link.active::after {
  transform: scaleX(1);
}

/* Featured dishes grid */
.menu-featured {
  margin-bottom: 64px;
}

.menu-featured__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.menu-featured__card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
}

.menu-featured__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.menu-featured__card:hover img {
  transform: scale(1.05);
}

.menu-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.menu-featured__name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f5f5f1;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .menu-featured__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .menu-nav__link {
    padding: 14px 16px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 480px) {
  .menu-featured__card {
    aspect-ratio: 1 / 1;
  }
}

/* ============================================
   PACKAGE CARDS (Companies / Kids)
   ============================================ */

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.package-card {
  background: var(--black-card);
  border: 1px solid rgba(45, 26, 16, 0.06);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(104, 41, 41, 0.25);
}

.package-card-name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.package-card-price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 20px;
}

.package-card-list {
  list-style: none;
  text-align: left;
}

.package-card-list li {
  font-size: 14px;
  color: var(--cream-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(45, 26, 16, 0.04);
  padding-left: 20px;
  position: relative;
}

.package-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ============================================
   EVENTS SLIDER (vertical cards, 2–3 visible)
   ============================================ */

.events-slider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.events-viewport {
  flex: 1;
  overflow: hidden;
}

.events-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}

/* Each card: vertical, tall */
.event-card {
  flex: 0 0 calc((100% - 24px) / 2); /* 2 visible + 1 gap */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--black-card);
  border: 1px solid rgba(45, 26, 16, 0.06);
  border-radius: 4px;
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.event-card:hover {
  border-color: rgba(104, 41, 41, 0.25);
  transform: translateY(-4px);
}

.event-card:hover::before {
  transform: scaleX(1);
}

.event-icon {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

/* Image variant – replaces emoji icon */
.event-card--has-image {
  padding-top: 0;
}

.event-card__image {
  width: calc(100% + clamp(48px, 6vw, 80px));
  margin-bottom: 24px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: 4px 4px 0 0;
}

.event-date {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--yellow);
  margin-bottom: 16px;
}

.event-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 16px;
}

.event-divider {
  width: 48px;
  height: 2px;
  background: var(--red);
  margin-bottom: 20px;
}

.event-desc {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.7;
  color: var(--cream-muted);
  max-width: 380px;
  margin-bottom: 28px;
  flex: 1;
}

.event-card .btn {
  margin-top: auto;
}

/* Arrow buttons */
.events-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(45, 26, 16, 0.15);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.events-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: var(--yellow-dim);
}

.events-btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* Dots */
.events-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.events-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(45, 26, 16, 0.3);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.events-dot:hover {
  border-color: var(--red);
}

.events-dot.active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.2);
}

.events-dot:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* 3 visible on wide screens */
@media (min-width: 1100px) {
  .event-card {
    flex: 0 0 calc((100% - 48px) / 3); /* 3 visible + 2 gaps */
  }
}

/* 1 visible on mobile */
@media (max-width: 768px) {
  .events-slider {
    gap: 12px;
  }

  .events-track {
    gap: 16px;
  }

  .event-card {
    flex: 0 0 100%;
  }

  .events-btn {
    width: 36px;
    height: 36px;
  }

  .event-icon {
    font-size: 36px;
  }
}

/* ============================================
   IMAGE BREAK SECTIONS
   ============================================ */

.image-break {
  position: relative;
  height: 50vh;
  min-height: 300px;
  overflow: hidden;
}

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

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: none;
}

/* ============================================
   PULL QUOTE
   ============================================ */

.pullquote-section {
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
  text-align: center;
  background: var(--black-light);
}

.pullquote {
  font-family: var(--font-accent);
  font-size: clamp(24px, 4vw, 42px);
  font-style: normal;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 16px;
}

.pullquote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--red);
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--black-light);
  border-top: 1px solid rgba(45, 26, 16, 0.06);
  padding: 60px clamp(20px, 4vw, 48px) 32px;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 48px;
}

.footer-logo {
  height: 36px;
  width: auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--yellow);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 13px;
  color: var(--cream-muted);
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  gap: 48px;
}

.footer-nav-group h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-nav-group ul {
  list-style: none;
}

.footer-nav-group li { margin-bottom: 10px; }

.footer-nav-group a {
  font-size: 14px;
  color: var(--cream-muted);
}

.footer-nav-group a:hover { color: var(--yellow); }

.footer-contact p {
  font-size: 14px;
  color: var(--cream-muted);
  margin-bottom: 6px;
}

.footer-bottom {
  max-width: var(--content-max);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(45, 26, 16, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray);
}

/* ============================================
   HIRING BANNER
   ============================================ */

.hiring-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
  background: var(--black);
}

.hiring-banner-img {
  position: relative;
  overflow: hidden;
}

.hiring-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hiring-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 30%, var(--black) 100%);
  z-index: 1;
  pointer-events: none;
}

.hiring-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 4vw, 64px);
}

.hiring-banner-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
}

.hiring-banner-text {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--cream-muted);
  max-width: 520px;
  margin-bottom: 8px;
}

.hiring-banner-text strong {
  color: var(--red);
  font-weight: 600;
}

.hiring-banner-cta-text {
  font-family: var(--font-accent);
  font-size: clamp(18px, 2vw, 22px);
  font-style: normal;
  color: var(--cream);
  margin-top: 12px;
  margin-bottom: 28px;
}

.hiring-banner .section-divider {
  margin: 20px 0;
}

.hiring-banner .section-label {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .hiring-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hiring-banner-img {
    height: 300px;
  }

  .hiring-banner-overlay {
    background: linear-gradient(180deg, transparent 40%, var(--black) 100%);
  }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Staggered reveals */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ============================================
   KEYFRAMES
   ============================================ */

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; position: relative; z-index: 301; }
  .nav-cta { display: none; }
  .nav-logo { position: relative; z-index: 301; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: #f5f5f1;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 300;
  }

  .nav-links.open a {
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--cream-soft);
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .deals-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .deal-card--wings {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .activities-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .hero-title { letter-spacing: 4px; }

  #sport-preview .section-inner,
  #food-preview .section-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  #food-preview .reveal-scale { order: 1 !important; }
  #food-preview .reveal { order: 0 !important; }
}

@media (max-width: 480px) {
  :root { --header-h: 60px; }
  .hero-actions { flex-direction: column; align-items: center; }

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

  .deal-card--wings {
    grid-column: auto;
  }
}

/* ====== ROLLING BANNER ====== */
.rolling-banner {
  background: var(--red);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.rolling-banner-track {
  display: inline-flex;
  animation: rolling-scroll 24s linear infinite;
}

.rolling-banner-text {
  display: inline-block;
  padding: 20px 80px;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}

@keyframes rolling-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .rolling-banner-track {
    animation: none;
  }
}

/* ============================================
   EVENTS LIST PAGE
   ============================================ */

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

.events-list-item {
  border-bottom: 2px solid rgba(45, 26, 16, 0.12);
}

.events-list-item:first-child {
  border-top: 2px solid rgba(45, 26, 16, 0.12);
}

.events-list-item:nth-child(even) {
  background: var(--red);
  border-radius: 8px;
  padding-left: 24px;
  padding-right: 24px;
  border-color: transparent;
}

.events-list-item:nth-child(even) + .events-list-item {
  border-top: none;
}

.events-list-item:nth-child(even) .events-list-date {
  color: #f5f5f1;
}

.events-list-item:nth-child(even) .events-list-name {
  color: #f5f5f1;
}

.events-list-item:nth-child(even) .events-list-btn {
  color: #2d1a10;
  background: #f5f5f1;
}

.events-list-item:nth-child(even) .events-list-row:hover .events-list-btn {
  background: #eceae6;
}

.events-list-item:nth-child(even) .events-list-body p {
  color: rgba(245, 245, 241, 0.75);
}

.events-list-item:nth-child(even)[open] .events-list-btn {
  background: #f5f5f1;
  color: #2d1a10;
}

.events-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
}

.events-list-row::-webkit-details-marker {
  display: none;
}

.events-list-info {
  flex: 1;
  min-width: 0;
}

.events-list-date {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  font-style: normal;
  color: var(--yellow);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.events-list-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
}

.events-list-btn {
  flex-shrink: 0;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cream);
  background: var(--yellow);
  padding: 12px 28px;
  border-radius: 100px;
  margin-left: 24px;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}

.events-list-row:hover .events-list-btn {
  background: var(--yellow-bright);
  transform: translateY(-1px);
}

.events-list-item[open] .events-list-btn {
  background: var(--red);
  color: #f5f5f1;
}

.events-list-body {
  padding: 0 0 32px;
  max-width: 680px;
}

.events-list-body p {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.7;
  color: var(--cream-muted);
  margin-bottom: 20px;
}

.events-list-body .btn {
  margin-top: 4px;
}

@media (max-width: 480px) {
  .events-list-row {
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
  }

  .events-list-btn {
    margin-left: 0;
  }
}

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

.faq-item {
  border-bottom: 1px solid rgba(245, 245, 241, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(245, 245, 241, 0.08);
}

.faq-question {
  display: block;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
}

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

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 300;
  color: var(--yellow);
  transition: transform 0.3s var(--ease-smooth);
}

.faq-item[open] .faq-question::after {
  content: '-';
}

.faq-answer {
  padding: 0 0 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.7;
  max-width: 680px;
}
