/* ============================================
   716 WINGS & PIZZA — Bold. Saucy. Buffalo.
   ============================================ */

/* --- CSS Variables --- */
:root {
  --red: #D32F2F;
  --red-dark: #B71C1C;
  --red-light: #FF5252;
  --orange: #F57C00;
  --orange-light: #FFB74D;
  --yellow: #FFC107;
  --yellow-light: #FFF176;
  --buffalo-blue: #1565C0;
  --buffalo-blue-light: #42A5F5;
  --cream: #FFF8F0;
  --warm-white: #FFFDF9;
  --warm-gray: #5D4E37;
  --warm-gray-light: #8D7B68;
  --dark-brown: #3E2723;
  --charcoal: #2C1810;
  --shadow: rgba(62, 39, 35, 0.15);
  --shadow-heavy: rgba(62, 39, 35, 0.25);
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Utility --- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.text-center { text-align: center; }

/* ============================
   HEADER / NAVIGATION
   ============================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--charcoal);
  box-shadow: 0 2px 20px var(--shadow-heavy);
  transition: background var(--transition);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
}

.logo-text .accent { color: var(--yellow); }
.logo-area-code {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  text-shadow: 0 0 10px rgba(211, 47, 47, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--yellow);
  background: rgba(255,255,255,0.08);
}

.nav-links .btn-order {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
}

.nav-links .btn-order:hover {
  background: var(--red-dark);
  color: #fff;
  transform: scale(1.05);
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  border-radius: 3px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 70px;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(245, 124, 0, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(211, 47, 47, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 193, 7, 0.15) 0%, transparent 70%),
    linear-gradient(135deg, #4A1A0A 0%, #8B2500 30%, #C13A00 60%, #D84315 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.02) 40px,
      rgba(255,255,255,0.02) 80px
    );
  pointer-events: none;
}

/* Flame flicker accents */
.hero::after {
  content: '🔥';
  position: absolute;
  font-size: 200px;
  opacity: 0.06;
  bottom: -40px;
  right: -20px;
  pointer-events: none;
  animation: flicker 3s ease-in-out infinite alternate;
}

@keyframes flicker {
  0% { opacity: 0.04; transform: scale(1) rotate(-5deg); }
  50% { opacity: 0.08; transform: scale(1.05) rotate(0deg); }
  100% { opacity: 0.04; transform: scale(1) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  margin-bottom: 10px;
  line-height: 1.05;
}

.hero h1 .highlight {
  color: var(--yellow);
  display: block;
  font-size: 1.1em;
  text-shadow: 0 0 40px rgba(255, 193, 7, 0.4);
}

.hero-sub {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 35px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(211, 47, 47, 0.4);
}
.btn-primary:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(211, 47, 47, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4);
}
.btn-yellow:hover {
  background: #FFD54F;
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: #fff;
}
.btn-dark:hover {
  background: #1a0f0a;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 0.9rem;
  padding: 10px 24px;
}

/* Phone button with icon */
.btn .icon-phone::before { content: '📞'; margin-right: 4px; }

/* ============================
   SECTION STYLES
   ============================ */
section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--warm-gray-light);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ============================
   HIGHLIGHTS BAR
   ============================ */
.highlights {
  background: var(--charcoal);
  padding: 0;
  margin-top: -2px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.highlight-item {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}

.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(255,255,255,0.05); }

.highlight-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.highlight-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.highlight-item h3 {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 4px;
}

.highlight-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* ============================
   SAUCE SHOWCASE
   ============================ */
.sauce-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.sauce-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245,124,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.sauce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.sauce-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 2px 15px var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border-top: 4px solid transparent;
}

.sauce-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-heavy);
}

.sauce-card .sauce-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 10px;
  position: relative;
}

.sauce-card .sauce-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: inherit;
  filter: brightness(1.2);
}

.sauce-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

.sauce-card .heat-bar {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin-top: 8px;
}

.sauce-card .heat-bar span {
  width: 14px;
  height: 6px;
  border-radius: 3px;
  background: #e0d6cc;
  transition: background 0.5s ease;
}

