/* =========================
   SMITTY'S - REAL DINER VIBES
   Bold, Messy, Personality
   ========================= */

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

:root {
  /* Deep Diner Colors */
  --red: #B91C1C;
  --red-dark: #7F1D1D;
  --red-light: #FCA5A5;
  
  /* Neutrals */
  --cream: #f8f1e7;
  --cream-dark: #FEF3C7;
  --off-white: #FAF8F5;
  --paper: #f8f1e7;
  
  --black: #1C1917;
  --gray-dark: #44403C;
  --gray: #78716C;
  --gray-light: #D6D3D1;
  
  --white: #FFFFFF;
  
  /* Fonts */
  --font-display: 'Bebas Neue', 'Archivo Black', impact, sans-serif;
  --font-script: 'Caveat', cursive;
  --font-body: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  line-height: 1.6;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--red);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  z-index: 9999;
}
.skip-link:focus { top: 20px; }

/* =========================
   TOP BAR
   ========================= */
.top-bar {
  background: var(--red-dark);
  color: white;
  padding: 10px 0;
  font-size: 0.9375rem;
  font-weight: 600;
  border-bottom: 3px solid var(--red);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.top-bar-phone {
  color: var(--cream);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.top-bar-phone:hover {
  color: white;
}

/* =========================
   HEADER
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 100px;
  height: auto;
  mix-blend-mode: multiply;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-script {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  letter-spacing: 1px;
  line-height: 0.9;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--black);
  border-radius: 4px;
  transition: all 0.2s;
}

.main-nav a:not(.btn):hover {
  background: rgba(185, 28, 28, 0.1);
  color: var(--red);
}

.nav-toggle {
  display: none;
  background: var(--red);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 1.5rem;
  cursor: pointer;
  font-weight: 700;
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--red);
  color: white;
  border-color: var(--red-dark);
  box-shadow: 0 4px 0 var(--red-dark), 0 6px 12px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--red-dark), 0 8px 16px rgba(0,0,0,0.3);
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--red-dark), 0 4px 8px rgba(0,0,0,0.2);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline-light:hover {
  background: white;
  color: var(--red);
}

.btn-outline {
  background: white;
  color: var(--black);
  border-color: var(--gray-dark);
}

.btn-outline:hover {
  background: var(--black);
  color: white;
}

.btn-hero {
  padding: 20px 40px;
  font-size: 1.25rem;
  background: white !important;
  color: var(--red) !important;
  border: 4px solid var(--red) !important;
  box-shadow: 0 6px 0 var(--red-dark), 0 8px 20px rgba(0,0,0,0.5);
  font-weight: 900;
}

.btn-hero:hover {
  background: var(--red) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--red-dark), 0 10px 24px rgba(0,0,0,0.6);
}

.btn-block {
  width: 100%;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.nav-order {
  padding: 12px 24px;
}

/* =========================
   HERO - FULL BLEED
   ========================= */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  border-top: 4px solid var(--red);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 80px 20px;
  max-width: 900px;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--cream-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.hero-stamp {
  display: inline-block;
  padding: 8px 20px;
  background: var(--red);
  color: white;
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 3px solid white;
  border-radius: 4px;
  transform: rotate(-2deg);
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: white;
  line-height: 0.95;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.5);
}

.hero-mega {
  display: block;
  font-size: clamp(3.5rem, 12vw, 8rem);
  color: var(--cream);
  text-shadow: 
    4px 4px 0 var(--red),
    8px 8px 0 rgba(0,0,0,0.5);
}

.hero-handwritten {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--cream);
  margin-bottom: 30px;
  transform: rotate(-3deg);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.hero-lead {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--cream);
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-hours {
  color: var(--cream);
  font-size: 1.125rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* =========================
   AWARDS BANNER
   ========================= */
.awards-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: 30px 0;
  border-top: 4px solid var(--red-dark);
  border-bottom: 4px solid var(--red-dark);
}

.awards-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.award-item {
  text-align: center;
  color: white;
}

.award-item strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 8px;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}

