/* ============================================================
   LongHorn Steakhouse Menu — styles.css
   Modern White-Base + Burgundy Brand Theme — 2026
   ============================================================ */

:root {
  --brand-burgundy:  #7a1e1e;
  --brand-burgundy2: #9b2828;
  --brand-brown:     #5c2c12;
  --brand-tan:       #c4955a;
  --brand-gold:      #d4a040;

  --bg-body:         #ffffff;
  --bg-section:      #fdf6f0;
  --bg-card:         #ffffff;
  --bg-nav:          #5c1b1b;
  --bg-hero:         #3d0f0f;
  --bg-footer:       #2a0808;

  --text-primary:    #1a0a04;
  --text-secondary:  #4a2010;
  --text-muted:      #8a6040;
  --text-on-dark:    #ffffff;
  --text-on-dark-2:  rgba(255,255,255,0.75);

  --border:          #e8d5c4;
  --border-strong:   #d0b090;
  --tag-bg:          #fdf0e6;
  --price-color:     #8b2000;
  --shadow-sm:       0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:       0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:       0 10px 32px rgba(122,30,30,0.14);
  --radius-sm:       6px;
  --radius-md:       10px;
  --radius-lg:       16px;
  --nav-h:           80px;
  --transition:      0.22s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ========================================================
   SITE HEADER
   ======================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-nav);
  box-shadow: 0 2px 12px rgba(0,0,0,0.28);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.38); }
.site-header { border-bottom: 1px solid rgba(255,255,255,0.08); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.header-logo img { height: 50px; width: auto; }
.header-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #f0d9bc;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
}
.header-logo-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-on-dark-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Desktop Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-on-dark);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  color: #f0d9bc;
  background: rgba(255,255,255,0.1);
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.header-cta {
  background: var(--brand-burgundy2);
  color: #fff !important;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.48rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--transition), transform var(--transition);
}
.header-cta:hover { background: #b83030; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f0d9bc;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #3d0a0a;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
  animation: slideDown 0.25s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-on-dark-2);
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), background var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #f0d9bc; background: rgba(255,255,255,0.08); }
.mobile-menu a i { margin-right: 0.55rem; width: 16px; }

/* Scroll-spy tab bar (category pages & index) */
.scroll-nav {
  background: #fff;
  border-bottom: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: var(--nav-h);
  z-index: 900;
  overflow-x: auto;
  scrollbar-width: none;
}
.scroll-nav::-webkit-scrollbar { display: none; }
.scroll-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0;
}
.scroll-tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.scroll-tab:hover { color: var(--brand-burgundy); border-bottom-color: rgba(122,30,30,0.3); }
.scroll-tab.active { color: var(--brand-burgundy); border-bottom-color: var(--brand-burgundy); }

/* ========================================================
   HERO
   ======================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  background-color: #1a0202;
}
/* Real background photo layer */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/outlaw-ribeye-d-20190224-dpv.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.42;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover::after { transform: scale(1.08); }
/* Dark overlay for text contrast */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,0,0,0.55) 0%, rgba(20,2,2,0.72) 60%, rgba(10,0,0,0.88) 100%),
    radial-gradient(ellipse at 50% 0%, rgba(122,30,30,0.35) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
/* All direct hero children must sit above the bg image (z:0) and overlay (z:1) */
.hero > * { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #f0d9bc;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
  animation: fadeSlideDown 0.5s ease both;
}
.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: fadeSlideDown 0.55s 0.05s ease both;
}
.hero-logo-wrap img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 5vw, 3.1rem);
  font-weight: 700;
  color: #ffffff;
  max-width: 950px;
  margin: 0 auto 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
  animation: fadeSlideDown 0.6s 0.1s ease both;
}
.hero-tagline {
  font-size: clamp(0.95rem, 2.5vw, 1.12rem);
  color: rgba(255,255,255,0.8);
  max-width: 920px;
  margin: 0 auto 2rem;
  line-height: 1.65;
  animation: fadeSlideDown 0.6s 0.18s ease both;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.7s 0.28s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  transition: background var(--transition);
}
.hero-badge:hover { background: rgba(255,255,255,0.2); color: #fff; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  animation: fadeSlideUp 0.7s 0.36s ease both;
}
.btn-primary {
  background: var(--brand-burgundy2);
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.78rem 1.75rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(122,30,30,0.4);
}
.btn-primary:hover { background: #c03030; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(122,30,30,0.5); }
.btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.9);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.78rem 1.75rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }

