@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --diner-red: #8B0000;
  --diner-red-light: #B22222;
  --cream: #FFF8E7;
  --cream-dark: #F5E6C8;
  --charcoal: #1a1a1a;
  --chrome: #C0C0C0;
  --chrome-bright: #E8E8E8;
  --mustard: #E6B800;
  --teal: #2A9D8F;
  --neon-glow: 0 0 10px #ff6b6b, 0 0 20px #ff6b6b, 0 0 40px #ff4444;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  --radius: 8px;
  --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1, h2, h3, .display {
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* Checkered pattern utility */
.checkered {
  background-color: var(--cream);
  background-image:
    linear-gradient(45deg, rgba(139, 0, 0, 0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(139, 0, 0, 0.04) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(139, 0, 0, 0.04) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(139, 0, 0, 0.04) 75%);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
}

.vinyl-texture {
  background: linear-gradient(135deg, var(--diner-red) 0%, #6b0000 100%);
  position: relative;
}
.vinyl-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}

/* Neon logo text */
.neon-text {
  color: #fff;
  text-shadow: var(--neon-glow);
}

.chrome-text {
  background: linear-gradient(180deg, #fff 0%, #c0c0c0 40%, #808080 60%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(1px 2px 2px rgba(0,0,0,0.5));
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--diner-red);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo img {
  height: 48px;
  width: auto;
  border-radius: 4px;
}
.nav-logo span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--mustard); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-24h {
  background: var(--mustard);
  color: var(--charcoal);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 184, 0, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(230, 184, 0, 0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--diner-red);
  color: #fff;
  box-shadow: 0 4px 0 #5a0000;
}
.btn-primary:hover {
  background: var(--diner-red-light);
  box-shadow: 0 6px 12px rgba(139, 0, 0, 0.4);
}

.btn-secondary {
  background: var(--charcoal);
  color: var(--cream);
  border: 2px solid var(--chrome);
}
.btn-secondary:hover { background: #333; }

.btn-mustard {
  background: var(--mustard);
  color: var(--charcoal);
  box-shadow: 0 4px 0 #b89400;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.55) 0%,
    rgba(139, 0, 0, 0.45) 50%,
    rgba(26, 26, 26, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1rem 4rem;
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--mustard);
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--cream);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-motto {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--teal);
  letter-spacing: 0.15em;
  text-shadow: 0 0 12px rgba(42, 157, 143, 0.6);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Trust bar */
.trust-bar {
  background: var(--charcoal);
  color: var(--cream);
  padding: 1.25rem 0;
  border-bottom: 4px solid var(--diner-red);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem;
}
.trust-icon {
  font-size: 1.75rem;
  color: var(--mustard);
}
.trust-item strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
}
.trust-item span {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Daily Specials Board */
.specials-board {
  background: var(--charcoal);
  padding: 4rem 0;
  position: relative;
}

.specials-board::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139, 0, 0, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(230, 184, 0, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.specials-board-frame {
  position: relative;
  border: 4px solid var(--mustard);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, #2a1515 0%, var(--charcoal) 40%, #1a1010 100%);
  box-shadow:
    0 0 0 2px var(--diner-red),
    0 0 40px rgba(230, 184, 0, 0.15),
    inset 0 0 60px rgba(0, 0, 0, 0.4);
}

.specials-board-header {
  text-align: center;
  margin-bottom: 2rem;
}

.specials-board-label {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.specials-board-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--mustard);
  text-shadow: 0 0 20px rgba(230, 184, 0, 0.4);
  margin-bottom: 0.5rem;
}

.specials-board-tagline {
  color: var(--cream);
  opacity: 0.85;
  font-size: 1.05rem;
}

.specials-board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.specials-board-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--cream);
  opacity: 0.7;
  padding: 2rem;
}

.special-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border-bottom: 4px solid var(--diner-red);
}

.special-card-photo {
  width: calc(100% + 3rem);
  margin: -1.5rem -1.5rem 1rem;
  height: 160px;
  object-fit: cover;
}

.special-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.special-card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--diner-red);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.special-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
  padding-right: 4rem;
}

.special-card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--diner-red);
  margin-bottom: 0.5rem;
}

