@charset "UTF-8";

/* TABLE OF CONTENTS
   1.   Reset
   2.   Design Tokens
   3.   Base Elements
   4.   Layout Helpers
   5.   Navbar
   6.   Buttons
   7.   Hero
   8.   Dashboard Stats
   9.   Ticker Tape
   10.  Schedule Section & Cards
   10b. Games Grid Matrix Layout
   10c. Games Hero & Minidashboard
   10d. Games Filter Bar
   11.  Weekly Lineup & Featured
   11b. Features, Big Stats & Events Banner
   12.  Footer
   13.  Responsive
   14.  Menu Hero
   15.  Menu Filter System
   16.  Menu Categories & Glow
   17.  Menu Product Grid
   18.  Menu Mobile Responsive
   19.  State Classes
*/

/* ============================================================
   1. RESET
   ============================================================ */
* {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   2. DESIGN TOKENS
   ============================================================ */   
:root {
   --bg: #1a1612;
   --bg-dark: #0d0907;
   --fg: #f5ede0;
   --fg-muted: #8c7e70;
   --fg-text: #bfae9b;

   --f-display: "Big Shoulders Display", Impact, sans-serif;
   --f-body: "DM Sans", system-ui, sans-serif;
   --f-mono: "JetBrains Mono", monospace;

   /* Refactored Brand Colors & Glow Matrix */
   --accent: #ffb020;
   --accent-yellow-neon: #facc15;
   --accent-dim: #7c4f03;
   --accent-dark: #261801;
   --glow-soft: rgba(245, 158, 11, 0.2);
   --glow-mid: rgba(245, 158, 11, 0.4);
   --glow-hard: rgba(245, 158, 11, 0.6);

   --neon-red: #ff4a4a;
   --neon-red-bg: #2b1411;
   --line: rgba(74, 63, 51, 0.4); /* Translucent blend across dark containers */

   /* Dietary Semantic Colors */
   --diet-veg: #22c55e;
   --diet-gf: #a855f7;
}

/* ============================================================
   3. BASE ELEMENTS
   ============================================================ */
body {
   background: var(--bg);
   color: var(--fg);
   font-family: var(--f-body);
   font-size: 16px;
   line-height: 1.55;
   -webkit-font-smoothing: antialiased;
}

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

button {
   font: inherit;
   color: inherit;
   background: none;
   border: 0;
   cursor: pointer;
}

/* ============================================================
   4. LAYOUT HELPERS
   ============================================================ */

/* ============================================================
   5. NAVBAR
   ============================================================ */
.logo {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.logo-mark {
   background-color: var(--accent);
   color: var(--bg-dark); 
   font-family: var(--f-display);
   font-weight: 900;
   font-size: 1.2rem;
   width: 42px;
   height: 42px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   letter-spacing: -0.5px;
}

.logo-name {
   font-family: var(--f-display);
   font-weight: 900;
}

.logo-sub {
   font-family: var(--f-mono);
   font-size: 0.6rem;
}

.navbar {
   position: sticky;
   top: 0;
   z-index: 1000;
   background-color: rgba(26, 22, 18, 0.95);
   backdrop-filter: blur(8px);
   border-bottom: 1px solid var(--line);
   display: flex;
   align-items: center;
   padding: 1rem 2rem;
}

.nav-links {
   display: flex;
   gap: 2rem;
   list-style: none;
   margin-left: auto;
}

.nav-links a {
   display: inline-block;
   font-family: var(--f-display);
   font-weight: 700;
   font-size: 1.1rem;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
   color: var(--accent);
}

.nav-links a.active {
   border-bottom: 2px solid var(--accent);
   padding-bottom: 1px;
}

.live-indicator {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   background-color: var(--neon-red-bg);
   border: 1px solid var(--neon-red);
   padding: 0.5rem 1rem;
   border-radius: 20px;
   font-family: var(--f-mono);
   font-size: 0.75rem;
   font-weight: 700;
   color: var(--neon-red);
   margin-left: 1.5rem;
   white-space: nowrap;
}

.live-indicator::before {
   content: "";
   width: 6px;
   height: 6px;
   background-color: var(--neon-red);
   border-radius: 50%;
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-family: var(--f-display);
   font-weight: 800;
   font-size: 1.1rem;
   letter-spacing: 0.5px;
   padding: 1rem 1.5rem;
   transition: all 0.2s ease;
}

.btn-yellow {
   background-color: var(--accent);
   color: var(--bg-dark);
}

.btn-yellow:hover {
   background-color: var(--fg);
   transform: translateY(-2px);
}

.btn-outline {
   border: 1px solid var(--line);
   color: var(--fg);
}

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

.btn-small {
   padding: 0.5rem;
   font-size: 0.95rem;
}

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   padding: 4rem 2rem 3rem 2rem;
}

.hero-content {
   flex: 1;
   max-width: 650px;
}

.hero-visuals {
   flex: 1;
   position: relative;
   min-height: 450px;
}

.hero h1 {
   font-family: var(--f-display);
   font-size: clamp(4rem, 8vw, 6.5rem);
   font-weight: 900;
   line-height: 0.9;
   letter-spacing: -1px;
   margin-bottom: 2rem;
}

.neon-text {
   color: var(--accent);
   text-shadow: 0 0 10px rgba(245, 185, 66, 0.2);
   animation: neon-flicker 4s infinite alternate;
}

.hero p {
   max-width: 540px;
   color: var(--fg-text);
   margin-bottom: 2rem;
}

.hero-buttons {
   display: flex;
   align-items: center;
   gap: 1.5rem;
   margin-bottom: 2rem;
}

.hero-buttons a {
   border-radius: 12px;
}

.badges {
   display: flex;
   flex-wrap: wrap;
   gap: 0.5rem;
   margin-bottom: 1.5rem;
}

.badge {
   font-family: var(--f-mono);
   font-size: 0.8rem;
   border: 1px solid var(--line);
   padding: 0.25rem 0.6rem;
   color: var(--fg-muted);
   border-radius: 12px;
   white-space: nowrap;
}

@keyframes neon-flicker {
   0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
      text-shadow: 
         0 0 4px rgba(245, 185, 66, 0.6),
         0 0 12px rgba(245, 185, 66, 0.4),
         0 0 30px rgba(245, 185, 66, 0.2);
      opacity: 1;
   }
   20%, 24%, 55% {
      text-shadow: none;
      opacity: 0.7;
   }
   22% {
      text-shadow: 0 0 4px rgba(245, 185, 66, 0.3);
      opacity: 0.85;
   }
}

.since-tag {
   position: absolute;
   top: -20px;
   right: 15%;
   background-color: #3d120a;
   color: var(--accent);
   font-family: var(--f-display);
   font-weight: 800;
   font-size: 1.3rem;
   letter-spacing: 1px;
   padding: 1rem 1rem 2.5rem 1rem;
   clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 85%, 0% 100%);
   transform: rotate(-10deg); 
}

/* ============================================================
   8. DASHBOARD STATS
   ============================================================ */
.dashboard-stats {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   background-color: var(--bg-dark);
   border: 1px solid var(--line);
   border-radius: 12px;
   margin: 2.5rem 0 0 0;
   padding: 1.5rem 2rem;
   gap: 1.5rem;
   max-width: 580px;
}

.stat-card {
   display: flex;
   flex-direction: column;
   gap: 0.2rem;
}

.stat-label {
   font-family: var(--f-mono);
   font-size: 0.6rem;
   color: var(--fg-muted);
   letter-spacing: 1px;
   text-transform: uppercase;
}

.stat-value {
   font-family: var(--f-display);
   font-size: 1.65rem;
   font-weight: 800;
   line-height: 1;
}

.neon-amber-text {
   color: var(--accent);
   text-shadow: 0 0 10px rgba(245, 185, 66, 0.3);
}

/* ============================================================
   9. TICKER TAPE
   ============================================================ */
.ticker-wrap {
   width: 100%;
   background-color: #000000;
   border-top: 1px solid var(--line);
   border-bottom: 1px solid var(--line);
   overflow: hidden;
   padding: 1rem 0;
   margin: 0 0 2rem 0;
}

.ticker {
   display: flex;
   white-space: nowrap;
   animation: ticker-slide 25s linear infinite;
}

