@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

/* ===========================
   CUSTOM PROPERTIES
   =========================== */
:root {
  --red:          #C8102E;
  --red-dark:     #8B0000;
  --red-hover:    #a00d24;
  --yellow:       #FFD700;
  --yellow-dark:  #E6B800;
  --black:        #0A0A0A;
  --dark:         #1C1C1C;
  --gray:         #555555;
  --light-gray:   #F4F4F4;
  --white:        #FFFFFF;

  --font-display: 'Anton', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --nav-height:   70px;
  --radius:       8px;
  --shadow:       0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.22);
  --transition:   all 0.28s ease;
}

/* ===========================
   RESET
   =========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 { line-height: 1.1; }

.section-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ===========================
   TORNADO DIVIDER
   =========================== */
.tornado-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px 0;
  font-size: 1.4rem;
}

.tornado-divider::before,
.tornado-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(200,16,46,0.4));
}

.tornado-divider::after {
  background: linear-gradient(to left, transparent, rgba(200,16,46,0.4));
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon { font-size: 1.9rem; line-height: 1; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.nav-logo-text span { color: var(--yellow); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 4px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  background: rgba(255,215,0,0.1);
}

.nav-order {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  margin-left: 6px;
}

.nav-order:hover {
  background: var(--red-dark) !important;
  color: var(--white) !important;
}

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

.nav-hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

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

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: #111;
  padding: 16px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  border-top: 2px solid var(--red);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

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

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 14px 20px;
  border-radius: 5px;
  transition: var(--transition);
}

.nav-mobile a:hover,
.nav-mobile a.active { color: var(--yellow); background: rgba(255,215,0,0.08); }

.nav-mobile-order {
  background: var(--red) !important;
  color: var(--white) !important;
  text-align: center;
  margin-top: 8px;
  border-radius: 5px;
}

.nav-mobile-order:hover { background: var(--red-dark) !important; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(200,16,46,0.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,16,46,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255,215,0,0.07);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 18px rgba(255,215,0,0.3);
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,215,0,0.4);
}

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

.btn-lg { font-size: 1.1rem; padding: 18px 40px; }

/* ===========================
   HERO — HOME
   =========================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding: 100px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 50%, rgba(200,16,46,0.38) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(255,215,0,0.12) 0%, transparent 45%),
    rgba(10,10,10,0.74);
}

.hero-bg::after {
  content: '🌪️';
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(140px, 28vw, 360px);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.28);
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10.5vw, 7.5rem);
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title .line-red   { color: var(--red); display: block; text-shadow: 0 0 50px rgba(200,16,46,0.45); }
.hero-title .line-white { color: var(--white); display: block; }

.hero-title .line-tornado {
  display: block;
  color: var(--yellow);
  font-weight: 700;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-desc-list {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
  list-style: none;
  padding: 0;
}

.hero-desc-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.hero-desc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 44px 0 36px;
  max-width: 480px;
}

.hero-info {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-info-item { display: flex; flex-direction: column; gap: 4px; }

.hero-info-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}

.hero-info-value {
  font-family: var(--font-heading);
  font-size: 0.93rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}

/* ===========================
   FEATURES
   =========================== */
.features {
  padding: 90px 24px;
  background: var(--white);
}

.features-header { text-align: center; margin-bottom: 52px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 38px 28px;
  text-align: center;
  border-bottom: 4px solid var(--red);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--red), var(--yellow));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); background: var(--white); }
.feature-card:hover::before { opacity: 1; }

.feature-icon { font-size: 3rem; margin-bottom: 16px; display: block; }

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}

.feature-card p { color: var(--gray); font-size: 0.93rem; line-height: 1.72; }

/* ===========================
   HOURS & LOCATION
   =========================== */
.hours-location {
  padding: 90px 24px;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hours-location::before {
  content: '⚡';
  position: absolute;
  right: -2%;
  bottom: -8%;
  font-size: clamp(120px, 22vw, 280px);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}

.hours-location-header { text-align: center; margin-bottom: 52px; }

.hours-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.hours-card,
.location-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px;
  border-top: 3px solid var(--red);
}