.award-item span {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

/* =========================
   SMITTY'S SAYS
   ========================= */
.smitty-says {
  background: var(--cream);
  padding: 60px 0;
  border-bottom: 4px solid var(--red);
}

.smitty-says-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.smitty-quote {
  position: relative;
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  border: 3px solid var(--red);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 400px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-mark {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  color: var(--red);
  font-family: Georgia, serif;
  line-height: 1;
}

.smitty-quote p {
  font-size: 1.125rem;
  color: var(--gray-dark);
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

.quote-author {
  margin-top: 15px;
  font-weight: 800;
  color: var(--red);
  font-size: 1rem;
}

.smitty-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.timeline-item {
  text-align: center;
  padding: 20px 10px;
  background: white;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
}

.timeline-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--red);
  margin-bottom: 4px;
}

.timeline-item span {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 600;
}

/* =========================
   CUSTOMER REVIEWS CAROUSEL
   ========================= */
.reviews {
  padding: 60px 0 80px;
  background: var(--paper);
  border-top: 4px solid var(--red);
}

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-track-wrapper {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  border: 3px solid var(--gray-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.review-stars {
  color: #F59E0B;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.review-text {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 15px;
  border-top: 2px dashed var(--gray-light);
}

.review-author strong {
  font-weight: 800;
  color: var(--black);
  font-size: 1rem;
}

.review-author span {
  font-size: 0.8125rem;
  color: var(--gray);
  font-weight: 600;
}

/* Carousel buttons */
.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  border: 3px solid var(--red-dark);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
  background: var(--red-dark);
  transform: scale(1.1);
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 2px solid var(--gray);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.carousel-dot.active {
  background: var(--red);
  border-color: var(--red-dark);
  transform: scale(1.3);
}

/* =========================
   SIGNATURE - POLAROID STACK
   ========================= */
.signature {
  padding: 80px 0;
  background: var(--paper);
}

.section-header-diner {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-diner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-header-diner p {
  font-size: 1.25rem;
  color: var(--gray);
  font-weight: 600;
}

.section-header-diner.light h2,
.section-header-diner.light p {
  color: white;
}

.polaroid-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.polaroid {
  background: white;
  padding: 20px 20px 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.3s;
}

.polaroid-1 {
  transform: rotate(-2deg);
}

.polaroid-2 {
  transform: rotate(1deg);
  margin-top: 30px;
}

.polaroid-3 {
  transform: rotate(-1.5deg);
  margin-top: -20px;
}

.polaroid:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  z-index: 10;
}

.polaroid-photo {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--gray-light);
}

.polaroid-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.king-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--red);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.875rem;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transform: rotate(5deg);
}

.polaroid-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--font-script);
  font-size: 1.125rem;
  color: var(--gray-dark);
  background: rgba(255,255,255,0.9);
  padding: 4px 12px;
  border-radius: 4px;
  transform: rotate(-2deg);
}

.polaroid-caption h3 {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--black);
  margin-bottom: 8px;
}

.polaroid-caption p {
  color: var(--gray-dark);
  font-size: 1rem;
  line-height: 1.5;
}

/* =========================
   MENU - SIMPLIFIED WITH MODAL
   ========================= */
.menu {
  background: var(--red);
  padding: 80px 0;
  border-top: 4px solid var(--red-dark);
  border-bottom: 4px solid var(--red-dark);
}