.ticker-item {
   font-family: var(--f-mono);
   font-size: 0.85rem;
   letter-spacing: 1px;
   padding: 0 3rem;
   color: var(--fg);
}

@keyframes ticker-slide {
   0% { transform: translate3d(0, 0, 0); }
   100% { transform: translate3d(-50%, 0, 0); }
}

/* ============================================================
   10. SCHEDULE SECTION & CARDS
   ============================================================ */
.schedule-section {
   padding: 4rem 2rem;
}

.schedule-header {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   margin-bottom: 3rem;
}

.schedule-subtitle {
   font-family: var(--f-mono);
   font-size: 0.85rem;
   color: var(--accent);
   letter-spacing: 1px;
}

.schedule-section h2 {
   font-family: var(--f-display);
   font-size: 3.5rem;
   font-weight: 900;
   line-height: 1;
   margin-top: 0.5rem;
}

.game-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.game-card {
   background-color: rgba(255, 255, 255, 0.02);
   border: 1px solid var(--line);
   padding: 2rem;
   border-radius: 12px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   min-height: 250px;
   transition: transform 0.2s ease, border-color 0.2s ease;
}

.featured-card {
   border-color: rgba(245, 185, 66, 0.4);
   box-shadow: inset 0 0 15px rgba(245, 185, 66, 0.03);
}

.game-card:hover {
   transform: translateY(-4px);
   border-color: var(--accent);
}

.card-meta {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.league-badge {
   font-family: var(--f-mono);
   font-size: 0.75rem;
   color: var(--accent);
   border: 1px solid rgba(245, 185, 66, 0.3);
   padding: 0.2rem;
   border-radius: 4px;
}

.live-dot-badge {
   font-family: var(--f-mono);
   font-size: 0.7rem;
   font-weight: 700;
   color: #ff4a4a;
   background-color: rgba(255, 74, 74, 0.1);
   border: 1px solid var(--neon-red);
   padding: 0.2rem 0.6rem;
   border-radius: 20px;
}

.teams-display {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
   margin: 2rem 0;
   width: 100%;
}

.team {
   display: flex;
   flex-direction: column;
   align-items: center;
   flex: 1;
   text-align: center;
}

.team-name {
   font-family: var(--f-display);
   font-size: 1.8rem;
   font-weight: 800;
   letter-spacing: 0.5px;
}

.team-loc {
   font-family: var(--f-mono);
   font-size: 0.65rem;
   color: var(--fg-muted);
}

.vs-sign {
   font-family: var(--f-body);
   font-style: italic;
   font-size: 0.9rem;
   color: var(--fg-muted);
}

.card-footer {
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-top: 1px dashed var(--line);
   padding-top: 1.5rem;
   font-family: var(--f-mono);
   font-size: 0.8rem;
   color: var(--fg-text);
   width: 100%;
}
/* ============================================================
   10b. GAMES GRID MATRIX LAYOUT
   ============================================================ */
.schedule-matrix-section {
      padding: 2rem 0 6rem 0;
   }

   .date-group-block {
      margin-bottom: 4rem;
   }

   .date-group-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      border-bottom: 1px solid var(--line);
      padding-bottom: 1rem;
      margin-bottom: 1.5rem;
   }

   .date-title {
      font-family: var(--f-display);
      font-size: 2.2rem;
      font-weight: 800;
      text-transform: uppercase;
   }

   .game-count-label {
      font-family: var(--f-mono);
      font-size: 0.8rem;
      color: var(--fg-muted);
   }

   .matrix-table-frame {
      background-color:var(--bg-dark);
      border: 1px solid var(--line);
      border-radius: 12px;
      overflow: hidden;
   }

   .games-table {
      width: 100%;
      border-collapse: collapse;
      table-layout: fixed;
   }

   .games-table thead tr {
      background-color: rgba(0, 0, 0, 0.2);
      border-bottom: 1px solid var(--line);
   }

   .games-table th,
   .games-table td {
      padding: 1.25rem 1.5rem;
      text-align: left;
      vertical-align: middle;
   }

   .games-table th:nth-child(1),
   .games-table td:nth-child(1) { width: 6rem; }

   .games-table th:nth-child(3),
   .games-table td:nth-child(3) { width: 6rem; }

   .games-table th:nth-child(4),
   .games-table td:nth-child(4) { width: 9rem; }

   .games-table tbody tr {
      border-bottom: 1px dashed var(--line);
   }

   .games-table tbody tr:last-child {
      border-bottom: none;
   }

   .cdr-hdr {
      font-family: var(--f-mono);
      font-size: 0.7rem;
      color: var(--fg-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
   }

   .sports-badge {
      font-family: var(--f-mono);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--accent);
      border: 1px solid rgba(255, 176, 32, 0.3);
      padding: 0.15rem 0.5rem;
      border-radius: 4px;
      display: inline-block;
   }

   .col-data-matchup {
      font-family: var(--f-display);
      font-size: 1rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      white-space: nowrap;
   }

   .col-data-time {
      font-family: var(--f-mono);
      font-size: 0.9rem;
      color: var(--fg-text);
      text-align: left;
   }

   .status-badge-live {
      font-family: var(--f-mono);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--neon-red);
      border: 1px solid var(--neon-red);
      background-color: var(--neon-red-bg);
      padding: 0.35rem 0.85rem;
      border-radius: 999px;
      display: inline-block;
      white-space: nowrap;
   }

   .col-data-status {
      font-family: var(--f-mono);
      font-size: 0.85rem;
      color: var(--fg-muted);
      text-transform: uppercase;
   }

   .sport-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* Typography matching your exact matrix data size */
    font-family: var(--f-mono, monospace);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--fg-muted, #a3a3a3);
    
    /* Capsule Frame Construction */
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15); /* Soft, non-distracting border line */
    border-radius: 100px; /* Forces standard rounded capsule look */
    background-color: rgba(255, 255, 255, 0.02); /* Very subtle depth fill */
    
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    padding: 0.2rem 0.9rem;
}

/* ============================================================
   10d. GAMES FILTER BAR
   ============================================================ */
.filter-section {
    padding: 0;
    margin-bottom: 3rem;
}

.filter-section-wrapper {
    display: flex; 
    gap: 1rem; 
    flex-wrap: wrap; 
    width: 100%;
}

.day-filters {
    flex: 1; 
    min-width: 300px; 
    justify-content: flex-start; 
    gap: 1rem;
}

.sport-filters {
    flex: 1.2; 
    min-width: 350px; 
    justify-content: flex-start; 
    gap: 1rem;
}

/* Active Highlight Hook */
.filter-btn {
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
}

.filter-btn.active-filter,
.filter-btn.active {
    background-color: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    border-radius: 999px;
}

.matchup-vs-divider {
    color: var(--fg-muted); 
    font-weight: 400; 
    font-family: var(--f-body, sans-serif); 
    font-style: italic; 
    font-size: 1.1rem; 
    padding: 0 0.2rem;
}
/* ============================================================
   10c. GAMES HERO & MINIDASHBOARD
   ============================================================ */
.games-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    padding: 4rem 2rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.games-hero-content {
    flex: 1;
    max-width: 600px;
}