.hours-card h3,
.location-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-list { display: flex; flex-direction: column; gap: 0; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.93rem;
}

.hours-row:last-child { border-bottom: none; padding-bottom: 0; }

.hours-row .day {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65);
}

.hours-row .time {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
}

.location-details { display: flex; flex-direction: column; gap: 18px; }

.location-item { display: flex; align-items: flex-start; gap: 14px; }

.location-item-icon {
  color: var(--yellow);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
  width: 24px;
  text-align: center;
}

.location-item-text { color: rgba(255,255,255,0.8); font-size: 0.93rem; line-height: 1.55; }

.location-item-text strong {
  color: var(--white);
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.location-item-text a { color: var(--yellow); transition: var(--transition); }
.location-item-text a:hover { color: var(--white); }

/* ===========================
   REVIEWS
   =========================== */
.reviews {
  padding: 90px 24px;
  background: var(--light-gray);
}

.reviews-header { text-align: center; margin-bottom: 52px; }

.reviews-overall {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 30px;
  padding: 8px 20px;
  margin-top: 16px;
  box-shadow: var(--shadow);
}

.reviews-overall-stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; }

.reviews-overall-score {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.reviews-overall-count { font-size: 0.82rem; color: var(--gray); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
  min-height: 200px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--yellow);
  transition: var(--transition);
}

.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.review-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-name {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
}

.review-date { font-size: 0.78rem; color: var(--gray); margin-top: 2px; }

.review-stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }

.review-text { font-size: 0.9rem; color: var(--gray); line-height: 1.72; font-style: italic; }

.reviews-loading,
.reviews-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--gray);
  font-family: var(--font-heading);
  font-size: 1rem;
}

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

/* ===========================
   PAGE HERO — SHARED
   =========================== */
.page-hero {
  background: var(--dark);
  padding: 72px 24px 52px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(200,16,46,0.22) 0%, transparent 60%),
    rgba(0,0,0,0.60);
  z-index: 1;
}

.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 5.5rem);
  color: var(--white);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  line-height: 0.95;
}

.page-hero h1 span { color: var(--yellow); }

.page-hero p {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  margin-top: 14px;
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===========================
   MENU PAGE
   =========================== */
.menu-image-section {
  padding: 72px 24px;
  background: var(--white);
  text-align: center;
}

.menu-image-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--dark);
}

.menu-image-section p { color: var(--gray); margin-bottom: 36px; }

.menu-image-wrapper {
  max-width: 880px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.menu-sections { padding: 60px 24px 80px; background: var(--light-gray); }

.menu-sections-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
  color: var(--dark);
}

.menu-section {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 28px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.menu-section + .menu-section { margin-top: 28px; }

.menu-section-header {
  background: var(--red);
  color: var(--white);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-section-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.menu-section-icon { font-size: 1.4rem; }

.menu-section-note {
  padding: 12px 28px;
  background: rgba(200,16,46,0.04);
  border-bottom: 1px solid rgba(200,16,46,0.1);
  color: var(--gray);
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.55;
}

.menu-items { padding: 8px 0; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 28px;
  gap: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: var(--light-gray); }

.menu-item-info { flex: 1; }

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 3px;
  vertical-align: middle;
}

.badge-spicy { background: #FF4500; color: var(--white); }
.badge-new   { background: var(--yellow); color: var(--black); }
.badge-veg   { background: #2d9e4e; color: var(--white); }
.badge-21    { background: var(--dark); color: var(--yellow); }

.menu-item-desc {
  font-size: 0.83rem;
  color: var(--gray);
  margin-top: 4px;
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

/* Add-ons inside menu sections */
.menu-addons {
  padding: 8px 28px 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0 32px;
}

.menu-addon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.88rem;
}

.menu-addon:last-child { border-bottom: none; }

.menu-addon-name { color: var(--dark); }
.menu-addon-price { font-family: var(--font-heading); font-weight: 700; color: var(--red); }

/* ===========================
   ABOUT PAGE
   =========================== */
.about-story {
  padding: 90px 24px;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 22px;
  line-height: 1.05;
}

.about-story-text h2 span { color: var(--red); }

.about-story-text p {
  color: var(--gray);
  font-size: 0.97rem;
  line-height: 1.82;
  margin-bottom: 16px;
}

.about-stat-panel {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
}

.about-stat-panel h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0.9;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-item {
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 20px 14px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--yellow);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
}

.about-craft {
  padding: 90px 24px;
  background: var(--light-gray);
}

.about-craft-header { text-align: center; margin-bottom: 52px; }

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.craft-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-left: 4px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.craft-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.craft-card-icon { font-size: 2.4rem; margin-bottom: 16px; }

.craft-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}

.craft-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.72; }

