/* ============================================================
   DUKE'S LEITH — Main Stylesheet
   Version: 1.0 | March 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=DM+Mono:wght@400;500&display=swap');

/* ---- TOKENS ---- */
:root {
  --gold:        #D4A017;
  --gold-light:  #F2C94C;
  --gold-pale:   rgba(212,160,23,0.12);
  --gold-border: rgba(212,160,23,0.3);
  --black:       #0A0A0A;
  --charcoal:    #1A1A1A;
  --smoke:       #2A2A2A;
  --white:       #FFFFFF;
  --red:         #C0392B;
  --border:      rgba(255,255,255,0.08);

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --nav-height:   72px;
  --sp:           clamp(48px, 8vw, 96px);
  --container:    1200px;
  --r:            8px;
  --r-lg:         14px;
  --t:            0.2s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ---- LAYOUT ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section { padding: var(--sp) 0; }
.section--charcoal { background: var(--charcoal); }
.section--smoke    { background: var(--smoke); }
.divider { height: 1px; background: var(--border); margin: clamp(32px,5vw,64px) 0; }

/* ---- TYPOGRAPHY ---- */
.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.section-header { margin-bottom: clamp(32px,5vw,56px); }
.section-header .label { margin-bottom: 12px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  line-height: 1;
}
.section-header h2 span { color: var(--gold); }
.section-header p {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  transition: all var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn-gold    { background: var(--gold); color: var(--black); border: 2px solid var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-white   { background: var(--white); color: var(--black); border: 2px solid var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-red     { background: var(--red); color: var(--white); border: 2px solid var(--red); }
.btn-red:hover { background: #a93226; border-color: #a93226; }
.btn-sm  { padding: 10px 20px; font-size: 15px; }
.btn-lg  { padding: 18px 40px; font-size: 22px; }
.btn-block { width: 100%; }

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--t);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.5); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  gap: 8px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 3px;
  flex-shrink: 0;
  margin-right: 16px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  border-radius: 4px;
  transition: color var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; margin-left: 16px; }
.nav-delivery { display: inline-flex; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all var(--t);
  border-radius: 2px;
}

@media (max-width: 960px) {
  .nav-delivery { display: none; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--charcoal);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 24px;
    gap: 2px;
  }
  .nav-links.open a { font-size: 15px; padding: 12px 16px; width: 100%; }
  .nav-links.open .nav-delivery-mobile { display: block !important; }
}

/* ---- PROMO BANNER ---- */
.promo-banner {
  background: var(--red);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1001;
  width: 100%;
  overflow: hidden;
  max-height: 80px;
  transition: max-height 0.3s ease;
}
.promo-banner-text {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.5px;
  text-align: center;
}
.promo-banner-text strong { color: var(--gold-light); }
.promo-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  line-height: 1;
  padding: 4px 8px;
  transition: color var(--t);
}
.promo-close:hover { color: var(--white); }