.live-subtitle {
    font-family: var(--f-mono);
    color: var(--neon-red);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.games-title {
    font-family: var(--f-display);
    font-size: clamp(4rem, 7vw, 6rem);
    font-weight: 900;
    color: var(--fg); /* Inherits your main off-white site brand color */
    margin: 0 0 1.5rem 0;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.games-description {
    font-family: var(--f-body);
    color: var(--fg-text);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.minidashboard {
    background-color: var(--bg-dark); /* Blends perfectly with your brand layout */
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    min-width: 380px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.panel-tag {
    font-family: var(--f-mono);
    color: var(--accent-yellow-neon);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.panel-live-status {
    font-family: var(--f-mono);
    color: var(--neon-red);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: live-glow 2s infinite;
}

.dashboard-stats-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mini-stat-label {
    font-family: var(--f-mono);
    color: var(--fg-muted);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.mini-stat-value {
    font-family: var(--f-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--fg);
    white-space: nowrap;
}

/* Glowing Accent utility */
.neon-amber {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(245, 185, 66, 0.2);
}

/* Live Blink Animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

@keyframes live-glow {
    0%, 100% { text-shadow: 0 0 8px rgba(255, 74, 74, 0.8); }
    50% { text-shadow: 0 0 2px rgba(255, 74, 74, 0.1); }
}
/* ============================================================
   11. WEEKLY LINEUP & FEATURED (Locked To Equal Height)
   ============================================================ */
.lineup-featured-section {
   padding: 0 2rem 5rem 2rem;
   background-color: var(--bg);
}

.lineup-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 2rem;
   align-items: stretch; 
}

.lineup-card {
   background-color: #2b0b0b; 
   border: 1px solid rgba(255, 255, 255, 0.02);
   border-radius: 12px;
   padding: 3.5rem 3rem;
   display: flex;
   flex-direction: column;
   height: 100%;
}

.lineup-subtitle {
   font-family: var(--f-mono);
   font-size: 0.75rem;
   color: var(--accent);
   letter-spacing: 2px;
   text-transform: uppercase;
   font-weight: 600;
}

.lineup-main-title {
   font-family: var(--f-display);
   font-size: 4.5rem;
   font-weight: 900;
   line-height: 0.95;
   margin-top: 0.5rem;
   margin-bottom: 3.5rem;
   color: #ffffff;
   text-transform: uppercase;
   letter-spacing: -0.5px;
}

.lineup-list {
   display: flex;
   flex-direction: column;
   gap: 0.25rem;
}

.lineup-item {
   border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lineup-item:last-child {
   border-bottom: none;
}

.lineup-link {
   display: flex;
   flex-direction: column; 
   align-items: flex-start;
   padding: 1.5rem 1rem;
   width: 100%;
   border-radius: 6px;
   transition: background-color 0.2s ease, transform 0.2s ease;
}

.lineup-link:hover,
.lineup-link.is-today {
   background-color: rgba(255, 255, 255, 0.03);
}

.day-label {
   font-family: var(--f-mono);
   font-size: 0.7rem;
   font-weight: 700;
   color: var(--accent);
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 0.25rem;
}

.event-details {
   width: 100%;
}

.event-details h3 {
   font-family: var(--f-display);
   font-size: 1.35rem;
   font-weight: 800;
   color: #ffffff;
   letter-spacing: 0.5px;
   text-transform: uppercase;
   line-height: 1.2;
}

.event-details p {
   font-family: var(--f-mono);
   font-size: 0.7rem;
   color: rgba(255, 255, 255, 0.4);
   margin-top: 0.3rem;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.item-arrow {
   font-family: var(--f-mono);
   font-size: 0.75rem;
   color: rgba(255, 255, 255, 0.3);
   margin-top: 0.5rem; 
   transition: color 0.2s ease, transform 0.2s ease;
}

.lineup-link:hover .item-arrow {
   color: var(--accent);
   transform: translateX(3px);
}

.featured-dish-card {
   background-color: #0c0907;
   border: 1px solid var(--line);
   border-radius: 12px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   height: 100%; 
}

.dish-image-container {
   width: 100%;
   height: 360px; 
   overflow: hidden;
}

.dish-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-dish-card:hover .dish-img {
   transform: scale(1.03);
}

.dish-info-content {
   padding: 3.5rem 3rem;
   display: flex;
   flex-direction: column;
   flex-grow: 1; 
}

.dish-badge {
   font-family: var(--f-mono);
   font-size: 0.75rem;
   color: #5bc0be; 
   letter-spacing: 1.5px;
   text-transform: uppercase;
   font-weight: 700;
}

.dish-title {
   font-family: var(--f-display);
   font-size: 3.2rem;
   font-weight: 900;
   line-height: 1;
   margin-top: 0.5rem;
   margin-bottom: 1.5rem;
   color: #ffffff;
   text-transform: uppercase;
}

.dish-description {
   font-family: var(--f-body);
   font-size: 0.95rem;
   color: var(--fg-muted);
   line-height: 1.6;
   margin-bottom: 3rem; 
}

.dish-footer {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-top: auto; /* Permanently locks price line to base of row grid */
}

.dish-price {
   font-family: var(--f-mono);
   font-size: 2.2rem;
   font-weight: 300;
   color: var(--accent);
   line-height: 1;
   text-transform: uppercase;
   letter-spacing: -1px;
}

.btn-menu {
   font-family: var(--f-display);
   font-weight: 900;
   font-size: 0.85rem;
   letter-spacing: 0.5px;
   padding: 0.5rem 1.5rem;
   border-radius: 6px;
   text-transform: uppercase;
}

/* ============================================================
   11b. FEATURES, BIG STATS & EVENTS BANNER
   ============================================================ */
.features-stats-section {
   padding: 6rem 2rem;
   text-align: center;
   background-color: var(--bg-dark);
}

.features-header h2 {
   font-family: var(--f-display);
   font-size: clamp(3.5rem, 6vw, 5.5rem);
   font-weight: 900;
   letter-spacing: -0.5px;
   line-height: 1;
   margin-bottom: 1.5rem;
   text-transform: uppercase;
}

/* Variable-Driven Gritty Neon Flicker Loop */
.neon-text-alt {
   color: var(--accent);
   text-shadow: 0 0 10px var(--glow-hard),
                0 0 20px var(--glow-mid),
                0 0 40px var(--glow-soft);
   animation: neonSignFlicker 8s linear infinite;
   
   /* Prevents the surrounding grids or headers from trembling during paint cycles */
   will-change: text-shadow, opacity; 
   transform: translateZ(0); 
}

@keyframes neonSignFlicker {
   0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
      opacity: 1;
      color: var(--accent);
      text-shadow: 0 0 10px var(--glow-hard),
                   0 0 20px var(--glow-mid),
                   0 0 40px var(--glow-soft);
   }
   20% {
      opacity: 0.3;
      color: var(--accent-dim);
      text-shadow: none;
   }
   21.999% {
      opacity: 0.5;
      color: var(--accent-dim);
      text-shadow: 0 0 4px var(--glow-soft);
   }
   63% {
      opacity: 0.2;
      color: var(--accent-dim);
      text-shadow: none;
   }
   63.5% {
      opacity: 0.9;
      color: var(--accent);
      text-shadow: 0 0 8px var(--glow-mid);
   }
   64.5% {
      opacity: 0.1;
      color: var(--accent-dark);
      text-shadow: none;
   }
   68% {
      opacity: 0.4;
      color: var(--accent-dim);
      text-shadow: none;
   }
   69% {
      opacity: 0.8;
      color: var(--accent);
      text-shadow: 0 0 6px var(--glow-mid);
   }
}

.features-header p {
   font-family: var(--f-body);
   font-size: 1.15rem;
   color: var(--fg-text);
   max-width: 720px;
   margin: 0 auto 5rem auto;
   line-height: 1.6;
}

.big-stats-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 3rem;
   max-width: 1100px;
   margin: 0 auto;
}

.big-stat-item {
   display: flex;
   flex-direction: column;
   align-items: center;
}

.stat-num {
   font-family: var(--f-display);
   font-size: clamp(4.5rem, 7vw, 6.5rem);
   font-weight: 900;
   line-height: 1;
   margin-bottom: 0.5rem;
}

.glow-amber {
   color: var(--accent);
   text-shadow: 0 0 20px rgba(245, 185, 66, 0.3);
}

.stat-desc {
   font-family: var(--f-mono);
   font-size: 0.75rem;
   color: var(--fg-muted);
   letter-spacing: 2px;
   text-transform: uppercase;
}

.private-events-section {
   padding: 0 2rem 6rem 2rem;
   background-color: var(--bg-dark);
}

.events-banner-card {
   background: linear-gradient(rgba(43, 19, 11, 0.93), rgba(43, 19, 11, 0.93)), 
               repeating-linear-gradient(90deg, transparent, transparent 18px, rgba(0,0,0,0.12) 18px, rgba(0,0,0,0.12) 20px);
   border: 1px solid rgba(245, 185, 66, 0.1);
   border-radius: 16px;
   padding: 4.5rem 4rem;
   display: grid;
   grid-template-columns: 1.2fr 0.8fr;
   gap: 4rem;
   align-items: center;
}

.events-tag {
   font-family: var(--f-mono);
   font-size: 0.8rem;
   color: var(--accent);
   letter-spacing: 2px;
   font-weight: 600;
}

.events-title {
   font-family: var(--f-display);
   font-size: clamp(2.5rem, 4vw, 3.8rem);
   font-weight: 900;
   line-height: 1.05;
   color: #ffffff;
   margin-top: 1rem;
   text-transform: uppercase;
}

.events-description {
   font-family: var(--f-body);
   font-size: 1.05rem;
   color: rgba(255, 255, 255, 0.85);
   line-height: 1.6;
   max-width: 520px;
   margin-top: 1.5rem;
}

.events-buttons {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin-top: 2.5rem; 
}

.events-buttons .btn {
   border-radius: 6px;
   font-size: 0.95rem;
   font-weight: 800;
   padding: 1rem 2rem;
}

.events-buttons .btn-outline {
   background-color: rgba(0, 0, 0, 0.25);
   border-color: rgba(255, 255, 255, 0.1);
}

.events-buttons .btn-outline:hover {
   border-color: var(--accent);
   color: var(--accent);
}

.events-banner-image-wrap {
   width: 100%;
   height: 380px; 
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.events-banner-img {
   width: 100%;
   height: 100%;
   object-fit: cover; 
   display: block;
   transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.events-banner-card:hover .events-banner-img {
   transform: scale(1.04);
}

@media (max-width: 960px) {
   .big-stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
   }
   .events-banner-card {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      padding: 3rem;
   }
   .events-banner-image-wrap {
      height: 300px; 
   }
}

/* ============================================================
   12. FOOTER
   ============================================================ */
footer {
   background-color: var(--bg-dark);
   padding: 4rem 2rem 2rem 2rem;
}

.footer-columns {
   display: grid;
   grid-template-columns: repeat(4, 1fr);          
   gap: 3.5rem; 
   margin-bottom: 3rem;
}

.footer-column-heading {
   font-family: var(--f-display);
   font-size: 1.1rem;
   color: var(--fg-muted);
   letter-spacing: 1px;
   margin-bottom: 1.5rem;
}

.footer-desc {
   margin-top: 1rem;
   font-size: 0.9rem;
   color: var(--fg-text);
}

.footer-column p {
   font-size: 0.95rem;
   margin-bottom: 0.5rem;
}

.hours-list {
   list-style: none;
   max-width: 220px;
}

.hours-list, .explore-links {
   list-style: none;
}

.hours-list li {
   display: flex;
   justify-content: space-between;
   font-family: var(--f-mono);
   font-size: 0.9rem;
   margin-bottom: 0.5rem;
}

.hours-list li span:last-child {
   color: var(--fg-text);
}

.kitchen-note {
   font-family: var(--f-display);
   font-weight: 800;
   color: var(--accent);
   margin-top: 1rem;
}

.explore-links li {
   margin-bottom: 0.5rem;
   font-size: 0.95rem;
}

.explore-links a:hover {
   color: var(--accent);
}

.social-links {
   display: flex;
   gap: 0.5rem;
   margin-top: 1.5rem;
}

.social-links a {
   font-family: var(--f-mono);
   font-size: 0.7rem;
   width: 32px;
   height: 32px;
   border: 1px solid var(--line);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.2s ease;
}

.social-links a:hover {
   color: var(--accent);
   border-color: var(--accent);
}

.footer-bottom {
   border-top: 1px solid var(--line);
   padding-top: 1.5rem;
   display: flex;
   justify-content: space-between;
   font-family: var(--f-mono);
   font-size: 0.75rem;
   color: var(--fg-muted);
}

/* ============================================================
   13. RESPONSIVE
   ============================================================ */

/* Remove blue tap flash on iOS */
a, button { -webkit-tap-highlight-color: transparent; }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
   display: none;
   background: none;
   border: 1px solid var(--line);
   color: var(--fg);
   width: 40px;
   height: 40px;
   border-radius: 6px;
   font-size: 1.2rem;
   cursor: pointer;
   margin-left: auto;
   flex-shrink: 0;
   align-items: center;
   justify-content: center;
}

/* Tablet */
@media (max-width: 960px) {
   .hero { flex-direction: column; }
   .game-grid { grid-template-columns: repeat(2, 1fr); }
   .lineup-grid { grid-template-columns: 1fr; }
   .big-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
   .events-banner-card { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem; }
   .events-banner-image-wrap { height: 300px; }
}

/* iPhone / mobile */
@media (max-width: 768px) {

   /* Safe areas for notch and home bar */
   .navbar {
      padding: 1rem max(1.5rem, env(safe-area-inset-left));
      padding-right: max(1.5rem, env(safe-area-inset-right));
   }

   /* Show hamburger button — position:relative + z-index keeps it above the
      nav overlay (z-index:999) so the ✕ button stays tappable when menu is open */
   .nav-toggle { display: flex; position: relative; z-index: 1000; }

   /* Remove backdrop-filter while nav is open — otherwise position:fixed children
      are trapped inside the navbar's bounds instead of covering the full viewport */
   .navbar.nav-is-open { backdrop-filter: none; }

   /* Hide the live pill (saves space in tight header) */
   .live-indicator { display: none; }

   /* Full-screen nav overlay — hidden by default */
   .nav-links {
      display: none;
   }

   /* Shown when JS adds .is-open */
   .nav-links.is-open {
      display: flex;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #0d0907;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      z-index: 999;
      margin-left: 0;
   }

   .nav-links a {
      font-size: 2rem;
      min-height: 48px;
      display: flex;
      align-items: center;
   }

   /* Hero */
   .hero { flex-direction: column; padding: 2rem 1.5rem; gap: 1.5rem; }
   .hero-visuals { display: none; }
   .hero h1 { font-size: clamp(3rem, 16vw, 5rem); }

   .hero-buttons {
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
   }

   .hero-buttons a {
      text-align: center;
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
   }

   /* Dashboard stats: 2×2 on mobile */
   .dashboard-stats {
      grid-template-columns: repeat(2, 1fr);
      max-width: 100%;
      gap: 1rem;
      padding: 1rem;
   }

   /* Schedule section */
   .schedule-section { padding: 2rem 1.5rem; }
   .schedule-section h2 { font-size: 2.5rem; }
   .game-grid { grid-template-columns: 1fr; gap: 1rem; }

   /* Lineup */
   .lineup-featured-section { padding: 0 1.5rem 3rem; }
   .lineup-card { padding: 2rem 1.5rem; }
   .lineup-main-title { font-size: 3rem; margin-bottom: 2rem; }
   .dish-image-container { height: 224px; }
   .dish-info-content { padding: 2rem 1.5rem; }
   .dish-title { font-size: 2rem; }

   /* Big stats */
   .features-stats-section { padding: 3rem 1.5rem; }
   .big-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

   /* Events banner */
   .private-events-section { padding: 0 1.5rem 3rem; }
   .events-banner-card { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 1.5rem; }
   .events-banner-image-wrap { height: 224px; }
   .events-buttons { flex-direction: column; align-items: stretch; gap: 1rem; }
   .events-buttons .btn {
      text-align: center;
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
   }

   /* Games page */
   .games-hero { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; }
   .minidashboard { min-width: unset; width: 100%; }
   /* Remove horizontal padding so the table uses full main width */
   .schedule-matrix-section { padding: 1rem 0 4rem; }

   /* Matrix table — tighter rows so 4 columns fit */
   .matrix-table-frame { overflow-x: visible; border-radius: 6px; }
   .games-table th,
   .games-table td { padding: 1rem 1rem; }
   .games-table th:nth-child(1), .games-table td:nth-child(1) { width: 5rem; }
   .games-table th:nth-child(3), .games-table td:nth-child(3) { width: 5rem; }
   .games-table th:nth-child(4), .games-table td:nth-child(4) { width: 8rem; }
   .col-data-matchup { font-size: 0.85rem; }

   /* Games filters */
   .filter-section-wrapper { flex-direction: column; }
   .day-filters, .sport-filters { min-width: unset; width: 100%; }
   .filter-buttons { flex-wrap: wrap; }

   /* Promo banner */
   .promo-banner-card { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; gap: 1.5rem; }
   .promo-heading { font-size: 1.75rem; }
   .promo-action-buttons { flex-direction: column; width: 100%; }
   .btn-promo-yellow, .btn-promo-dark {
      width: 100%;
      text-align: center;
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
   }

   /* Footer */
   footer { padding: 2.5rem 1.5rem max(1.5rem, env(safe-area-inset-bottom, 0)); }
   .footer-columns { grid-template-columns: 1fr; gap: 2.5rem; }
   .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

   /* Menu page */
   .menu-hero-section { flex-direction: column; padding: 2rem 1.5rem 1rem; gap: 1.5rem; }
   .kitchen-status-card { min-width: unset; width: 100%; }
   .filter-section { padding: 0 1.5rem; margin-bottom: 2rem; }
   .filter-bar-container { flex-direction: column; align-items: flex-start; flex-wrap: wrap; gap: 0.5rem; }
   .menu-products-grid { grid-template-columns: 1fr; gap: 1.5rem; }
   .category-header-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
   .category-description { text-align: left; }
}

/* ============================================================
   MOBILE MATRIX (≤480px) — collapse to 3 columns
   ============================================================ */
.sport-badge-inline { display: none; }

@media (max-width: 480px) {
   /* --- Dashboard card --- */
   .minidashboard { padding: 1.25rem 1rem; }
   .dashboard-stats-row { gap: 0.75rem; }
   .mini-stat-value { font-size: 1.5rem; }

   /* --- Filter buttons: horizontal scroll instead of wrap --- */
   .filter-buttons {
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-bottom: 2px;
   }
   .filter-buttons::-webkit-scrollbar { display: none; }

   /* --- Matrix: hide sport column, show inline badge in matchup --- */
   .games-table th:nth-child(1),
   .games-table td:nth-child(1) { display: none; }
   .games-table th:nth-child(3), .games-table td:nth-child(3) { width: 4.5rem; }
   .games-table th:nth-child(4), .games-table td:nth-child(4) { width: 7rem; }
   .games-table th, .games-table td { padding: 0.75rem 0.75rem; }
   .sport-badge-inline { display: inline-flex; margin-right: 0.4rem; }
   .col-data-matchup { white-space: normal; }
   .col-data-time { font-size: 0.8rem; }
   .col-data-status { font-size: 0.7rem; }
   .status-badge-live { font-size: 0.65rem; padding: 0.2rem 0.45rem; }
}

/* ============================================================
   14. MENU HERO
   ============================================================ */
   .menu-hero-section {
      padding: 4rem 2rem 1rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 4rem;
   }

   .menu-hero-content .menu-tag {
      font-family: var(--f-mono);
      color: var(--accent-yellow-neon);
      font-size: 0.8rem;
      letter-spacing: 2px;
   }

   .menu-title {
      font-family: var(--f-display);
      font-size: clamp(4rem, 6vw, 5.5rem);
      font-weight: 900;
      line-height: 0.9;
      margin: 0.5rem 0 1rem 0;
      letter-spacing: -1px;
   }

   .menu-subtitle {
      color: var(--fg-text);
      max-width: 550px;
      font-size: 0.95rem;
   }

   .kitchen-status-card {
      background-color: var(--bg-dark);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 2rem;
      min-width: 320px;
   }

   .status-top-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
   }

   .status-label-main {
      font-family: var(--f-mono);
      font-size: 0.8rem;
      color: var(--fg-muted);
      text-transform: uppercase;
      letter-spacing: 0.1rem;
   }

   .status-pill-open {
      color: var(--diet-veg);
      border: 1px solid var(--diet-veg);
      border-radius: 20px;
      padding: 0.25rem 1rem;
      font-family: var(--f-mono);
      font-size: 0.8rem;
   }

   .status-times-grid {
      display: flex;
      gap: 1rem;
      padding-top: 1rem;
   }

   .status-time-label {
      font-family: var(--f-mono);
      font-size: 0.8rem;
      color: var(--fg-muted);
      text-transform: uppercase;
   }

   .status-time-value {
      font-family: var(--f-display);
      font-size: 2rem;
      font-weight: 800;
      white-space: nowrap;
   }

/* ============================================================
   15. MENU FILTER SYSTEM
   ============================================================ */
   .filter-section {
      padding: 0 2rem;
      max-width: 1200px;
      margin: 2rem auto 4rem auto;
   }

   .filter-bar-container {
      background-color: var(--bg-dark);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 1rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
   }

   .filter-buttons {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: nowrap;
      overflow-x: auto;
   }

   .filter-title-label {
      font-family: var(--f-mono);
      font-size: 0.75rem;
      color: var(--fg-muted);
      letter-spacing: 1.5px;
   }

/* ==========================================================================
   WINGS TO YOUR COUCH BANNER ENGINE (PROMO ARCHITECTURE)
   ========================================================================== */
.promo-banner-container {
    padding: 0 2rem; /* Matches your main content alignment padding */
    margin: 4rem 0;
    width: 100%;
    box-sizing: border-box;
}

.promo-banner-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #2d0e0a 0%, #1a0604 100%);
    border: 1px solid #3d1510;
    border-radius: 12px;
    padding: 3rem 4rem;
    position: relative;
    overflow: hidden;
    gap: 3rem;
}

/* Subtle diagonal stripe textures for UI depth */
.promo-banner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.15) 10px,
        rgba(0, 0, 0, 0.15) 20px
    );
    pointer-events: none;
    z-index: 1;
}