.about-community {
  padding: 100px 24px;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-community::before {
  content: '🌪️';
  position: absolute;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(120px, 22vw, 280px);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}

.about-community h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.about-community h2 span { color: var(--yellow); }

.about-community p {
  color: rgba(255,255,255,0.72);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.about-community .btn { margin-top: 24px; position: relative; z-index: 1; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-main {
  padding: 90px 24px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 26px 24px;
  border-left: 4px solid var(--red);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.contact-card:hover { background: var(--white); box-shadow: var(--shadow); }

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card-content h3 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 8px;
}

.contact-card-content p,
.contact-card-content address { color: var(--dark); font-size: 0.93rem; line-height: 1.62; font-style: normal; }

.contact-card-content a:not(.btn) {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  transition: var(--transition);
  display: inline-block;
}

.contact-card-content a:not(.btn):hover { color: var(--red-dark); }

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}

.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ===========================
   ORDER PAGE
   =========================== */
.order-hero {
  background: var(--black);
  padding: 100px 24px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.order-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 35% 50%, rgba(200,16,46,0.38) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 40%, rgba(255,215,0,0.1) 0%, transparent 45%);
}

.order-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6rem);
  color: var(--white);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  line-height: 0.9;
}

.order-hero h1 span { color: var(--yellow); display: block; }

.order-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-top: 18px;
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.order-call {
  padding: 90px 24px;
  background: var(--red);
  text-align: center;
}

.order-call h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.order-call-sub { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 8px; }

.phone-number {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  color: var(--yellow);
  display: block;
  text-decoration: none;
  margin: 16px 0;
  letter-spacing: 0.04em;
  transition: var(--transition);
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
  line-height: 1;
}

.phone-number:hover { transform: scale(1.04); color: var(--white); }

.order-call-note { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-top: 8px; }

.delivery-section {
  padding: 90px 24px;
  background: var(--white);
  text-align: center;
}

.delivery-section-header { margin-bottom: 52px; }

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.delivery-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 40px 24px 28px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  display: block;
}

.delivery-card:hover {
  background: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.delivery-card-icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }

.delivery-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}

.delivery-card p {
  color: var(--gray);
  font-size: 0.83rem;
  margin-bottom: 22px;
  line-height: 1.5;
}

.delivery-note {
  font-size: 0.78rem;
  color: var(--gray);
  font-style: italic;
  text-align: center;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.order-menu-summary {
  padding: 90px 24px;
  background: var(--light-gray);
}

.order-menu-summary-header { text-align: center; margin-bottom: 48px; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 24px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }

.footer-brand-logo .nav-logo-icon { font-size: 1.8rem; }
.footer-brand-logo .nav-logo-text { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); }
.footer-brand-logo .nav-logo-text span { color: var(--yellow); }

.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 0.87rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer-hours-quick { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--yellow);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.87rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact-info { display: flex; flex-direction: column; gap: 12px; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  align-items: flex-start;
}

.footer-contact-item .fi { flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--yellow); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-text { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-tornado { font-size: 1.4rem; opacity: 0.4; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hours-location-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hero { padding: 70px 20px 60px; min-height: auto; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .hero-info { gap: 22px; }

  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: 1fr; }
  .craft-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .menu-addons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .map-wrapper { height: 300px; }
  .contact-card-content a { font-size: 1.2rem; }
}

/* ===========================
   HERO PHOTO BACKGROUND
   =========================== */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  /* hero-bg div overlays on top via DOM order */
}