/* ---- HERO (HOMEPAGE) ---- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #111;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.50) 55%, rgba(0,0,0,0.30) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.60) 100%),
    url("../images/Dukes_Hero_Banner.webp");
  background-size: auto, auto, cover;
  background-position: center, center, center center;
}
.hero-badge {
  position: absolute;
  top: 50%;
  right: clamp(24px, 6vw, 80px);
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 260px);
  color: rgba(212,160,23,0.04);
  letter-spacing: -8px;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-content .label { margin-bottom: 20px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 130px);
  line-height: 0.9;
  margin-bottom: 28px;
}
.hero h1 .line-gold { color: var(--gold); display: block; }
.hero h1 .line-white { color: var(--white); display: block; }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(212,160,23,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ---- PILLARS ---- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.pillar {
  background: var(--charcoal);
  padding: clamp(28px,4vw,52px) clamp(24px,3vw,44px);
  transition: background var(--t);
}
.pillar:hover { background: var(--smoke); }
.pillar-icon { font-size: 38px; margin-bottom: 18px; display: block; }
.pillar h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 10px;
}
.pillar p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
@media (max-width: 640px) { .pillars { grid-template-columns: 1fr; } }

/* ---- EVENTS STRIPE ---- */
.events-stripe-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  display: flex;
  justify-content: center;
}
.events-stripe-wrap::-webkit-scrollbar { display: none; }
.events-stripe {
  display: flex;
  gap: 16px;
  margin: 0 auto;
  justify-content: center;
}
.event-card {
  flex: 1;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  min-width: 0;
  transition: border-color var(--t), transform var(--t);
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) {
  .events-stripe-wrap { justify-content: flex-start; }
  .events-stripe { min-width: max-content; padding: 0 20px; }
  .event-card { flex: none; min-width: 260px; max-width: 290px; }
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.event-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.event-card .label { margin-bottom: 10px; }
.event-card h3 { font-family: var(--font-display); font-size: 26px; color: var(--white); margin-bottom: 8px; }
.event-card p  { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.6; }

/* ---- FOOD TEASER ---- */
.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.food-item {
  background: var(--charcoal);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
}
.food-item:first-child { grid-column: 1/-1; aspect-ratio: 21/8; }
.food-bg-photo { background: #111; }
.food-bg-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.food-item-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(48px, 8vw, 80px);
}
.food-bg-1 { background: linear-gradient(135deg, #2d1200 0%, #1a0800 100%); }
.food-bg-2 { background: linear-gradient(135deg, #1a1000 0%, #0f0800 100%); }
.food-bg-3 { background: linear-gradient(135deg, #1a0d00 0%, #100600 100%); }
.food-bg-4 { background: linear-gradient(135deg, #1c0f00 0%, #140900 100%); }
.food-item:hover .food-item-bg { transform: scale(1.04); }
.food-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
}
.food-label {
  position: relative;
  z-index: 1;
}
.food-label span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.food-label p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 6px 0 8px;
  line-height: 1.5;
  max-width: 480px;
}
.food-price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  font-style: normal;
}
.food-label strong {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--white);
}
@media (max-width: 640px) {
  .food-grid { grid-template-columns: 1fr; }
  .food-item:first-child { grid-column: auto; aspect-ratio: 4/3; }
}

/* ---- HOURS & LOCATION ---- */
.hours-loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.hours-tables { display: flex; flex-direction: column; gap: 28px; }
.hours-block h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table th {
  padding: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: left;
}
.hours-table td {
  padding: 14px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  vertical-align: top;
}
.hours-table td:first-child { font-weight: 500; color: var(--white); width: 36%; }
.location-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}
.location-name {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 12px;
}
.location-card address {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}
.landmark {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--r);
  border-left: 3px solid var(--gold);
  margin-bottom: 24px;
}
.contact-items { display: flex; flex-direction: column; gap: 10px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  min-width: 0;
  overflow-wrap: break-word;
}
.contact-item > div,
.contact-item > span:not(.ci-icon) { min-width: 0; overflow-wrap: break-word; flex: 1; }
.contact-item a:hover { color: var(--gold); }
.ci-icon {
  width: 32px; height: 32px;
  background: var(--smoke);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
@media (max-width: 768px) { .hours-loc-grid { grid-template-columns: 1fr; } }

/* ---- DELIVERY SECTION ---- */
.delivery-section { text-align: center; }
.delivery-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.delivery-note { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.35); font-family: var(--font-mono); letter-spacing: 1px; }

/* ---- PAGE HERO ---- */
.page-hero {
  padding-top: clamp(40px,6vw,72px);
  padding-bottom: clamp(40px,6vw,72px);
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: attr(data-watermark);
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-family: var(--font-display);
  font-size: clamp(80px,14vw,200px);
  color: rgba(255,255,255,0.03);
  letter-spacing: -4px;
  pointer-events: none;
  line-height: 1;
}
.page-hero .label { margin-bottom: 14px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 86px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: clamp(15px,2vw,18px); color: rgba(255,255,255,0.5); max-width: 560px; font-weight: 300; }
.page-hero-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- MENU TABS ---- */
.menu-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  padding: 14px 24px;
  font-family: var(--font-display);
  font-size: 20px;
  color: rgba(255,255,255,0.35);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all var(--t);
  letter-spacing: 0.5px;
}
.menu-tab:hover { color: rgba(255,255,255,0.7); }
.menu-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.menu-section { display: none; }
.menu-section.active { display: block; }
.menu-category { margin-bottom: 52px; }
.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.menu-cat-header h3 { font-family: var(--font-display); font-size: 32px; color: var(--white); }
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.menu-item {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 22px;
  transition: border-color var(--t);
}
.menu-item:hover { border-color: var(--gold-border); }
.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
}
.menu-item h4 { font-weight: 600; font-size: 15px; color: var(--white); }
.item-price { font-family: var(--font-mono); font-size: 14px; color: var(--gold); white-space: nowrap; }
.menu-item p  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.item-badges { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.ibadge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ibadge-halal { background: var(--gold-pale); color: var(--gold); }
.ibadge-vegan { background: rgba(76,175,80,0.12); color: #81c784; }
.ibadge-hot   { background: rgba(192,57,43,0.15); color: #e57373; }
.ibadge-new   { background: rgba(33,150,243,0.12); color: #64b5f6; }

/* ---- BEER GRID ---- */
.beer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}
.beer-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 18px;
  text-align: center;
  transition: border-color var(--t), transform var(--t);
}
.beer-card:hover { border-color: var(--gold-border); transform: translateY(-2px); }
.beer-icon { font-size: 28px; margin-bottom: 10px; }
.beer-card h4 { font-family: var(--font-display); font-size: 17px; color: var(--white); margin-bottom: 3px; }
.beer-brewery { font-size: 11px; color: var(--gold); font-family: var(--font-mono); letter-spacing: 1px; margin-bottom: 6px; }
.beer-style   { font-size: 12px; color: rgba(255,255,255,0.4); }
.beer-pint-price { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 8px; }
.beer-pint-price strong { color: var(--gold); }
.beer-abv     { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 8px; }

/* ---- COCKTAIL GRID ---- */
.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.cocktail-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 24px;
  transition: transform var(--t);
}
.cocktail-card:hover { transform: translateY(-3px); }
.cocktail-card h4 { font-family: var(--font-display); font-size: 22px; color: var(--gold); margin-bottom: 6px; display: flex; align-items: baseline; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.cocktail-card p  { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 12px; line-height: 1.6; }
.cocktail-price   { font-family: var(--font-mono); font-size: 15px; color: var(--white); font-weight: 500; white-space: nowrap; }

/* Section dividers within cocktail tab */
.menu-category-header { margin-bottom: 20px; }
.menu-category-header h3 { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); color: var(--white); letter-spacing: 0.02em; }

/* ---- EVENTS PAGE ---- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.event-feature {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t);
}
.event-feature:hover { border-color: var(--gold-border); }
.event-feature--wide { grid-column: 1/-1; }
.event-feature--promo { background: var(--red); border-color: var(--red); }
.event-img {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}
.event-feature--wide .event-img { aspect-ratio: 21/7; }
.ei-1 { background: linear-gradient(135deg, #1a1000, #0f0900); }
.ei-2 { background: linear-gradient(135deg, #100a00, #0a0600); }
.ei-3 { background: linear-gradient(135deg, #0d0d20, #080820); }
.ei-4 { background: linear-gradient(135deg, #1a0500, #100300); }
.event-feature-body { padding: 28px 32px; }
.event-feature-body .label { margin-bottom: 12px; }
.event-feature-body h3 { font-family: var(--font-display); font-size: clamp(26px,4vw,42px); color: var(--white); margin-bottom: 12px; line-height: 1; }
.event-feature--promo .event-feature-body h3 { color: var(--gold-light); }
.event-feature-body p  { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 24px; line-height: 1.7; }
.event-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .events-grid { grid-template-columns: 1fr; }
  .event-feature--wide { grid-column: auto; }
}

/* ---- LIVE SPORT ---- */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.sport-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 16px;
  text-align: center;
  transition: border-color var(--t), background var(--t);
}
.sport-card:hover { border-color: var(--gold-border); background: var(--smoke); }
.sport-icon { font-size: 34px; margin-bottom: 12px; }
.sport-card h4 { font-family: var(--font-display); font-size: 17px; color: var(--white); margin-bottom: 4px; }
.sport-card p  { font-size: 12px; color: rgba(255,255,255,0.35); }
@media (max-width: 768px) { .sports-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .sports-grid { grid-template-columns: 1fr; } }

.broadcast-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.broadcast-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
}
.broadcast-name { font-family: var(--font-display); font-size: 30px; color: var(--gold); margin-bottom: 8px; }
.broadcast-card p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
@media (max-width: 640px) { .broadcast-grid { grid-template-columns: 1fr; } }