.sauce-card .heat-bar span.active { background: var(--red); }
.sauce-card .heat-bar span.active.med { background: var(--orange); }
.sauce-card .heat-bar span.active.mild { background: var(--yellow); }

/* Sauce color borders */
.sauce-buffalo { border-top-color: #D32F2F; }
.sauce-buffalo .sauce-dot { background: #D32F2F; }
.sauce-mild { border-top-color: #FF7043; }
.sauce-mild .sauce-dot { background: #FF7043; }
.sauce-garlic { border-top-color: #A1887F; }
.sauce-garlic .sauce-dot { background: #A1887F; }
.sauce-sgp { border-top-color: #E65100; }
.sauce-sgp .sauce-dot { background: #E65100; }
.sauce-hlp { border-top-color: #FDD835; }
.sauce-hlp .sauce-dot { background: #FDD835; }
.sauce-lph { border-top-color: #FFB300; }
.sauce-lph .sauce-dot { background: #FFB300; }
.sauce-bbq { border-top-color: #6D4C41; }
.sauce-bbq .sauce-dot { background: #6D4C41; }
.sauce-hbbq { border-top-color: #8D6E63; }
.sauce-hbbq .sauce-dot { background: #8D6E63; }
.sauce-teriyaki { border-top-color: #4E342E; }
.sauce-teriyaki .sauce-dot { background: #4E342E; }
.sauce-plain { border-top-color: #D7CCC8; }
.sauce-plain .sauce-dot { background: #D7CCC8; }

/* ============================
   MENU PREVIEW (Homepage)
   ============================ */
.menu-preview {
  background: var(--warm-white);
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 10px;
}

.menu-cat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}

.menu-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px var(--shadow-heavy);
}

.menu-cat-header {
  padding: 30px 24px 20px;
  position: relative;
}

.menu-cat-header h3 {
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.menu-cat-header .price-range {
  font-size: 1rem;
  color: var(--red);
  font-weight: 700;
  font-family: var(--font-heading);
}

.menu-cat-body {
  padding: 0 24px 24px;
}

.menu-cat-body p {
  color: var(--warm-gray-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.menu-cat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

/* ============================
   BUFFALO ROOTS
   ============================ */
.roots-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a0f0a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.roots-section::after {
  content: '716';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(10rem, 25vw, 20rem);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
}

.roots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.roots-content .section-label { color: var(--yellow); }
.roots-content .section-title { color: #fff; }

.roots-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.roots-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.stat-box {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-box .number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--yellow);
  display: block;
}

.stat-box .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roots-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.buffalo-emblem {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,193,7,0.3) 0%, transparent 50%),
    linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--orange) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(211,47,47,0.3);
  border: 4px solid rgba(255,255,255,0.15);
}

.buffalo-emblem .code {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.buffalo-emblem .tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-top: 4px;
}

/* ============================
   REVIEWS / SOCIAL PROOF
   ============================ */
.reviews-section {
  background: var(--cream);
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}

.star-display {
  display: flex;
  gap: 4px;
}

.star-display .star {
  color: var(--yellow);
  font-size: 1.6rem;
}

.rating-big {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--charcoal);
}

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

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 3px 15px var(--shadow);
  position: relative;
}

.review-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.review-card .stars {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 10px;
}

.review-card p {
  color: var(--warm-gray);
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 14px;
}

.review-card .reviewer {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

.review-card .source {
  font-size: 0.8rem;
  color: var(--warm-gray-light);
}

.social-proof-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.proof-item {
  text-align: center;
}

.proof-item .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
}

.proof-item .label {
  font-size: 0.85rem;
  color: var(--warm-gray-light);
}

/* ============================
   INFO / HOURS / MAP
   ============================ */
.info-section {
  background: var(--warm-white);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 20px var(--shadow);
}

.info-card h3 {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--red);
  display: inline-block;
}

.hours-table {
  width: 100%;
}

.hours-table .row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hours-table .row:last-child { border-bottom: none; }
.hours-table .day { font-weight: 600; color: var(--charcoal); }
.hours-table .time { color: var(--warm-gray); }

.hours-table .row.today {
  background: rgba(211, 47, 47, 0.05);
  border-radius: 6px;
  padding: 10px 12px;
  margin: 0 -12px;
}

.hours-table .row.today .day { color: var(--red); }

.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 1.05rem;
}

.contact-info-list li:last-child { border-bottom: none; }

.contact-info-list .icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-list .detail strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--warm-gray-light);
  margin-bottom: 2px;
}

.map-container {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 50%, #8B0000 100%);
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,193,7,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(245,124,0,0.15) 0%, transparent 50%);
}

.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
  position: relative;
}

.cta-banner .btn { position: relative; }

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--yellow); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  transform: translateY(-3px);
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--yellow); }

.ai-city-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  transition: color var(--transition);
}

.ai-city-badge:hover { color: rgba(255,255,255,0.7); }

/* ============================
   FULL MENU PAGE
   ============================ */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #4A1A0A 100%);
  padding: 120px 0 60px;
  text-align: center;
  margin-top: 70px;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 7vw, 4rem);
  color: #fff;
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}

.menu-page-content {
  padding: 60px 0 80px;
}

.menu-section {
  margin-bottom: 60px;
}

.menu-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--red);
}

.menu-section-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(211,47,47,0.3);
}

.menu-section-header h2 {
  font-size: 1.8rem;
  color: var(--charcoal);
}

.menu-section-note {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--warm-gray);
  border-left: 4px solid var(--orange);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.menu-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 2px 12px var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition);
  border-left: 4px solid transparent;
}