/* ===========================
   PAGE HERO PHOTO BACKGROUND
   =========================== */
.page-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  z-index: 0;
  /* ::before overlay sits at z-index 1 above this */
}

/* ===========================
   VIDEO FEATURE
   =========================== */
.video-feature { background: var(--black); }

.video-wrapper {
  position: relative;
  width: 100%;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.video-wrapper video {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 90px 48px 38px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.video-caption .section-tag { display: block; margin-bottom: 12px; }

.video-caption h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.video-caption h2 span { color: var(--yellow); }

/* ===========================
   FEATURE CARDS WITH PHOTOS
   =========================== */
.feature-card.has-photo {
  padding: 0;
  overflow: hidden;
}

.feature-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.feature-card.has-photo:hover .feature-card-img { transform: scale(1.07); }

.feature-card-body {
  padding: 22px 22px 26px;
  text-align: center;
}

/* ===========================
   PHOTO GALLERY
   =========================== */
.photo-gallery {
  background: var(--black);
  line-height: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.gallery-item {
  overflow: hidden;
  height: 265px;
}

.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.08) saturate(1.12);
}

/* ===========================
   SIGNS STRIP
   =========================== */
.signs-strip {
  background: var(--dark);
  padding: 72px 24px;
}

.signs-header { text-align: center; margin-bottom: 40px; }

.signs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.sign-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

.sign-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.sign-item:hover img { transform: scale(1.05); }

/* ===========================
   ABOUT STORY VISUAL STACK
   =========================== */
.about-visual-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 0.5s ease;
}

.about-img:hover img { transform: scale(1.04); }

/* ===========================
   CRAFT CARDS WITH PHOTOS
   =========================== */
.craft-card.has-photo {
  padding: 0;
  overflow: hidden;
}

.craft-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.craft-card.has-photo:hover .craft-card-img { transform: scale(1.07); }

.craft-card-body { padding: 22px 22px 24px; }

/* ===========================
   CONTACT STOREFRONT BANNER
   =========================== */
.contact-storefront {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.contact-storefront img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.contact-storefront-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.contact-storefront-overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
}

.contact-storefront-overlay h3 span { color: var(--yellow); }

.contact-storefront-overlay p {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  font-style: italic;
  margin-top: 10px;
  letter-spacing: 0.05em;
}

/* ===========================
   FOOD PHOTO STRIP
   =========================== */
.food-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  background: var(--black);
  line-height: 0;
}

.food-strip img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.3s ease;
}

.food-strip img:hover {
  transform: scale(1.06);
  filter: brightness(1.1) saturate(1.12);
  position: relative;
  z-index: 1;
}

/* ===========================
   RESPONSIVE — PHOTO ADDITIONS
   =========================== */
@media (max-width: 900px) {
  .signs-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
  .food-strip { grid-template-columns: repeat(3, 1fr); }
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .gallery-item { height: 175px; }
  .signs-grid { grid-template-columns: repeat(2, 1fr); }
  .sign-item { aspect-ratio: 16/9; }
  .food-strip { grid-template-columns: repeat(2, 1fr); }
  .food-strip img { height: 150px; }
  .video-caption { padding: 50px 24px 24px; }
  .contact-storefront { height: 230px; }
  .contact-storefront-overlay h3 { font-size: 1.6rem; }
  .craft-grid { grid-template-columns: 1fr; }
}

/* ===========================
   LOGO IMAGE
   =========================== */
.nav-logo-img {
  height: 46px;
  width: auto;
  border-radius: 5px;
  display: block;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 14px;
  display: block;
}

.hero-logo {
  height: 80px;
  width: auto;
  border-radius: 8px;
  margin-bottom: 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  display: block;
}

/* ===========================
   COMING SOON (disabled links/buttons)
   =========================== */
.coming-soon {
  opacity: 0.5;
  text-decoration: line-through;
  cursor: not-allowed;
  pointer-events: none;
}

.coming-soon::after {
  content: " (Coming Soon)";
  text-decoration: none;
  font-size: 0.72em;
  opacity: 0.9;
  white-space: nowrap;
}