/* Hero Stats Bar */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2rem;
  animation: fadeSlideUp 0.7s 0.44s ease both;
}
.hero-stat {
  padding: 0.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-tan);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* ========================================================
   BREADCRUMB
   ======================================================== */
.breadcrumb {
  max-width: 1280px;
  margin: 1rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.5rem;
  font-size: 0.77rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--brand-burgundy); }
.breadcrumb span.sep { color: var(--border-strong); }

/* ========================================================
   PAGE WRAPPER
   ======================================================== */
.page-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================================
   CATEGORY HERO (used on category pages)
   ======================================================== */
.cat-hero {
  background: linear-gradient(135deg, var(--brand-burgundy) 0%, #3a0a0a 100%);
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cat-hero-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  display: block;
}
.cat-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.cat-hero p {
  color: rgba(255,255,255,0.78);
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ========================================================
   INTRO BLOCK
   ======================================================== */
.intro-block {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-burgundy);
  border-radius: var(--radius-md);
  padding: 1.65rem 1.85rem;
  margin: 2rem 0;
}
.intro-block p { color: #3a1c08; font-size: 0.97rem; line-height: 1.82; }
.intro-block p + p { margin-top: 0.85rem; }

/* ========================================================
   SECTION STYLES
   ======================================================== */
.menu-section { margin: 2.5rem 0; }
.section-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.4rem 0 0.4rem;
  border-top: 2px solid var(--border);
  margin-bottom: 0.7rem;
}
.section-icon { font-size: 1.9rem; line-height: 1; margin-top: 0.05rem; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--brand-burgundy);
  line-height: 1.2;
}
.section-divider {
  height: 2px;
  background: linear-gradient(to right, var(--brand-burgundy), transparent);
  margin-bottom: 1rem;
  border: none;
}
.section-intro { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.4rem; line-height: 1.78; }
.section-note { font-size: 0.79rem; color: var(--text-muted); margin-top: 0.7rem; font-style: italic; }
.section-note-box {
  background: #fdf6f0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.95rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
}

/* ========================================================
   MENU GRID & CARDS
   ======================================================== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media (max-width: 1060px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .menu-grid { grid-template-columns: 1fr; } }

.menu-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-burgundy);
}
.card-img-wrap {
  position: relative;
  width: 100%;
  height: 165px;
  overflow: hidden;
  background: #e8d5c4;
  flex-shrink: 0;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.menu-card:hover .card-img-wrap img { transform: scale(1.07); }
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.42) 100%);
}
.card-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-popular { background: rgba(122,30,30,0.88); color: #ffb3a7; border: 1px solid rgba(168,32,32,0.7); }
.badge-staff   { background: rgba(92,44,18,0.88);  color: #f0d9bc; border: 1px solid rgba(196,135,58,0.5); }
.badge-iconic  { background: rgba(92,20,10,0.92);  color: #ffc9a0; border: 1px solid rgba(168,32,32,0.6); }
.card-body {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.card-name {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.card-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.calories-pill {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--tag-bg);
  border: 1px solid var(--border);
  padding: 0.18rem 0.52rem;
  border-radius: 999px;
  white-space: nowrap;
}
.card-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--price-color);
  letter-spacing: 0.01em;
  transition: text-shadow var(--transition);
}
.card-price .dollar { font-size: 0.85rem; vertical-align: super; font-weight: 500; }
.menu-card:hover .card-price { text-shadow: 0 0 12px rgba(139,32,0,0.22); }
.card-price-only { width: 100%; text-align: right; }

/* ========================================================
   SIDES GRID
   ======================================================== */