/* Left Content Column */
.promo-left-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.promo-tagline {
    font-family: var(--f-mono, 'JetBrains Mono', monospace);
    color: var(--accent, #ffb300);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.5rem;
}

.promo-heading {
    font-family: var(--f-display, 'Big Shoulders Display'), sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
}

.promo-text {
    font-family: var(--f-body, 'DM Sans'), sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 460px;
    line-height: 1.5;
    margin: 0;
}

/* Right Action Buttons Column */
.promo-action-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

/* Primary Amber Order Button */
.btn-promo-yellow {
    display: inline-block;
    background: var(--accent, #ffb300);
    color: #000;
    font-family: var(--f-display, 'Big Shoulders Display'), sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 1rem 2rem;
    border-radius: 6px;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 0 20px rgba(255, 179, 0, 0.25);
}

.btn-promo-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(255, 179, 0, 0.45);
    background: #ffc124;
}

/* Dark Delivery Option Buttons */
.btn-promo-dark {
    display: inline-block;
    background: rgba(18, 18, 18, 0.6);
    color: #fff;
    font-family: var(--f-display, 'Big Shoulders Display'), sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 1rem 2rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.btn-promo-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive collapse breakpoint for smaller displays */
@media (max-width: 1024px) {
    .promo-banner-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem;
        gap: 2rem;
    }
    
    .promo-action-buttons {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

   @keyframes shimmer {
    0% { background-position: -600px 0; }
    100% { background-position: 600px 0; }
}

.skeleton-row {
    background: linear-gradient(90deg, #1a1512 25%, #2a2118 50%, #1a1512 75%);
    background-size: 600px 100%;
    animation: shimmer 1.4s infinite;
    height: 52px;
    border-radius: 4px;
    margin-bottom: 2px;
}

   .filter-btn {
      background: transparent;
      border: 1px solid rgba(140, 126, 112, 0.55);
      color: var(--fg);
      font-family: var(--f-display);
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.5px;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      text-transform: uppercase;
      transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
      white-space: nowrap;
      cursor: pointer;
   }

   .filter-btn:hover {
      border-color: var(--fg);
      color: var(--fg);
      background: rgba(140, 126, 112, 0.1);
   }

   .filter-legend {
      display: flex;
      gap: 1.5rem;
      font-family: var(--f-mono);
      font-size: 0.7rem;
      color: var(--fg-muted);
      letter-spacing: 0.5px;
      text-transform: uppercase; 
   }
/* ============================================================
   16. MENU CATEGORIES & GLOW
   ============================================================ */
   main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      padding-bottom: 5rem;
   }

   .menu-category-block {
      margin-bottom: 5rem;
   }

   .category-header-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      border-bottom: 1px solid var(--line);
      padding-bottom: 1rem;
      margin-bottom: 3rem;
      gap: 2rem;
   }

   .category-title.neon-text-alt {
      font-family: var(--f-display);
      font-weight: 900;
      font-size: clamp(3rem, 5vw, 4.2rem);
      letter-spacing: 1px;
      color: var(--accent-yellow-neon);
      text-transform: uppercase;
      line-height: 1;
      text-shadow: 0 0 12px rgba(250, 204, 21, 0.55),
                  0 0 35px rgba(250, 204, 21, 0.25);
      animation: neon-flicker 4s infinite alternate;
      will-change: text-shadow;
   }

   .category-description {
      color: var(--fg-muted);
      font-family:var(--f-body);
      font-style: italic;
      font-size: 1.05rem;
      padding-bottom: 0.25rem;
      text-align: right;
   }

   .last-updated-label {
      font-family: var(--f-mono);
      font-size: 0.7rem;
      color: var(--fg-muted);
      letter-spacing: 1px;
      padding: 0 2rem 0.75rem;
      text-transform: uppercase;
   }

   @keyframes menuNeonFlicker {
      0%, 19.99%, 62.99%, 64.99%, 70%, 100% {
         text-shadow: 0 0 12px rgba(250, 204, 21, 0.55), 00 35px rgba(250, 204, 21, 0.25);
      }
      20%, 21.99%, 63%, 64.5% {
         text-shadow: 0 0 4px rgba(250, 204, 21, 0.2);
      }
   }
/* ============================================================
   17. MENU PRODUCT GRID
   ============================================================ */
   .menu-products-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem 5rem;
   }

   .menu-item-row {
      border-bottom: 1px dashed var(--line);
      padding-bottom: 1.5rem;
      display: flex;
      flex-direction: column;
   }

   .menu-item-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 0.5rem;
   }

   .item-name {
      font-family: var(--f-body);
      font-weight: 700;
      font-size: 1.35rem;
      color: var(--fg);
      display: flex;
      align-items: center;
      gap: 0.5rem;
   }

   .item-price {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: 1.45rem;
      color: var(--accent-yellow-neon);
      letter-spacing: 0.5px;
   }

   .item-ingredients {
      color: var(--fg-text);
      font-size: 0.95rem;
   }

   .item-icon-fire, .item-icon-star {
      font-size: 1rem;
      margin-left: 0.25rem;
   }

   .item-icon-tag {
      font-family: var(--f-mono);
      font-size: 0.75rem;
      font-weight: 700;
      border: 1px solid currentColor;
      padding: 0.1rem 0.35rem;
      border-radius: 4px;
      margin-left: 0.5rem;
   }

   .text-veg { color: var(--diet-veg); }
   .text-gf { color: var(--diet-gf); }
   

   /* ==========================================================================
   WINGS TO YOUR COUCH BANNER ENGINE (PROMO ARCHITECTURE)
   ========================================================================== */