.special-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.specials-board-footer {
  text-align: center;
  margin-top: 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--cream);
}

.specials-board-updated {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 248, 231, 0.5);
}

/* Highlights page */
.highlights-feed {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.highlights-loading,
.highlight-empty {
  text-align: center;
  color: #666;
  padding: 3rem 1rem;
}

.highlight-post {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--diner-red);
  transition: transform 0.2s;
}

.highlight-post:hover { transform: translateY(-2px); }

.highlight-post.highlight-pinned {
  border-left-color: var(--mustard);
  background: linear-gradient(135deg, #fff 0%, #fffdf5 100%);
}

.highlight-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: #888;
}

.highlight-type {
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.highlight-pin {
  background: var(--mustard);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.highlight-post-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.highlight-post h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--diner-red);
  margin-bottom: 0.75rem;
}

.highlight-post p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.highlights-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--cream-dark);
  border-radius: var(--radius);
}

.highlights-cta p { margin-bottom: 1rem; font-size: 1.1rem; }

/* Section common */
.section {
  padding: 5rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--diner-red);
  margin-bottom: 0.5rem;
}
.section-header .divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--diner-red), var(--mustard), var(--teal));
  margin: 0.75rem auto;
  border-radius: 2px;
}
.section-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--diner-red);
}
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,26,26,0.85);
  color: var(--cream);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-style: italic;
}

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.about-text p:first-of-type::first-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  float: left;
  line-height: 0.8;
  margin: 0.1rem 0.5rem 0 0;
  color: var(--diner-red);
}

.featured-in {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.featured-in span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  color: #888;
  letter-spacing: 0.1em;
}
.featured-badge {
  background: var(--cream-dark);
  border: 2px solid var(--diner-red);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--diner-red);
}

/* He-Man Challenge */
.heman {
  background: var(--charcoal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.heman::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139,0,0,0.3) 0%, transparent 70%);
}

.heman-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.heman-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--mustard);
  box-shadow: 0 0 30px rgba(230, 184, 0, 0.3);
}
.heman-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.heman-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--mustard);
  margin-bottom: 0.5rem;
}
.heman-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--teal);
  margin-bottom: 1rem;
}

.heman-list {
  list-style: none;
  margin: 1.5rem 0;
}
.heman-list li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.heman-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--mustard);
}

.challenge-badge {
  display: inline-block;
  background: var(--diner-red);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  letter-spacing: 0.1em;
  border: 2px dashed var(--mustard);
}

.heman-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.heman-stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--mustard);
}
.heman-stat span { font-size: 0.85rem; opacity: 0.8; }

/* Menu */
.menu-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.menu-tab {
  background: var(--cream-dark);
  border: 2px solid transparent;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--charcoal);
}
.menu-tab:hover,
.menu-tab.active {
  background: var(--diner-red);
  color: #fff;
  border-color: var(--diner-red);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.menu-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--diner-red);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.menu-item h3 {
  font-size: 1.2rem;
  color: var(--charcoal);
}
.menu-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--diner-red);
  white-space: nowrap;
}
.menu-item p {
  font-size: 0.9rem;
  color: #666;
}

.menu-hero-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  background: linear-gradient(135deg, var(--diner-red), #5a0000);
  color: #fff;
  border-left: none;
  padding: 0;
  overflow: hidden;
}
.menu-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}
.menu-hero-card .menu-hero-text {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-hero-card h3 {
  font-size: 2rem;
  color: var(--mustard);
  margin-bottom: 0.5rem;
}
.menu-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background: var(--cream-dark);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}
.menu-value {
  text-align: center;
  margin-top: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--teal);
  letter-spacing: 0.06em;
}

/* Gallery */
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  padding: 2rem 1rem 0.75rem;
  font-size: 0.85rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-social {
  text-align: center;
  margin-top: 2.5rem;
}
.gallery-social p { margin-bottom: 1rem; font-size: 1.1rem; }
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: transform 0.2s;
}
.social-link:hover { transform: scale(1.05); }
.social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.social-link.facebook {
  background: #1877F2;
  color: #fff;
}