.sides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
@media (max-width: 768px) { .sides-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .sides-grid { grid-template-columns: 1fr; } }
.side-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  font-size: 0.87rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), border-color var(--transition);
}
.side-card:hover { background: #fdf6f0; border-color: var(--brand-burgundy); }
.side-dot { color: var(--brand-burgundy); font-size: 0.75rem; }

/* ========================================================
   DRINKS GRID
   ======================================================== */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
@media (max-width: 600px) { .drinks-grid { grid-template-columns: 1fr; } }
.drinks-group {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
}
.drinks-group h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.97rem;
  color: var(--brand-burgundy);
  margin-bottom: 0.7rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.drinks-list { list-style: none; }
.drinks-list li {
  font-size: 0.86rem;
  color: var(--text-secondary);
  padding: 0.32rem 0;
  border-bottom: 1px solid #f0e0d0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drinks-list li:last-child { border-bottom: none; }
.drink-price { font-family: 'Oswald', sans-serif; color: var(--price-color); font-size: 0.83rem; }

/* ========================================================
   PRICE SUMMARY TABLE
   ======================================================== */
.price-summary-section { margin: 2.5rem 0; }
.price-summary-section > h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  color: var(--brand-burgundy);
  margin-bottom: 1.1rem;
  text-align: center;
}
.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.price-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.price-table thead tr { background: linear-gradient(135deg, var(--brand-burgundy), #5c1010); }
.price-table thead th {
  padding: 0.9rem 1.2rem;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.price-table tbody tr { background: #fff; border-bottom: 1px solid var(--border); transition: background var(--transition); }
.price-table tbody tr:hover { background: #fdf6f0; }
.price-table tbody td { padding: 0.82rem 1.2rem; color: var(--text-secondary); }
.price-table tbody td:first-child { font-weight: 600; color: var(--text-primary); }
.price-table tbody td:nth-child(2) { font-family: 'Oswald', sans-serif; color: var(--price-color); font-size: 0.93rem; }
.price-table tbody td:nth-child(3) { font-size: 0.83rem; color: var(--text-muted); }
.price-range-note { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.7rem; }

/* ========================================================
   FAQ
   ======================================================== */
.faq-section { margin: 2.5rem 0; }
.faq-section > h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  color: var(--brand-burgundy);
  margin-bottom: 1.2rem;
  padding-top: 1.4rem;
  border-top: 2px solid var(--border);
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--brand-burgundy); }
.faq-question,
button.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem 1.25rem;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
  /* Reset button styles */
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
button.faq-question:hover,
button.faq-question:focus {
  background: var(--bg-section);
  outline: none;
}
.faq-question-text { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); line-height: 1.38; }
.faq-chevron { color: var(--brand-burgundy); font-size: 0.82rem; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner {
  padding: 0.9rem 1.25rem 1.05rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.78;
  border-top: 1px solid var(--border);
}

/* ========================================================
   TIPS SECTION
   ======================================================== */
.tips-section {
  margin: 2.5rem 0;
  background: #fdf6f0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
}
.tips-section > h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  color: var(--brand-burgundy);
  margin-bottom: 1.4rem;
}
.tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
@media (max-width: 600px) { .tips-grid { grid-template-columns: 1fr; } }
.tip-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
}
.tip-card h3 { font-family: 'Playfair Display', serif; font-size: 0.97rem; color: var(--brand-burgundy); margin-bottom: 0.6rem; }
.tip-card p, .tip-card ul { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.78; }
.tip-card ul { padding-left: 1.1rem; list-style: disc; }
.tip-card ul li { margin-bottom: 0.3rem; }
.tip-card p + p { margin-top: 0.5rem; }

/* ========================================================
   INFO SECTION (What Is Happy Hour)
   ======================================================== */
.info-section {
  margin: 2rem 0;
}
.info-section > h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  color: var(--brand-burgundy);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.info-section > h2 i {
  font-size: 1.1em;
}
.info-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child {
  border-bottom: none;
}
.feature-list li i {
  color: #22c55e;
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* ========================================================
   TIMES SECTION (Happy Hour Times)
   ======================================================== */
.times-section {
  margin: 2rem 0;
}
.times-section > h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  color: var(--brand-burgundy);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.times-section > h2 i {
  font-size: 1.1em;
}
.happy-hour-table-container {
  overflow-x: auto;
  margin: 1rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

/* Happy Hour Times Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fff;
}
.data-table thead {
  background: var(--bg-section);
}
.data-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: var(--brand-burgundy);
  border-bottom: 2px solid var(--border);
  font-family: 'Source Sans 3', sans-serif;
}
.data-table tbody tr {
  border-bottom: 1px solid var(--border);
}
.data-table tbody tr:nth-child(even) {
  background: var(--bg-section);
}
.data-table tbody tr:last-child {
  border-bottom: none;
}
.data-table tbody td {
  padding: 0.9rem 1.25rem;
  color: var(--text-primary);
}
.data-table tbody td:first-child {
  font-weight: 500;
}
.status-available {
  color: #22c55e;
  font-weight: 500;
}
.status-unavailable {
  color: #ef4444;
  font-weight: 500;
}
.status-available i,
.status-unavailable i {
  margin-right: 0.4rem;
}
.times-section > h2 i {
  font-size: 1.1em;
}
.happy-hour-table-container {
  overflow-x: auto;
  margin: 1rem 0;
}

/* ========================================================
   PRIME TIME MENU SECTION
   ======================================================== */
.prime-time-section {
  margin: 2rem 0;
}
.prime-time-section > h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  color: var(--brand-burgundy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.prime-time-section > h2 i {
  font-size: 1.1em;
}
.prime-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 960px) { .prime-time-grid { grid-template-columns: 1fr; } }
.prime-time-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
}
.prime-time-card.featured-card {
  border-color: var(--brand-gold);
  box-shadow: 0 4px 12px rgba(200, 29, 37, 0.08);
}
.prime-time-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--brand-burgundy);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ========================================================
   STATES SECTION
   ======================================================== */
.states-section {
  margin: 2rem 0;
}
.states-section > h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  color: var(--brand-burgundy);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.states-section > h2 i {
  font-size: 1.1em;
}
.states-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 960px) { .states-grid { grid-template-columns: 1fr; } }
.state-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
}
.state-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--brand-burgundy);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ========================================================
   COMPARISON SECTION
   ======================================================== */