.promo-banner-container {
    padding: 0 2rem; /* Matches your main content alignment padding */
    margin: 4rem 0;
    width: 100%;
    box-sizing: border-box;
}

.promo-banner-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #2d0e0a 0%, #1a0604 100%);
    border: 1px solid #3d1510;
    border-radius: 12px;
    padding: 3rem 4rem;
    position: relative;
    overflow: hidden;
    gap: 3rem;
}

/* Subtle diagonal stripe textures for UI depth */
.promo-banner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.15) 10px,
        rgba(0, 0, 0, 0.15) 20px
    );
    pointer-events: none;
    z-index: 1;
}

/* Left Content Column */
.promo-left-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.promo-tagline {
    font-family: var(--f-mono, 'JetBrains Mono', monospace);
    color: var(--accent, #ffb300);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.5rem;
}

.promo-heading {
    font-family: var(--f-display, 'Big Shoulders Display'), sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
}

.promo-text {
    font-family: var(--f-body, 'DM Sans'), sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 460px;
    line-height: 1.5;
    margin: 0;
}

/* Right Action Buttons Column */
.promo-action-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

/* Primary Amber Order Button */
.btn-promo-yellow {
    display: inline-block;
    background: var(--accent, #ffb300);
    color: #000;
    font-family: var(--f-display, 'Big Shoulders Display'), sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 1rem 2rem;
    border-radius: 6px;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 0 20px rgba(255, 179, 0, 0.25);
}

.btn-promo-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(255, 179, 0, 0.45);
    background: #ffc124;
}

/* Dark Delivery Option Buttons */
.btn-promo-dark {
    display: inline-block;
    background: rgba(18, 18, 18, 0.6);
    color: #fff;
    font-family: var(--f-display, 'Big Shoulders Display'), sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 1rem 2rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.btn-promo-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive collapse breakpoint for smaller displays */
@media (max-width: 1024px) {
    .promo-banner-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem;
        gap: 2rem;
    }
    
    .promo-action-buttons {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}
/* Section 18 merged into section 13 responsive block */
/* ============================================================
   19. STATE CLASSES
   ============================================================ */
.menu-item-row.is-hidden, .menu-category-block.is-hidden {
      display: none !important;
   }

/* These live AFTER the global menu rules so they actually win on mobile. */
@media (max-width: 768px) {
   main {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      padding-bottom: 3rem;
   }

   /* Menu: single column items */
   .menu-products-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
   }

   /* Menu: stack title + description, both left-aligned */
   .category-header-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
   }

   .category-description {
      text-align: left;
   }

   .category-title.neon-text-alt {
      font-size: clamp(2.5rem, 12vw, 3.5rem);
   }

   /* Menu hero: collapse gap when stacked */
   .menu-hero-section {
      gap: 1.5rem;
      padding: 2rem 1.5rem 1.5rem;
   }

   /* Kitchen card: inset within the hero section so it has breathing room */
   .kitchen-status-card {
      min-width: unset;
      width: calc(100% - 2rem);
      margin: 0 1rem;
   }

   /* Filter: single scrollable row, scrollbar hidden */
   .filter-bar-container {
      overflow: hidden;
      padding: 0.75rem 1rem;
   }

   .filter-buttons {
      flex-wrap: nowrap;
      overflow-x: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
   }

   .filter-buttons::-webkit-scrollbar {
      display: none;
   }

   /* Menu items: price pins to top when name wraps; badge flows inline */
   .menu-item-header {
      align-items: flex-start;
   }

   .item-name {
      display: block;
   }

   /* Filter legend is redundant on mobile — buttons already say the full label */
   .filter-legend {
      display: none;
   }

   /* Tighten the gap between kitchen status card and filter bar */
   .filter-section {
      margin: 1rem auto 2rem auto;
   }

   /* Private events banner: scale down the heading so it doesn't dominate on mobile */
   .events-banner-card .events-title {
      font-size: 1.75rem;
      line-height: 1.1;
   }

   /* Schedule section: stack title and button vertically */
   .schedule-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 2rem;
   }

   .schedule-section h2 {
      font-size: 2.5rem;
   }
}