.screens-callout {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(36px, 6vw, 72px);
  text-align: center;
}
.screen-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 150px);
  color: var(--gold);
  line-height: 1;
  display: block;
}
.screens-callout h3 { font-family: var(--font-display); font-size: clamp(24px,4vw,40px); color: var(--white); margin-bottom: 14px; }
.screens-callout p  { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 440px; margin: 0 auto 32px; }

.fixture-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.fixture-table th {
  background: var(--smoke);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  font-weight: 400;
}
.fixture-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,0.7);
  vertical-align: middle;
}
.fixture-table tr:last-child td { border-bottom: none; }
.fixture-table tr:hover td { background: rgba(255,255,255,0.03); }
.fsport {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: 4px;
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* ---- FIXTURE DAY TABS ---- */
.fixture-day-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.fixture-day-tabs button {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  padding: 8px 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.fixture-day-tabs button:hover { color: #fff; }
.fixture-day-tabs button.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ---- FAQ ACCORDION ---- */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  gap: 16px;
  transition: color var(--t);
}
.faq-q:hover { color: var(--gold); }
.faq-q.open   { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--gold);
  transition: transform var(--t);
  line-height: 1;
}
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 600px;
}
.faq-a.open { display: block; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 480px) {
  .hours-table { font-size: 12px; }
  .hours-table td, .hours-table th { padding-right: 8px; }
  .map-tile-frame { inset: -20px; width: calc(100% + 40px); height: calc(100% + 40px); }
  .btn { white-space: normal; text-align: center; }
}