.comparison-section {
  margin: 2rem 0;
}
.comparison-section > h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  color: var(--brand-burgundy);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.comparison-section > h2 i {
  font-size: 1.1em;
}
.comparison-table-container {
  overflow-x: auto;
  margin: 1rem 0;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.comparison-table th,
.comparison-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  background: var(--bg-section);
  font-weight: 600;
  color: var(--text-primary);
}
.comparison-table td:first-child {
  font-weight: 500;
  background: var(--bg-section);
}
.comparison-table th.brand-header {
    color: #000000 !important;
    background: #FBE9E9;
}

/* ========================================================
   RELATED PAGES GRID
   ======================================================== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 960px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.related-card:hover {
  border-color: var(--brand-burgundy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.related-card i {
  color: var(--brand-burgundy);
  font-size: 1rem;
}

/* ========================================================
   CATEGORY PAGE GRID (homepage category cards)
   ======================================================== */
.categories-section {
  padding: 3rem 0 2rem;
}
.categories-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--brand-burgundy);
  text-align: center;
  margin-bottom: 0.5rem;
}
.categories-section .section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 960px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }
.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-burgundy);
}
.cat-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cat-card:hover .cat-card-img { transform: scale(1.06); }
.cat-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cat-card-icon { font-size: 1.4rem; margin-bottom: 0.4rem; }
.cat-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-burgundy);
  margin-bottom: 0.3rem;
}
.cat-card-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.45; flex: 1; }
.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-burgundy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap var(--transition);
}
.cat-card:hover .cat-card-link { gap: 0.55rem; }

/* ========================================================
   CONTACT PAGE & STATIC PAGES
   ======================================================== */

/* Shared wrapper for contact/privacy/disclaimer main content */
.static-page-wrap {
  max-width: 960px;
  margin: 2.5rem auto;
  padding: 0 0 4rem;
}

/* Static page content (privacy, disclaimer) */
.static-content { max-width: 820px; }
.static-section { margin: 2.2rem 0; }
.static-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-burgundy);
  margin-bottom: 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.static-section p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.82;
  margin-bottom: 0.75rem;
}
.static-section ul {
  padding-left: 1.4rem;
  list-style: disc;
  margin-bottom: 0.75rem;
}
.static-section ul li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.78;
  margin-bottom: 0.4rem;
}
.static-section a { color: var(--brand-burgundy); text-decoration: underline; }
.static-section a:hover { color: var(--brand-burgundy2); }