/* ============================================================
   20. EVENTS PAGE
   ============================================================ */
.events-hero {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
   max-width: 1100px;
   margin: 0 auto;
   padding: 5rem 2rem 4rem;
}

.events-subtitle {
   display: block;
   font-family: var(--f-mono);
   font-size: 0.75rem;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--accent);
   margin-bottom: 1rem;
}

.events-title {
   font-family: var(--f-display);
   font-size: clamp(3.5rem, 9vw, 6.5rem);
   font-weight: 900;
   text-transform: uppercase;
   line-height: 1;
   margin-bottom: 1.25rem;
}

.events-description {
   color: var(--fg-text);
   font-size: 1.05rem;
   line-height: 1.7;
}

/* Happy hour dashboard */
.hh-dashboard {
   background: var(--bg-dark);
   border: 1px solid var(--line);
   border-radius: 8px;
   overflow: hidden;
}

.hh-dashboard-header {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: 0.25rem;
   padding: 1rem 1.5rem;
   border-bottom: 1px solid var(--line);
}

.hh-tg {
   font-family: var(--f-mono);
   font-size: 0.7rem;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--fg-muted);
}

.hh-hours-note {
   font-family: var(--f-mono);
   font-size: 0.85rem;
   font-weight: 600;
   letter-spacing: 1px;
   color: var(--accent);
}

.hh-status-clock {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 2.5rem 1.5rem;
   gap: 0.5rem;
}

.clock-label {
   font-family: var(--f-mono);
   font-size: 0.7rem;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--fg-muted);
}

.clock-countdown {
   font-family: var(--f-display);
   font-size: 3.5rem;
   font-weight: 900;
   color: var(--accent);
   line-height: 1;
}