.menu-simple {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.menu-actions {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

.btn-menu {
  font-size: 1.5rem;
  padding: 24px 48px;
  margin: 0 auto;
  max-width: 400px;
}

.order-box-inline {
  background: var(--cream);
  padding: 40px;
  border-radius: 8px;
  border: 4px solid var(--red-dark);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  max-width: 500px;
  margin: 0 auto;
}

.order-box-inline h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

.order-links-inline {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.order-links-inline .order-link {
  flex: 1;
  padding: 14px 20px;
  background: white;
  border: 3px solid var(--gray-dark);
  border-radius: 4px;
  font-weight: 800;
  text-align: center;
  transition: all 0.2s;
  text-transform: uppercase;
  font-size: 0.9375rem;
}

.order-links-inline .order-link:hover {
  background: var(--gray-dark);
  color: white;
  transform: translateY(-2px);
}

/* Menu Modal */
.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.menu-modal.menu-modal-open {
  display: flex;
}

.menu-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.menu-modal-content {
  position: relative;
  max-width: 900px;
  max-height: 90vh;
  width: 100%;
  z-index: 10001;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 4px solid var(--red);
}

.menu-modal-content img {
  width: 100%;
  height: auto;
  display: none;
  max-height: calc(90vh - 100px);
  object-fit: contain;
}

.menu-modal-content img.active {
  display: block;
}

.menu-pages {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-images-wrapper {
  flex: 1;
  overflow: hidden;
}

.menu-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--red);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10003;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.menu-nav:hover {
  background: var(--red-dark);
  transform: translateY(-50%) scale(1.1);
}

.menu-prev {
  left: 10px;
}

.menu-next {
  right: 10px;
}

.menu-indicator {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: white;
}

.menu-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}

.menu-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

.menu-dot:hover {
  background: var(--red-dark);
}

.menu-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--red);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.2s;
}

.menu-modal-close:hover {
  background: var(--red-dark);
  transform: scale(1.1);
}

.order-divider {
  text-align: center;
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin: 25px 0;
  position: relative;
}

.order-divider::before,
.order-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 2px;
  background: var(--gray-light);
}

.order-divider::before { left: 0; }
.order-divider::after { right: 0; }

.order-footer {
  text-align: center;
  padding-top: 25px;
  border-top: 2px dashed var(--gray);
}

.order-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gray-dark);
}

.order-phone {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  font-family: var(--font-display);
  letter-spacing: 1px;
}

.order-phone:hover {
  text-decoration: underline;
}

/* =========================
   STORY - CREAM PANEL
   ========================= */
.story {
  background: var(--cream);
  padding: 80px 0;
  border-top: 4px solid var(--red);
}

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