/* Contact page two-column layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

.contact-info h2,
.contact-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--brand-burgundy);
  margin-bottom: 0.9rem;
}
.contact-info > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.78;
  margin-bottom: 1.5rem;
}
.contact-cards { display: flex; flex-direction: column; gap: 0.85rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
}
.contact-card > i {
  font-size: 1.1rem;
  color: var(--brand-burgundy);
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.contact-card > div { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-card strong { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); }
.contact-card a, .contact-card span { font-size: 0.85rem; color: var(--text-muted); }
.contact-card a { text-decoration: underline; color: var(--brand-burgundy); }

/* Contact form */
.contact-form {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.1rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  color: var(--text-primary);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand-burgundy);
  box-shadow: 0 0 0 3px rgba(122,30,30,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* Cat hero small modifier */
.cat-hero--sm { padding: 2.2rem 1.5rem; }
.cat-hero--sm h1 { font-size: clamp(1.3rem, 3vw, 2rem); }

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer {
  background: var(--bg-footer);
  border-top: 3px solid var(--brand-burgundy);
  padding: 3.5rem 1.5rem 2rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; gap: 1.5rem; } }

.footer-brand img { height: 44px; width: auto; margin-bottom: 0.75rem; }
.footer-brand p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-tan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #f0d9bc; }

.footer-disclaimer {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--brand-tan);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.72;
  margin-bottom: 2rem;
}
.footer-disclaimer a { color: rgba(255,255,255,0.8); text-decoration: underline; }
.footer-disclaimer a:hover { color: #f0d9bc; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: #f0d9bc; }
.footer-updated {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
}

/* ========================================================
   ANIMATIONS
   ======================================================== */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
}
@media (max-width: 768px) {
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero-logo-wrap img { height: 56px; }
  .hero-stat { padding: 0.4rem 1.1rem; }
  .hero-stat-num { font-size: 1.25rem; }
  .page-wrapper { padding: 0 1rem; }
  .intro-block { padding: 1.25rem 1.35rem; }
  .tips-section { padding: 1.35rem; }
  .menu-section { margin: 1.75rem 0; }
  .categories-grid { gap: 0.75rem; }
}
@media (max-width: 480px) {
  .scroll-tab { padding: 0.65rem 0.75rem; font-size: 0.75rem; }
  .card-img-wrap { height: 140px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; padding: 0.9rem 1.5rem; }
  .hero-stats { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ========================================================
   INFO SECTIONS — shared wrapper
   ======================================================== */
.info-section { margin: 2.5rem 0; }
.subsection-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--brand-burgundy);
  margin: 2rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ========================================================
   TOP 10 LIST — Modern 20/80 two-panel design
   ======================================================== */
.top10-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top10-row {
  display: flex;
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  border: 1px solid var(--border-light);
}
.top10-row:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.top10-row:last-child { margin-bottom: 0; }

/* ── LEFT PANEL: 20% ── */
.top10-left {
  flex: 0 0 22%;
  position: relative;
  min-width: 0;
  background: #111;
}
.top10-left img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  opacity: 0.88;
  transition: opacity 0.22s ease;
}
.top10-row:hover .top10-left img { opacity: 1; }

/* price + calories badge over image */
.top10-img-badges {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.top10-price-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #f5d78e;
  letter-spacing: 0.03em;
  line-height: 1;
}
.top10-cal-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── RIGHT PANEL: 80% ── */
.top10-right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.6rem 2rem 1.6rem 1.75rem;
  min-width: 0;
}

/* large rank number on far left of right panel */
.top10-rank {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(139,90,43,0.12);
  min-width: 3rem;
  text-align: center;
  flex-shrink: 0;
  align-self: center;
  transition: color 0.22s ease;
}
.top10-row:hover .top10-rank { color: rgba(139,90,43,0.22); }
.top10-rank--gold {
  color: #c9922a !important;
  font-size: 3.2rem !important;
}
.top10-row:hover .top10-rank--gold { color: #b87d1e !important; }

.top10-body { flex: 1; min-width: 0; }

.top10-category {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-burgundy);
  background: rgba(139,90,43,0.08);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
}