.map-tile {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 24px;
}
.map-tile-frame {
  position: absolute;
  inset: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  border: 0;
  filter: invert(1) hue-rotate(200deg) saturate(0.5) brightness(0.75);
  pointer-events: none;
}
.map-tile-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}
.map-placeholder-icon { font-size: 32px; }

/* ---- BOOKING PAGE ---- */
.booking-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.booking-widget {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}
.booking-widget-icon { font-size: 48px; }
.booking-widget h3 { font-family: var(--font-display); font-size: 28px; color: var(--white); }
.booking-widget p  { font-size: 14px; color: rgba(255,255,255,0.4); max-width: 280px; }
@media (max-width: 768px) { .booking-grid { grid-template-columns: 1fr; } }

/* ---- NEWS ---- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.news-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.news-card-img {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
}
.ni-1 { background: linear-gradient(135deg, #1a1000, #0f0800); }
.ni-2 { background: linear-gradient(135deg, #100d00, #0a0900); }
.ni-3 { background: linear-gradient(135deg, #0d0d1a, #080815); }
.ni-4 { background: linear-gradient(135deg, #1a0500, #100200); }
.ni-5 { background: linear-gradient(135deg, #0f1500, #080f00); }
.ni-6 { background: linear-gradient(135deg, #150010, #0e000a); }
.news-card-body { padding: 24px; }
.news-card-body .label { margin-bottom: 10px; }
.news-card-body h3 { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: 10px; line-height: 1.2; }
.news-card-body p  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  transition: gap var(--t);
}
.read-more:hover { gap: 12px; }
@media (max-width: 768px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .news-grid { grid-template-columns: 1fr; } }

/* ---- SOCIAL LINKS ---- */
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 42px; height: 42px;
  background: var(--smoke);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--t), border-color var(--t), color var(--t);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ---- CALLOUT BOX ---- */
.callout-box {
  background: var(--charcoal);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 20px 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.callout-box strong { color: var(--gold); }

/* ---- FOOTER ---- */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: clamp(48px,6vw,80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 0.8fr 1.6fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--white); }
.footer-col address { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 2; }
.footer-col address a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.2); }
.footer-credit { flex-basis: 100%; text-align: center; padding-top: 8px; }
.footer-credit a { color: rgba(255,255,255,0.2); transition: color var(--t); }
.footer-credit a:hover { color: var(--gold); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 18px clamp(20px,5vw,60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 990;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 13px; color: rgba(255,255,255,0.55); max-width: 580px; }
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---- UTILITIES ---- */
.gold { color: var(--gold); }
.muted { color: rgba(255,255,255,0.45); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.mt-8  { margin-top: 8px; }  .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; } .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }

/* ---- MENU PAGE — FOOD TAB ADDITIONS ---- */

/* Dietary tags inline (GF, VG, V etc) */
.menu-item-dietary {
  font-size: 11px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  margin-left: 4px;
}

/* Small note below item name (e.g. "ask for GF bun") */
.menu-item-note {
  font-size: 12px;
  color: var(--gold);
  margin-top: 4px;
  font-style: italic;
}

/* Callout box variant — promo (gold border top, subtle bg) */
.callout-box--promo {
  border-left: none;
  border-top: 3px solid var(--gold);
  background: rgba(212,160,23,0.08);
  border-radius: var(--r);
  text-align: center;
  font-size: 15px;
  margin-bottom: 32px;
}
.callout-box--promo strong { color: var(--gold); }

/* Callout box variant — small inline note */
.callout-box--small {
  margin-top: 12px;
  padding: 12px 16px;
  font-size: 13px;
}

/* Sauces & Rubs two-column grid */
.sauces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  padding: 20px 0;
}
@media (max-width: 640px) { .sauces-grid { grid-template-columns: 1fr; } }

.sauces-col h5 {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.sauce-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sauce-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

.sauce-note {
  font-size: 12px;
  color: var(--gold);
  font-style: italic;
  margin-top: 10px;
}

/* Allergens key at bottom of food tab */
.allergens-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 32px;
}
.allergens-note strong { color: rgba(255,255,255,0.5); }

/* ---- MENU PAGE — PHOTO STRIPS ---- */
.menu-photo-strip {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 32px 0;
}
.menu-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.menu-photo-strip:hover img { transform: scale(1.03); }

.menu-photo-strip--wide { height: 340px; }

.menu-photo-strip-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  letter-spacing: 0.05em;
  color: var(--gold-light);
}

@media (max-width: 640px) {
  .menu-photo-strip { height: 200px; }
  .menu-photo-strip--wide { height: 220px; }
}

/* ---- COCKTAIL TAB HERO ---- */
.cocktail-hero {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.cocktail-hero-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.cocktail-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cocktail-hero-text .label { margin-bottom: 8px; }
.cocktail-hero-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  margin-bottom: 16px;
}
.cocktail-hero-text h2 span { color: var(--gold); }
.cocktail-hero-text p { color: rgba(255,255,255,0.55); font-size: 15px; }

@media (max-width: 768px) {
  .cocktail-hero { grid-template-columns: 1fr; }
  .cocktail-hero-img { aspect-ratio: 16 / 9; }
}

/* ---- LIVE DRAFT BEER ---- */

/* Skeleton shimmer loading cards */
.beer-card--skeleton {
  background: linear-gradient(90deg, var(--charcoal) 25%, var(--smoke) 50%, var(--charcoal) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  min-height: 100px;
  border-color: transparent;
  pointer-events: none;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Greyed out for temporarily off taps */
.beer-card--unavailable {
  opacity: 0.4;
  filter: grayscale(0.6);
}
.beer-unavailable-badge {
  display: inline-block;
  font-size: 10px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 2px 6px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Half / Pint / Schooner pricing tiers */
.beer-price-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.beer-price-tier {
  font-size: 11px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.45);
  background: var(--smoke);
  border-radius: 4px;
  padding: 3px 8px;
  white-space: nowrap;
}
.beer-price-tier strong {
  color: var(--gold);
  font-weight: 500;
}

/* Fallback / error state */
.beer-fallback {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: rgba(255,255,255,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

/* ---- BOOKING CONFIRMATION ---- */
.confirmation-box {
  max-width: 600px;
  margin: 0 auto;
}
.confirmation-icon {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}
.confirmation-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px auto;
  max-width: 420px;
}

/* ---- MARGIN UTILITIES ---- */
.mb-12 { margin-bottom: 12px; }