/* Testimonials */
.testimonials {
  background: var(--cream-dark);
}
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  min-width: 100%;
  padding: 2rem;
  text-align: center;
}
.testimonial-slide blockquote {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.5rem;
}
.testimonial-slide cite {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--diner-red);
  font-style: normal;
  letter-spacing: 0.06em;
}
.testimonial-source {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.25rem;
  font-family: 'Source Sans 3', sans-serif;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--diner-red);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.2s;
  z-index: 2;
}
.carousel-btn:hover { background: var(--diner-red-light); }
.carousel-btn.prev { left: -1rem; }
.carousel-btn.next { right: -1rem; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: var(--diner-red);
  transform: scale(1.3);
}

/* Visit */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.info-card h3 {
  font-size: 1.3rem;
  color: var(--diner-red);
  margin-bottom: 0.75rem;
}
.info-card p, .info-card a {
  font-size: 1rem;
  line-height: 1.8;
}
.info-card a.tel {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--diner-red);
  display: block;
  margin-top: 0.5rem;
}
.info-card a.tel:hover { color: var(--diner-red-light); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 0.4rem 0;
  border-bottom: 1px solid #eee;
}
.hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--teal);
}

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--diner-red);
  min-height: 400px;
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #ddd;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--diner-red);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-success {
  display: none;
  background: var(--teal);
  color: #fff;
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
}

.form-error {
  display: none;
  background: #8B0000;
  color: #fff;
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.menu-pdf-wrap {
  text-align: center;
  margin-top: 1.5rem;
}

.newsletter-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.25rem;
}

.newsletter-status.success { color: var(--teal); font-weight: 600; }
.newsletter-status.error { color: var(--diner-red); font-weight: 600; }

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.newsletter {
  background: var(--charcoal);
  color: var(--cream);
  padding: 2rem;
  border-radius: var(--radius);
  margin-top: 2rem;
}
.newsletter h3 {
  font-size: 1.5rem;
  color: var(--mustard);
  margin-bottom: 0.5rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
}
.newsletter-form button {
  white-space: nowrap;
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 3rem 0 1.5rem;
  border-top: 4px solid var(--diner-red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer h3 {
  font-size: 1.3rem;
  color: var(--mustard);
  margin-bottom: 1rem;
}
.footer p, .footer a {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.8;
}
.footer a:hover { opacity: 1; color: var(--mustard); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

/* Floating phone CTA */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}
.floating-cta .btn {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  font-size: 0.85rem;
  padding: 0.65rem 1.2rem;
}

/* Ambiance toggle */
.ambiance-toggle {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 999;
  background: var(--charcoal);
  color: var(--cream);
  border: 2px solid var(--chrome);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ambiance-toggle:hover { background: var(--diner-red); }
.ambiance-toggle.active { background: var(--teal); border-color: var(--teal); }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--charcoal);
  padding: 1.5rem;
  z-index: 999;
  border-bottom: 3px solid var(--diner-red);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu a {
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links, .nav-cta .badge-24h { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { display: block; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .heman-grid, .visit-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .menu-hero-card { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .carousel-btn.prev { left: 0; }
  .carousel-btn.next { right: 0; }
}

@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; }
  .heman-stats { gap: 1rem; }
  .newsletter-form { flex-direction: column; }
  .floating-cta { bottom: 1rem; right: 1rem; }
  .ambiance-toggle { bottom: 1rem; left: 1rem; }
}

/* Neon mode toggle */
body.neon-mode .hero-motto,
body.neon-mode .hero h1,
body.neon-mode .neon-text {
  animation: neon-flicker 3s ease-in-out infinite;
}
body.neon-mode .badge-24h {
  animation: neon-flicker 2s ease-in-out infinite, pulse-badge 2s ease-in-out infinite;
}
@keyframes neon-flicker {
  0%, 100% { text-shadow: 0 0 10px #ff6b6b, 0 0 20px #ff6b6b, 0 0 40px #ff4444; }
  50% { text-shadow: 0 0 5px #ff9999, 0 0 15px #ff6b6b, 0 0 25px #ff4444; }
  92% { text-shadow: 0 0 2px #ff6b6b; }
  93% { text-shadow: 0 0 20px #ff6b6b, 0 0 40px #ff4444; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}