.top10-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.top10-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.top10-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.top10-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand-burgundy);
  text-decoration: none;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.top10-cta:hover { background: #6b1a1a; transform: translateX(2px); }

/* responsive */
@media (max-width: 860px) {
  .top10-left { flex: 0 0 28%; }
  .top10-left img { min-height: 190px; }
  .top10-right { padding: 1.25rem 1.25rem 1.25rem 1.25rem; gap: 1rem; }
  .top10-rank { font-size: 2.4rem; min-width: 2.4rem; }
}
@media (max-width: 600px) {
  .top10-row { flex-direction: column; }
  .top10-left { flex: none; width: 100%; }
  .top10-left img { min-height: 200px; height: 200px; }
  .top10-right { flex-direction: column; gap: 0.5rem; padding: 1.1rem 1.1rem; }
  .top10-rank { font-size: 2rem; align-self: flex-start; }
}

/* ========================================================
   INFO GRID & CARDS (secret menu, vegan, etc.)
   ======================================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.info-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .info-grid, .info-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .info-grid, .info-grid--3 { grid-template-columns: 1fr; } }

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.97rem;
  color: var(--brand-burgundy);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.info-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.72; }
.info-card p + p { margin-top: 0.5rem; }
.info-card--highlight { border-left: 4px solid var(--brand-burgundy); background: #fdf6f0; }
.info-card--green { border-left: 4px solid #2d7a4a; }
.info-card--green h3 { color: #2d7a4a; }

.clean-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.clean-list li {
  font-size: 0.87rem;
  color: var(--text-secondary);
  padding-left: 1.1rem;
  position: relative;
}
.clean-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-burgundy);
  font-size: 0.78rem;
  top: 0.05rem;
}

/* ========================================================
   COUPON GRID & CARDS
   ======================================================== */
.coupon-intro { margin-bottom: 1.4rem; }
.coupon-intro p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.78; }

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .coupon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .coupon-grid { grid-template-columns: 1fr; } }

.coupon-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
}
.coupon-card:hover { border-color: var(--brand-burgundy); }
.coupon-icon {
  font-size: 1.3rem;
  color: var(--brand-burgundy);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.coupon-name { font-weight: 700; font-size: 0.92rem; color: var(--text-primary); margin-bottom: 0.3rem; }
.coupon-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.55rem; }
.coupon-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2d7a4a;
  background: #edf7f1;
  border: 1px solid #b5dfc8;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  display: inline-block;
}