.story-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 8px solid white;
  transform: rotate(-1deg);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.story-content p {
  font-size: 1.125rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-features {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 3px solid var(--red);
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature strong {
  font-weight: 800;
  color: var(--black);
  font-size: 1.125rem;
}

.feature span {
  color: var(--gray);
  font-weight: 600;
}

/* =========================
   VISIT - RED BAND
   ========================= */
.visit {
  background: var(--red);
  padding: 80px 0;
  border-top: 4px solid var(--red-dark);
  color: white;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.visit-card {
  background: var(--cream);
  padding: 30px;
  border-radius: 8px;
  border: 4px solid var(--red-dark);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.visit-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hours-simple {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hours-simple div {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  background: white;
  border-radius: 4px;
  border: 2px solid var(--gray-light);
}

.hours-simple strong {
  color: var(--black);
  font-weight: 800;
}

.hours-simple span {
  color: var(--gray-dark);
  font-weight: 600;
}

.phone-big {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  font-family: var(--font-display);
  letter-spacing: 1px;
}

.phone-big:hover {
  text-decoration: underline;
}

.visit-card p {
  color: var(--gray-dark);
  margin-bottom: 15px;
}

.map-card {
  grid-column: 1 / -1;
}

.map-embed {
  border-radius: 4px;
  overflow: hidden;
  border: 4px solid white;
}

/* =========================
   SOCIAL - CREAM BAND
   ========================= */
.social {
  background: var(--cream);
  padding: 60px 0;
  text-align: center;
  border-top: 4px solid var(--red);
}

.social-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.social-inner p {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 30px;
  font-weight: 600;
}

.social-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-btn {
  padding: 16px 40px;
  background: var(--red);
  color: white;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  border: 3px solid var(--red-dark);
  box-shadow: 0 4px 0 var(--red-dark);
  transition: all 0.2s;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--red-dark);
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
  background: var(--black);
  color: white;
  padding: 60px 0 0;
  border-top: 4px solid var(--red);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 2px solid var(--gray-dark);
}

.footer-section h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--red);
  font-family: var(--font-display);
}

.footer-section p {
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-section a {
  color: var(--gray-light);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: white;
}

.footer-phone {
  font-size: 1.3rem;
  color: var(--red) !important;
  font-weight: 800;
}

.footer-phone:hover {
  color: var(--red-light) !important;
}

.footer-price {
  color: var(--gray) !important;
  font-style: italic;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-hours div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--gray-dark);
}

.footer-hours strong {
  color: white;
}

.footer-hours span {
  color: var(--gray-light);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  padding: 8px 16px;
  background: var(--red);
  color: white !important;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.footer-map {
  grid-column: span 1;
}

.map-embed-footer {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--gray-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  aspect-ratio: 1 / 1;
  max-height: 220px;
}

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

.footer-btn {
  margin-top: 15px;
  display: inline-block;
}

.footer-bottom {
  text-align: center;
  padding: 30px 0;
}

.footer-bottom p {
  color: var(--gray);
  font-size: 0.875rem;
}

/* =========================
   RUNNING SMITTY ANIMATION
   ========================= */
.running-smitty {
  position: fixed;
  bottom: 20px;
  left: -150px;
  z-index: 50;
  animation: runAcross 20s linear infinite;
  animation-delay: 8s;
  pointer-events: none;
  background: transparent;
}

.running-smitty img {
  width: 100px;
  height: auto;
  display: block;
  background: transparent;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

@keyframes runAcross {
  0% {
    left: -150px;
    transform: scaleX(1);
  }
  35% {
    left: calc(100% + 150px);
    transform: scaleX(1);
  }
  35.01% {
    left: calc(100% + 150px);
    transform: scaleX(-1);
  }
  70% {
    left: -150px;
    transform: scaleX(-1);
  }
  70.01% {
    left: -150px;
    transform: scaleX(1);
  }
  100% {
    left: -150px;
    transform: scaleX(1);
  }
}

/* Pause animation on hover */
.running-smitty:hover {
  animation-play-state: paused;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
  .hero {
    min-height: 70vh;
  }

  .awards-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .smitty-says-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .smitty-character img {
    max-width: 150px;
    margin: 0 auto;
  }

  .smitty-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .polaroid-stack {
    grid-template-columns: 1fr;
  }

  .polaroid {
    transform: rotate(0) !important;
    margin-top: 0 !important;
  }

  .order-box-inline {
    padding: 30px;
  }

  .btn-menu {
    font-size: 1.25rem;
    padding: 20px 32px;
  }

  .story-inner {
    grid-template-columns: 1fr;
  }

  .polaroid-stack {
    grid-template-columns: 1fr;
  }

  .polaroid {
    transform: rotate(0) !important;
    margin-top: 0 !important;
  }

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

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

  .footer-map {
    grid-column: span 1;
  }
}

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

  .main-nav {
    position: fixed;
    top: 90px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    background: var(--cream);
    border: 4px solid var(--red);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 999;
  }

  .main-nav.nav-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .nav-order {
    margin-top: 10px;
  }

  .top-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .hero-content {
    padding: 60px 20px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .menu-actions {
    gap: 30px;
  }

  .order-box-inline {
    padding: 24px;
  }

  .order-links-inline {
    flex-direction: column;
  }

  .btn-menu {
    font-size: 1.125rem;
    padding: 18px 28px;
    max-width: 100%;
  }

  .menu-modal {
    padding: 10px;
  }

  .menu-modal-content {
    max-height: 95vh;
  }

  .menu-modal-close {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    top: 5px;
    right: 5px;
  }

  .social-buttons {
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }

  .social-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-mega {
    font-size: 2.5rem;
  }

  .hero-handwritten {
    font-size: 2rem;
  }
}