/* ============================================================================
   The Spud — Modern Premium Redesign
   Fonts   : Oswald (headings) + Lato (body) via Google Fonts
   Palette : Red #CC0000 · Charcoal #1A1A1A · Cream #FDF6ED · Gold #C8A45A
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

/* ============================================================================
   CSS Variables
   ============================================================================ */
:root {
  --red:        #CC0000;
  --dark-red:   #8B0000;
  --charcoal:   #1A1A1A;
  --charcoal-2: #252525;
  --white:      #FFFFFF;
  --cream:      #FDF6ED;
  --tan:        #F0E8D8;
  --border:     #E2D8CC;
  --gray:       #6B6B6B;
  --gold:       #C8A45A;
  --off-white:  #FDF5F5;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background-color: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--dark-red); }

p { margin-bottom: 14px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 16px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1rem; }

/* ============================================================================
   Navigation
   ============================================================================ */
nav {
  position: sticky;
  top: 0;
  background-color: var(--charcoal);
  height: 64px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.nav-brand:hover { opacity: 0.85; }

.nav-logo {
  height: 36px;
  width: auto;
  display: block;
/*  filter: brightness(0) invert(1);*/
  transition: transform 0.3s;
}

.nav-brand:hover .nav-logo { transform: rotate(-8deg) scale(1.08); }

.nav-brand h1 {
  font-size: 1.3rem;
  color: var(--white);
  margin: 0;
  line-height: 1;
}

.nav-brand .tagline {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.48);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  display: none;
  margin-top: 2px;
}

.nav-links {
  display: none;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover { color: var(--white); border-bottom-color: var(--red); }
.nav-links a.active { color: var(--white); border-bottom-color: var(--red); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  display: block;
}

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

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background-color: var(--charcoal-2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-menu.active { max-height: 400px; }

.mobile-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  padding: 15px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active { background-color: var(--red); color: var(--white); }

@media (min-width: 600px) {
  .hamburger { display: none; }
  .nav-links { display: flex; }
  .mobile-menu { display: none; }
  .nav-brand .tagline { display: block; }
}

/* ============================================================================
   Alert Bar
   ============================================================================ */
.alert-bar {
  background-color: var(--red);
  color: var(--white);
  padding: 9px 16px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.alert-bar a { color: var(--white); font-weight: 700; text-decoration: underline; }
.alert-bar a:hover { color: rgba(255, 255, 255, 0.82); }

/* ============================================================================
   Hero Section (index.html)
   ============================================================================ */
.hero {
  background: linear-gradient(150deg, #0F0F0F 0%, #2C0000 55%, #7A0000 100%);
  color: var(--white);
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 5px solid var(--red);
}

/* Diagonal line texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 24px,
    rgba(255, 255, 255, 0.018) 24px,
    rgba(255, 255, 255, 0.018) 25px
  );
  pointer-events: none;
}

/* Warm glow bottom-right */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 164, 90, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
}

.hero .tagline {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 40px;
}

.hero-mascot-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-mascot {
  height: 140px;
  width: auto;
/*  filter: brightness(0) invert(1);*/
  animation: mascot-float 4s ease-in-out infinite;
  opacity: 0.9;
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.hero-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.hero-phone a { color: var(--gold); }
.hero-phone a:hover { color: #e0be78; }

.hero-hours {
  background-color: rgba(0, 0, 0, 0.38);
  border-left: 4px solid var(--red);
  border-radius: 0 4px 4px 0;
  padding: 14px 18px;
  font-size: 0.9rem;
  line-height: 1.75;
  text-align: left;
}

.hero-hours strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

/* ============================================================================
   Buttons
   ============================================================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 2px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
}

.btn-white {
  background-color: var(--red);
  color: var(--white) !important;
  border-color: var(--red);
}

.btn-white:hover {
  background-color: var(--dark-red);
  border-color: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(180, 0, 0, 0.5);
  color: var(--white) !important;
}

.btn-outline {
  background-color: transparent;
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: var(--white) !important;
}

/* ============================================================================
   Quick Access Grid
   ============================================================================ */
.quick-access {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 44px 20px;
  background-color: var(--cream);
}

.quick-card {
  background: var(--white);
  border-top: 4px solid var(--border);
  padding: 24px 16px;
  text-align: center;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: border-top-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.quick-card:hover {
  border-top-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.quick-card a { display: block; color: inherit; }
.quick-card h3 { color: var(--charcoal); font-size: 1rem; margin-bottom: 4px; }
.quick-card p { font-size: 0.84rem; color: var(--gray); margin: 0; }

/* ============================================================================
   Features Section  (dark, 3-card row)
   ============================================================================ */
.features {
  background-color: var(--charcoal);
  padding: 72px 24px;
  text-align: center;
}

.features-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.features h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.features-subtitle {
  font-family: 'Lato', sans-serif;
  color: rgba(255, 255, 255, 0.42);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--charcoal-2);
  border-top: 4px solid var(--red);
  padding: 32px 24px;
  text-align: left;
  border-radius: 0 0 4px 4px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.feature-icon { font-size: 2.4rem; margin-bottom: 14px; line-height: 1; }

.feature-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 8px; }
.feature-card p { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; line-height: 1.65; margin: 0; }

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================================
   Social / Gallery Section
   ============================================================================ */
.gallery {
  padding: 64px 24px;
  background-color: var(--cream);
  text-align: center;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.section-title-rule {
  width: 48px;
  height: 3px;
  background-color: var(--red);
  margin: 0 auto 36px;
  border-radius: 2px;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px;
  padding: 4px 0;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.2s, color 0.2s;
}

.social-link:hover { transform: scale(1.1); color: var(--red); }

.social-icon {
  width: 52px;
  height: 52px;
  filter: brightness(0) saturate(100%) invert(9%) sepia(100%) saturate(7000%) hue-rotate(1deg) brightness(90%);
  transition: filter 0.2s;
}

.social-link:hover .social-icon {
  filter: brightness(0) saturate(100%) invert(9%) sepia(100%) saturate(7000%) hue-rotate(1deg) brightness(65%);
}

/* Legacy gallery grid - kept for compatibility */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.gallery-item {
  background: var(--tan);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  transition: transform 0.2s;
}

.gallery-item:hover { transform: scale(1.02); }

.photo-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.82rem;
}

/* ============================================================================
   Info Strip
   ============================================================================ */
.info-strip {
  background-color: var(--charcoal);
  color: var(--white);
  padding: 36px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
}

.info-item strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.info-item a {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  transition: color 0.2s;
}

.info-item a:hover { color: var(--gold); }

@media (min-width: 768px) {
  .info-strip { grid-template-columns: repeat(3, 1fr); text-align: left; }
  .info-item { padding: 0 24px; border-right: 1px solid rgba(255, 255, 255, 0.1); }
  .info-item:last-child { border-right: none; }
}

/* ============================================================================
   Happy Hour Banner
   ============================================================================ */
.happy-hour-banner {
  background: linear-gradient(135deg, var(--red) 0%, #6A0000 100%);
  color: var(--white);
  padding: 32px 24px;
  text-align: center;
}

.happy-hour-banner .title {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.hh-bar {
  background-color: var(--charcoal);
  color: var(--gold);
  padding: 14px 16px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ============================================================================
   Footer
   ============================================================================ */
footer {
  background-color: #111111;
  color: rgba(255, 255, 255, 0.62);
  padding: 56px 24px 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-mascot {
  height: 64px;
  width: auto;
  display: block;
/*  filter: brightness(0) invert(0.35);*/
  margin-bottom: 14px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.footer-brand > p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.36);
  font-style: italic;
  margin: 0;
  text-transform: none;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
  margin-bottom: 8px;
  transition: color 0.2s;
  font-family: 'Lato', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.footer-col a:hover { color: var(--white); }
.footer-col p { margin: 0 0 6px; }

.footer-copyright {
  text-align: center;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 24px;
  letter-spacing: 0.05em;
}

@media (min-width: 600px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1.5fr; }
}

/* ============================================================================
   Page Hero  (About, Menu inner pages)
   ============================================================================ */
.page-hero {
  background: linear-gradient(150deg, #0F0F0F 0%, #2C0000 55%, #7A0000 100%);
  color: var(--white);
  padding: 72px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--red);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 24px,
    rgba(255, 255, 255, 0.018) 24px,
    rgba(255, 255, 255, 0.018) 25px
  );
  pointer-events: none;
}

.page-hero-eyebrow {
  position: relative;
  z-index: 2;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  font-size: 2.8rem;
  color: var(--white);
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.45);
  margin-bottom: 0;
}

.page-hero-mascot {
  position: absolute;
  right: 24px;
  bottom: 0;
  height: 100px;
  width: auto;
  opacity: 0.1;
/*  filter: brightness(0) invert(1);*/
  pointer-events: none;
  z-index: 1;
}

/* ============================================================================
   About Page
   ============================================================================ */
.about-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px;
}

.about-section { margin-bottom: 56px; }

.about-section h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--red);
  display: inline-block;
}

.about-mascot-float {
  float: right;
  height: 100px;
  margin: 0 0 16px 28px;
/*  filter: brightness(0) saturate(100%) invert(9%) sepia(100%) saturate(7000%) hue-rotate(1deg) brightness(85%);*/
  opacity: 0.68;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 56px 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 0.94rem;
}

.hours-table th {
  background-color: var(--charcoal);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 16px;
  text-align: left;
  font-size: 0.8rem;
}

.hours-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.hours-table tbody tr:hover td { background-color: var(--cream); }

.location-card {
  background-color: var(--cream);
  border-left: 4px solid var(--red);
  border-radius: 0 4px 4px 0;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.location-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--red); }

.map-embed {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-embed iframe { width: 100%; height: 280px; display: block; }

/* ============================================================================
   Menu Page
   ============================================================================ */
.menu-body {
  background-color: var(--cream);
  padding-bottom: 56px;
}

.section-tabs {
  display: flex;
  overflow-x: auto;
  background-color: var(--charcoal);
  scrollbar-width: none;
  position: sticky;
  top: 64px;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-tabs::-webkit-scrollbar { display: none; }

.section-tabs a {
  flex-shrink: 0;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.58);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.section-tabs a:hover { color: var(--white); background-color: rgba(255, 255, 255, 0.05); }
.section-tabs a.active { color: var(--white); border-bottom-color: var(--red); }

.menu-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 28px 16px 0;
}

.menu-block {
  background-color: var(--white);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.menu-block-header {
  background-color: var(--charcoal);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-left: 5px solid var(--red);
}

.menu-block-inner { padding: 16px 20px; }

.col-headers {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 8px 0 10px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 6px;
}

.row-two {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 0.9rem;
}

.row-two:last-of-type { border-bottom: none; }

.row-two-name { color: var(--charcoal); }

.row-two-price {
  text-align: right;
  font-weight: 700;
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.row-single {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  gap: 12px;
}

.row-single:last-of-type { border-bottom: none; }

.row-single-name { color: var(--charcoal); flex: 1; }

.row-single-price {
  font-weight: 700;
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  white-space: nowrap;
}

.menu-note {
  font-size: 0.82rem;
  color: var(--gray);
  font-style: italic;
  padding: 8px 0;
  line-height: 1.55;
}

.menu-cta {
  text-align: center;
  padding: 28px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.menu-cta a { color: var(--red); font-weight: 700; }
.menu-cta a:hover { color: var(--dark-red); }

/* ============================================================================
   Responsive Breakpoints
   ============================================================================ */
@media (min-width: 480px) {
  .hero h1 { font-size: 3.8rem; }
  .hero-buttons { flex-direction: row; justify-content: center; }
}

@media (min-width: 768px) {
  .hero { padding-bottom: 120px; }
  .hero h1 { font-size: 4.5rem; }
  .hero-mascot-wrap { flex-wrap: nowrap; }
  .hero-info { align-items: flex-start; text-align: left; }
  .page-hero h1 { font-size: 3.5rem; }
  .map-embed iframe { height: 340px; }
  .about-section h2 { font-size: 2rem; }
}