.menu-item:hover {
  transform: translateX(4px);
  border-left-color: var(--red);
  box-shadow: 0 4px 20px var(--shadow-heavy);
}

.menu-item .item-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--charcoal);
  text-transform: uppercase;
}

.menu-item .item-desc {
  font-size: 0.85rem;
  color: var(--warm-gray-light);
  margin-top: 2px;
}

.menu-item .item-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

/* Wing size grid — special layout */
.wing-sizes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.wing-size-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 3px 15px var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.wing-size-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-heavy);
}

.wing-size-card.popular {
  border-color: var(--red);
  background: linear-gradient(to bottom, rgba(211,47,47,0.03), #fff);
}

.wing-size-card.popular::before {
  content: 'POPULAR';
  position: absolute;
  top: 10px;
  right: -30px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 3px 35px;
  transform: rotate(45deg);
}

.wing-size-card .count {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
}

.wing-size-card .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray-light);
  margin: 4px 0 8px;
}

.wing-size-card .price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
}

/* ============================
   ORDER PAGE
   ============================ */
.order-options {
  padding: 60px 0;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.order-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
  border-top: 5px solid var(--red);
}

.order-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-heavy);
}

.order-card.featured {
  border-top-color: var(--yellow);
  background: linear-gradient(to bottom, rgba(255,193,7,0.05), #fff);
}

.order-card .order-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(211,47,47,0.3);
}

.order-card h3 {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.order-card p {
  color: var(--warm-gray-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.order-card .phone-big {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--red);
  display: block;
  margin-bottom: 20px;
}

/* Coming soon badge */
.coming-soon {
  display: inline-block;
  background: var(--cream);
  color: var(--warm-gray);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px dashed var(--warm-gray-light);
}

/* ============================
   LEGAL PAGES
   ============================ */
.legal-content {
  padding: 40px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin: 30px 0 12px;
  text-transform: none;
}

.legal-content p,
.legal-content li {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 992px) {
  .roots-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .roots-visual { order: -1; }

  .buffalo-emblem {
    width: 220px;
    height: 220px;
  }

  .buffalo-emblem .code { font-size: 3.5rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

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

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    width: 100%;
    font-size: 1.1rem;
    padding: 14px 16px;
  }

  .nav-links .btn-order {
    text-align: center;
    margin-top: 10px;
  }

  .hero { min-height: 80vh; }

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

  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }

  .sauce-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  section { padding: 60px 0; }

  .wing-sizes {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }

  .wing-size-card .count { font-size: 2rem; }
  .wing-size-card .price { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  .roots-stats {
    grid-template-columns: 1fr;
  }

  .social-proof-bar {
    gap: 20px;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   Mobile Nav Overlay
   ============================ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

.nav-overlay.active { display: block; }