/* Status tags in table */
.status-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}
.status-active   { background: #edf7f1; color: #2d7a4a; border: 1px solid #b5dfc8; }
.status-expired  { background: #f7eaea; color: #8b2000; border: 1px solid #e0b0b0; }
.status-seasonal { background: #fff8e6; color: #a05a00; border: 1px solid #f0d090; }

/* ========================================================
   HOURS CARDS
   ======================================================== */
.hours-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}
.hours-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--brand-burgundy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.hours-card--gold { border-top: 3px solid var(--brand-gold); }
.hours-card--gold h3 { color: #8a6000; }
.hours-card--dark { border-top: 3px solid var(--brand-burgundy); background: #fdf6f0; }

.hours-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px dashed var(--border);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span { color: var(--text-muted); }
.hours-list li strong { color: var(--text-primary); }
.hours-note { font-size: 0.78rem; color: var(--text-muted); font-style: italic; line-height: 1.6; }

/* ========================================================
   LOCATIONS GRID
   ======================================================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}
@media (max-width: 900px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .locations-grid { grid-template-columns: 1fr; } }

.location-region {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
}
.location-region h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.location-region p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.location-region--cta { background: #fdf6f0; border-color: var(--brand-burgundy); }

.region-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.region-ne { background: #2c4a8a; }
.region-se { background: #8a2c2c; }
.region-mw { background: #2c6a4a; }
.region-sw { background: #8a5a10; }
.region-w  { background: #4a2c8a; }
.region-all { background: var(--brand-burgundy); }

/* How-to box */
.how-to-box {
  background: #fdf6f0;
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-burgundy);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-top: 1.25rem;
}
.how-to-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--brand-burgundy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.how-to-box--full { margin-top: 0; }

.how-to-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.how-to-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.step-num {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--brand-burgundy);
  color: #fff;
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}

/* ========================================================
   ORDER ONLINE / DELIVERY APPS
   ======================================================== */
.order-online-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 768px) { .order-online-grid { grid-template-columns: 1fr; } }

.delivery-apps {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}
.delivery-apps h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--brand-burgundy);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.app-list { display: flex; flex-direction: column; gap: 0.5rem; }
.app-chip {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.app-chip i { color: #2d7a4a; }

/* ========================================================
   ALLERGEN GRID
   ======================================================== */
.allergen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 600px) { .allergen-grid { grid-template-columns: 1fr; } }

.allergen-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.allergen-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.97rem;
  margin-bottom: 0.65rem;
}
.allergen-card p { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.72; margin-bottom: 0.4rem; }
.allergen-icon { font-size: 1.5rem; margin-bottom: 0.55rem; }
.allergen-warn { font-size: 0.78rem; font-style: italic; color: #8b2000; }

.allergen-card--wheat { border-top: 3px solid #c8a000; }
.allergen-card--wheat h3 { color: #8a6a00; }
.allergen-card--wheat .allergen-icon { color: #c8a000; }
.allergen-card--milk { border-top: 3px solid #4a90d9; }
.allergen-card--milk h3 { color: #2c5c8a; }
.allergen-card--milk .allergen-icon { color: #4a90d9; }
.allergen-card--salt { border-top: 3px solid #8a8a8a; }
.allergen-card--salt h3 { color: #4a4a4a; }
.allergen-card--salt .allergen-icon { color: #8a8a8a; }
.allergen-card--calorie { border-top: 3px solid var(--brand-burgundy); }
.allergen-card--calorie h3 { color: var(--brand-burgundy); }
.allergen-card--calorie .allergen-icon { color: var(--brand-burgundy); }

/* ========================================================
   STEAK CUTS
   ======================================================== */
.cuts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .cuts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cuts-grid { grid-template-columns: 1fr; } }

.cut-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
}
.cut-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.cut-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}
.cut-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.cut-tender  { background: #edf7f1; color: #2d7a4a; border: 1px solid #b5dfc8; }
.cut-flavor  { background: #fdf0e6; color: #8b2000; border: 1px solid #f0c090; }
.cut-balance { background: #e6f0fd; color: #2c5c8a; border: 1px solid #a0c0e0; }
.cut-value   { background: #fff8e6; color: #8a5a00; border: 1px solid #f0d090; }
.cut-best    { background: #f5e6fd; color: #5a2c8a; border: 1px solid #c8a0e0; }

.cut-bars { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.85rem; }
.cut-bar-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.cut-bar-row span { width: 70px; flex-shrink: 0; }
.bar-fill {
  height: 6px;
  border-radius: 999px;
  background: var(--brand-burgundy);
  opacity: 0.75;
  transition: width 0.6s ease;
}
.bar-flavor { background: #c8a000; }
.bar-marble { background: #8a4a10; }
.cut-note { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ========================================================
   SAVINGS GRID
   ======================================================== */
.savings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .savings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .savings-grid { grid-template-columns: 1fr; } }

.savings-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition);
}
.savings-card:hover { border-color: var(--brand-burgundy); transform: translateY(-3px); }
.savings-icon {
  font-size: 1.5rem;
  color: var(--brand-burgundy);
  margin-bottom: 0.65rem;
}
.savings-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.97rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.savings-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }
.savings-card a { color: var(--brand-burgundy); text-decoration: underline; }

/* ========================================================
   SOCIAL MEDIA GRID
   ======================================================== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
}
@media (max-width: 1024px) { .social-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .social-grid { grid-template-columns: repeat(2, 1fr); } }

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 1.35rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.social-card > i { font-size: 1.8rem; margin-bottom: 0.3rem; }
.social-name { font-weight: 700; font-size: 0.9rem; color: var(--text-primary); }
.social-handle { font-size: 0.78rem; color: var(--text-muted); }
.social-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

.social-web { background: #f5f5f5; }
.social-web i { color: #333; }
.social-fb { background: #f0f4ff; }
.social-fb i { color: #1877f2; }
.social-ig { background: #fef0f8; }
.social-ig i { color: #e1306c; }
.social-tw { background: #f0f8ff; }
.social-tw i { color: #000; }
.social-yt { background: #fff0f0; }
.social-yt i { color: #ff0000; }