.clock-meta {
   font-family: var(--f-mono);
   font-size: 0.75rem;
   color: var(--fg-muted);
}

/* Events grid */
.events-grid-section {
   max-width: 1100px;
   margin: 0 auto;
   padding: 0 2rem 5rem;
}

.events-grid-title {
   font-family: var(--f-display);
   font-size: 1rem;
   font-weight: 800;
   letter-spacing: 3px;
   color: var(--fg-muted);
   margin-bottom: 2rem;
}

.events-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1.5rem;
}

.event-card {
   background: var(--bg-dark);
   border: 1px solid var(--line);
   border-radius: 8px;
   padding: 1.75rem;
   transition: border-color 0.2s ease;
}

.event-card:hover {
   border-color: var(--accent-dim);
}

.event-card-highlight {
   border-color: var(--accent-dim);
   background: var(--accent-dark);
}

.event-card-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 1rem;
}

.event-day {
   font-family: var(--f-mono);
   font-size: 0.65rem;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   color: var(--accent);
}

.event-time {
   font-family: var(--f-mono);
   font-size: 0.65rem;
   letter-spacing: 1px;
   color: var(--fg-muted);
}

.event-name {
   font-family: var(--f-display);
   font-size: 1.6rem;
   font-weight: 800;
   text-transform: uppercase;
   line-height: 1.1;
   margin-bottom: 0.6rem;
}

.event-desc {
   color: var(--fg-text);
   font-size: 0.9rem;
   line-height: 1.6;
}

.event-desc a {
   color: var(--accent);
   text-decoration: underline;
   text-underline-offset: 3px;
}

@media (max-width: 960px) {
   .events-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 768px) {
   .events-hero {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      padding: 3rem 1.5rem 2rem;
   }

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

/* ============================================================
   21. ABOUT PAGE
   ============================================================ */
.about-hero-section {
   padding: 5rem 2rem 4rem;
   max-width: 1100px;
   margin: 0 auto;
}

.about-hero-layout {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 5rem;
   align-items: start;
}

.about-subtitle {
   display: block;
   font-family: var(--f-mono);
   font-size: 0.75rem;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--accent);
   margin-bottom: 1rem;
}

.about-title {
   font-family: var(--f-display);
   font-size: clamp(4rem, 10vw, 7rem);
   font-weight: 900;
   text-transform: uppercase;
   line-height: 1;
   margin-bottom: 1.25rem;
}

.about-lead-tagline {
   font-size: 1.15rem;
   color: var(--fg-muted);
   line-height: 1.5;
}

.about-story-body {
   padding-top: 0.5rem;
}

.about-story-body p {
   color: var(--fg-text);
   font-size: 1.05rem;
   line-height: 1.8;
   margin-bottom: 1.5rem;
}

.about-story-body p:last-child {
   margin-bottom: 0;
}

.about-stats-section {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   border-top: 1px solid var(--line);
   border-bottom: 1px solid var(--line);
   max-width: 1100px;
   margin: 0 auto 5rem;
}

.about-stat {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 3rem 1rem;
   border-right: 1px solid var(--line);
}

.about-stat:last-child {
   border-right: none;
}

.about-stat-number {
   font-family: var(--f-display);
   font-size: clamp(3rem, 6vw, 5rem);
   font-weight: 900;
   color: var(--accent);
   line-height: 1;
   margin-bottom: 0.5rem;
}

.about-stat-label {
   font-family: var(--f-mono);
   font-size: 0.7rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--fg-muted);
}

@media (max-width: 768px) {
   .about-hero-layout {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .about-stats-section {
      grid-template-columns: repeat(2, 1fr);
   }

   .about-stat:nth-child(2) {
      border-right: none;
   }

   .about-stat:nth-child(3) {
      border-top: 1px solid var(--line);
   }

   .about-stat:nth-child(4) {
      border-top: 1px solid var(--line);
   }
}

/* ============================================================
   21b. ABOUT — FLOORS & TEAM SECTIONS
   ============================================================ */

.about-section-header {
   max-width: 1200px;
   margin: 0 auto 3rem;
   padding: 0 1.5rem;
}

.about-section-tag {
   font-family: var(--f-mono);
   font-size: 0.7rem;
   font-weight: 700;
   letter-spacing: 0.15em;
   color: var(--accent);
   text-transform: uppercase;
   display: block;
   margin-bottom: 0.5rem;
}

.about-section-title {
   font-family: var(--f-display);
   font-size: clamp(2.5rem, 6vw, 4rem);
   font-weight: 900;
   color: var(--fg);
   text-transform: uppercase;
   line-height: 1;
}

/* --- Floors --- */
.about-floors-section {
   padding: 5rem 1.5rem;
   border-top: 1px solid var(--line);
}

.about-floors-grid {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1.5rem;
}

.about-floor-card {
   background: var(--bg-dark);
   border: 1px solid var(--line);
   padding: 2rem;
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
}

.about-floor-number {
   font-family: var(--f-mono);
   font-size: 0.75rem;
   font-weight: 700;
   color: var(--accent);
   letter-spacing: 0.1em;
}

.about-floor-name {
   font-family: var(--f-display);
   font-size: 1.8rem;
   font-weight: 900;
   text-transform: uppercase;
   color: var(--fg);
   line-height: 1;
}

.about-floor-desc {
   font-family: var(--f-body);
   font-size: 0.95rem;
   color: var(--fg-text);
   line-height: 1.6;
   flex: 1;
}

.about-floor-tag {
   font-family: var(--f-mono);
   font-size: 0.65rem;
   font-weight: 600;
   letter-spacing: 0.1em;
   color: var(--fg-muted);
   text-transform: uppercase;
   margin-top: 0.5rem;
   padding-top: 1rem;
   border-top: 1px solid var(--line);
}

/* --- Team --- */
.about-team-section {
   padding: 5rem 1.5rem;
   border-top: 1px solid var(--line);
}

.about-team-grid {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 1.5rem;
}

.about-team-card {
   background: var(--bg-dark);
   border: 1px solid var(--line);
   padding: 1.75rem;
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
}

.about-team-avatar {
   width: 52px;
   height: 52px;
   background: var(--accent);
   color: #000;
   font-family: var(--f-mono);
   font-size: 0.85rem;
   font-weight: 700;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 0.75rem;
}

.about-team-name {
   font-family: var(--f-display);
   font-size: 1.3rem;
   font-weight: 900;
   text-transform: uppercase;
   color: var(--fg);
   line-height: 1;
}

.about-team-role {
   font-family: var(--f-mono);
   font-size: 0.65rem;
   font-weight: 600;
   letter-spacing: 0.1em;
   color: var(--accent);
   text-transform: uppercase;
   display: block;
   margin-bottom: 0.5rem;
}

.about-team-bio {
   font-family: var(--f-body);
   font-size: 0.88rem;
   color: var(--fg-text);
   line-height: 1.6;
}

@media (max-width: 900px) {
   .about-floors-grid {
      grid-template-columns: 1fr;
   }
   .about-team-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 560px) {
   .about-team-grid {
      grid-template-columns: 1fr;
   }
}

/* ============================================================
   21. CONTACT PAGE
   ============================================================ */
.contact-main-section {
   max-width: 900px;
   margin: 0 auto;
   padding: 4rem 2rem 5rem;
}

.contact-grid-engine {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2.5rem;
   align-items: start;
}

.contact-form-label {
   font-family: var(--f-mono);
   font-size: 0.7rem;
   letter-spacing: 2px;
   color: var(--fg-muted);
   margin-bottom: 1.5rem;
   display: block;
}

@media (max-width: 768px) {
   .contact-grid-engine {
      grid-template-columns: 1fr;
   }
}

.contact-giant-title {
   font-family: var(--f-display);
   font-size: clamp(4rem, 14vw, 9rem);
   font-weight: 900;
   text-transform: uppercase;
   line-height: 1;
   margin-bottom: 3rem;
}

.location-card-panel {
   background: var(--bg-dark);
   border: 1px solid var(--line);
   border-radius: 8px;
   overflow: hidden;
   min-width: 0; /* prevent grid child from overflowing its column */
}

/* Schematic map */
.map-placeholder-schematic {
   position: relative;
   height: 200px;
   background-color: #0a0806;
   background-image:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
   background-size: 40px 40px;
   overflow: hidden;
}

.schematic-grid-line {
   position: absolute;
   bottom: 50%;
   left: 0;
   right: 0;
   height: 1px;
   background: rgba(255, 176, 32, 0.15);
}

.radar-node-wrapper {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 0.5rem;
}

.radar-ping {
   width: 12px;
   height: 12px;
   background: var(--accent);
   border-radius: 50%;
   box-shadow: 0 0 0 0 var(--glow-mid);
   animation: radar-pulse 2s infinite;
}

@keyframes radar-pulse {
   0%   { box-shadow: 0 0 0 0 var(--glow-mid); }
   70%  { box-shadow: 0 0 0 16px transparent; }
   100% { box-shadow: 0 0 0 0 transparent; }
}

.radar-label {
   font-family: var(--f-mono);
   font-size: 0.65rem;
   letter-spacing: 1.5px;
   color: var(--accent);
   white-space: nowrap;
}

.schematic-axis-label {
   position: absolute;
   bottom: 0.75rem;
   right: 1rem;
   font-family: var(--f-mono);
   font-size: 0.6rem;
   letter-spacing: 2px;
   color: var(--fg-muted);
}

/* Address block */
.location-data-block {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
   padding: 1.5rem 2rem;
   border-bottom: 1px solid var(--line);
}

.address-header-row h2 {
   font-family: var(--f-display);
   font-size: 1.6rem;
   font-weight: 800;
   text-transform: uppercase;
   line-height: 1.1;
}

.address-header-row p {
   color: var(--fg-muted);
   font-size: 0.9rem;
   margin-top: 0.2rem;
}

.map-redirect-btn {
   font-family: var(--f-mono);
   font-size: 0.7rem;
   letter-spacing: 1.5px;
   color: var(--accent);
   border: 1px solid var(--accent-dim);
   padding: 0.6rem 1rem;
   border-radius: 4px;
   white-space: nowrap;
   transition: background 0.2s ease, color 0.2s ease;
}

.map-redirect-btn:hover {
   background: var(--accent);
   color: var(--bg-dark);
}

/* Comms row */
.comms-matrix-row {
   display: flex;
   flex-direction: column;
   border-bottom: 1px solid var(--line);
}

.comm-node {
   display: flex;
   flex-direction: column;
   gap: 0.3rem;
   padding: 0.85rem 1.25rem;
   border-bottom: 1px solid var(--line);
   min-width: 0;
}

.comm-node:last-child {
   border-bottom: none;
}

.comm-label {
   font-family: var(--f-mono);
   font-size: 0.65rem;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   color: var(--fg-muted);
}

.comm-value {
   font-size: 0.85rem;
   color: var(--fg);
}

/* Hours panel */
.hours-card-panel {
   padding: 1.5rem 2rem;
}

.hours-status-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 1.25rem;
}

.hours-panel-title {
   font-family: var(--f-mono);
   font-size: 0.7rem;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--fg-muted);
}

.live-pulse-badge {
   display: flex;
   align-items: center;
   gap: 0.4rem;
}

.pulse-dot {
   width: 8px;
   height: 8px;
   background: #22c55e;
   border-radius: 50%;
   animation: radar-pulse 2s infinite;
}

.pulse-text {
   font-family: var(--f-mono);
   font-size: 0.65rem;
   letter-spacing: 1.5px;
   color: #22c55e;
}

.matrix-weekly-table {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
   margin-bottom: 1.5rem;
}

.matrix-row {
   display: flex;
   justify-content: space-between;
   font-family: var(--f-mono);
   font-size: 0.8rem;
   color: var(--fg-text);
   padding-bottom: 0.5rem;
   border-bottom: 1px solid var(--line);
}

.matrix-row:last-child {
   border-bottom: none;
}

.matrix-time {
   color: var(--fg);
}

.kitchen-alert-footer-box {
   background: var(--bg);
   border: 1px solid var(--line);
   border-radius: 4px;
   padding: 0.85rem 1rem;
}

.box-label {
   display: block;
   font-family: var(--f-mono);
   font-size: 0.6rem;
   letter-spacing: 2px;
   color: var(--fg-muted);
   margin-bottom: 0.2rem;
}

.box-statement {
   font-family: var(--f-mono);
   font-size: 0.75rem;
   color: var(--accent);
   letter-spacing: 1px;
}

@media (max-width: 768px) {
   .location-data-block {
      flex-direction: column;
      align-items: flex-start;
   }

   .comms-matrix-row {
      grid-template-columns: 1fr;
   }

   .comm-node {
      border-right: none;
      border-bottom: 1px solid var(--line);
      padding: 1rem 1.5rem;
   }

   .comm-node:last-child {
      border-bottom: none;
   }

   .hours-card-panel {
      padding: 1.5rem;
   }

   .location-data-block {
      padding: 1.25rem 1.5rem;
   }
}

/* ============================================================
   22. RESERVATION FORM
   ============================================================ */
.input-error {
    border-color: var(--neon-red) !important;
    outline: none;
}

.field-error-msg {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    color: var(--neon-red);
    margin-top: 0.25rem;
    display: block;
}

   .reserve-section {
   max-width: 640px;
   margin: 4rem auto;
   padding: 0 2rem;
}

.reserve-section h2 {
   font-family: var(--f-display);
   font-size: clamp(3rem, 10vw, 5rem);
   font-weight: 900;
   text-transform: uppercase;
   line-height: 1;
   margin-bottom: 0.5rem;
}

.reserve-section .reserve-subhead {
   color: var(--fg-muted);
   font-size: 1rem;
   margin-bottom: 2.5rem;
}

.reserve-form {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.form-field {
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
}

.form-field label {
   font-family: var(--f-mono);
   font-size: 0.75rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: var(--fg-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
   background: var(--bg-dark);
   color: var(--fg);
   border: 1px solid var(--line);
   border-radius: 4px;
   padding: 0.85rem 1rem;
   font-family: var(--f-body);
   font-size: 1rem;
   width: 100%;
   transition: border-color 0.2s ease;
   appearance: none;
   -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
   outline: none;
   border-color: var(--accent);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
   color: var(--fg-muted);
}

.form-field textarea {
   resize: vertical;
   min-height: 120px;
}

.form-row {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr;
   gap: 1rem;
}

.reserve-form .btn {
   margin-top: 0.5rem;
   width: 100%;
   font-size: 1.1rem;
   padding: 1.1rem;
   text-transform: uppercase;
}

.reserve-confirmation {
   text-align: center;
   padding: 3rem 0;
}

.reserve-confirmation h3 {
   font-family: var(--f-display);
   font-size: 2.5rem;
   font-weight: 900;
   text-transform: uppercase;
   color: var(--accent);
   margin-bottom: 0.75rem;
}

.reserve-confirmation p {
   color: var(--fg-muted);
   font-size: 1.05rem;
}

@media (max-width: 600px) {
   .form-row {
      grid-template-columns: 1fr;
   }
}
/* ============================================================
   SPEC MODAL
   ============================================================ */
.footer-link-btn {
    background: none;
    border: none;
    color: var(--fg-muted);
    font-family: var(--f-mono);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: inherit;
}
.footer-link-btn:hover { color: var(--fg); }

.spec-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.spec-modal-overlay.is-open { display: flex; }

.spec-modal {
    background: var(--bg-dark);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.spec-modal-tag {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
}
.spec-modal-title {
    font-family: var(--f-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--fg);
    margin: 0;
}
.spec-modal-body {
    font-family: var(--f-body);
    font-size: 0.9rem;
    color: var(--fg-muted);
    line-height: 1.6;
    margin: 0;
}
.spec-modal-close {
    margin-top: 0.5rem;
    padding: 0.6rem 2rem;
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    border-radius: 999px;
    font-family: var(--f-mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    align-self: center;
}
.spec-modal-close:hover { opacity: 0.85; }


/* toast notifications */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(1rem);
    background: var(--fg);
    color: var(--bg-dark);
    font-family: var(--f-mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 3000;
    pointer-events: none;
}

.toast.toast-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Filter alignment — must come last so it overrides section 15 base styles */
@media (max-width: 768px) {
    .filter-bar-container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
}