/* ================================================================
   KOTA CO. — DESIGN SYSTEM
   Brand: Kota Co. | Tagline: Respect the Kota.
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS Custom Properties
   ---------------------------------------------------------------- */
:root {
  --red:        #D22630;
  --red-dark:   #aa1e27;
  --yellow:     #FFCD00;
  --yellow-dark:#e6b800;
  --green:      #00B140;
  --black:      #111111;
  --charcoal:   #1A1A1A;
  --off-white:  #F7F3EA;
  --gray-100:   #f5f5f5;
  --gray-200:   #e8e8e8;
  --gray-400:   #aaaaaa;
  --gray-600:   #666666;
  --gray-800:   #333333;
  --white:      #ffffff;

  --font-heading: 'Bebas Neue', Impact, 'Arial Black', sans-serif;
  --font-label:   'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body:    'Open Sans', 'Segoe UI', Arial, sans-serif;
  --font-accent:  'Pacifico', cursive;

  --container: 1200px;
  --radius:    4px;
  --transition: 0.25s ease;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ----------------------------------------------------------------
   3. Layout
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 100px 0; }

.section--red     { background: var(--red); color: var(--white); }
.section--black   { background: var(--black); color: var(--white); }
.section--charcoal{ background: var(--charcoal); color: var(--white); }
.section--yellow  { background: var(--yellow); color: var(--black); }
.section--offwhite{ background: var(--off-white); }

.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6  { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }

/* ----------------------------------------------------------------
   4. Typography
   ---------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: 1px;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.4rem; }

.label-text {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
}

.accent-text {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--yellow);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  max-width: 640px;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-white  { color: var(--white); }
.text-yellow { color: var(--yellow); }
.text-red    { color: var(--red); }

/* ----------------------------------------------------------------
   5. Buttons
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-1px);
}

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

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ----------------------------------------------------------------
   6. Navigation
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--black);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}

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

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

.nav-links a {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius);
}
.nav-cta:hover {
  background: var(--red-dark);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 2px solid var(--red);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 8px; width: 100%; font-size: 0.9rem; }
}

/* ----------------------------------------------------------------
   7. Hero Slider
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 70px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.8) 0%, rgba(17,17,17,0.3) 100%);
}

.hero-slide--1 {
  background: linear-gradient(135deg, var(--red) 0%, #8b0000 40%, var(--black) 100%);
}
.hero-slide--2 {
  background: linear-gradient(135deg, var(--black) 0%, #2d1010 50%, var(--red) 100%);
}
.hero-slide--3 {
  background: linear-gradient(135deg, #1a1a00 0%, var(--black) 60%, #3a2000 100%);
}

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

.hero-content .accent-text {
  font-size: 1.2rem;
  margin-bottom: 8px;
  display: block;
}

.hero-content h1 {
  color: var(--white);
  text-shadow: 2px 4px 8px rgba(0,0,0,0.4);
  margin-bottom: 16px;
}

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

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  max-width: 560px;
  margin-bottom: 8px;
}

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.slider-dot.active { background: var(--yellow); transform: scale(1.3); }

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.slider-arrow {
  pointer-events: all;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ----------------------------------------------------------------
   8. Promo Cards
   ---------------------------------------------------------------- */
.promo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promo-card {
  background: var(--charcoal);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}
.promo-card:hover { transform: translateY(-4px); }

.promo-card__image {
  height: 220px;
  background: linear-gradient(135deg, var(--red) 0%, var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
}
.promo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 2px;
}

.promo-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.promo-card__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}

.promo-card__teaser {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.promo-card__link {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.promo-card__link:hover { gap: 10px; }

/* ----------------------------------------------------------------
   9. Menu Category Tiles
   ---------------------------------------------------------------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.category-tile {
  position: relative;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: transform var(--transition);
  background: var(--charcoal);
}
.category-tile:hover { transform: scale(1.02); }

.category-tile__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.category-tile:hover .category-tile__bg { transform: scale(1.06); }

.category-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
}

.category-tile__label {
  position: relative;
  z-index: 2;
  padding: 20px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 1px;
}

.category-tile__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Branded placeholder gradients per category */
.cat-bg--1  { background: linear-gradient(135deg, var(--red) 0%, #6b0000 100%); }
.cat-bg--2  { background: linear-gradient(135deg, #8b0000 0%, var(--black) 100%); }
.cat-bg--3  { background: linear-gradient(135deg, var(--charcoal) 0%, var(--red) 100%); }
.cat-bg--4  { background: linear-gradient(135deg, #1a3300 0%, var(--green) 60%, var(--black) 100%); }
.cat-bg--5  { background: linear-gradient(135deg, #333300 0%, var(--black) 100%); }
.cat-bg--6  { background: linear-gradient(135deg, var(--red) 0%, var(--charcoal) 100%); }
.cat-bg--7  { background: linear-gradient(135deg, #2a1a00 0%, #8b4500 100%); }
.cat-bg--8  { background: linear-gradient(135deg, var(--charcoal) 0%, #4a3000 100%); }
.cat-bg--9  { background: linear-gradient(135deg, #1a0000 0%, var(--red) 100%); }
.cat-bg--10 { background: linear-gradient(135deg, var(--black) 0%, #003366 100%); }
.cat-bg--11 { background: linear-gradient(135deg, #2b1b00 0%, var(--yellow-dark) 100%); }
.cat-bg--12 { background: linear-gradient(135deg, var(--charcoal) 0%, var(--green) 100%); }

/* ----------------------------------------------------------------
   10. Menu Item Cards
   ---------------------------------------------------------------- */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-item-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.menu-item-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); }

.menu-item-card__image {
  height: 200px;
  background: var(--gray-100);
  overflow: hidden;
  position: relative;
}
.menu-item-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red) 0%, var(--charcoal) 100%);
  color: rgba(255,255,255,0.4);
  font-family: var(--font-heading);
  font-size: 3rem;
}

.menu-item-card__body { padding: 20px; }

.menu-item-card__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--black);
}

.menu-item-card__desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.menu-item-card__note {
  margin-top: 10px;
  font-family: var(--font-label);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
}

.menu-item-card__featured {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 2px;
}

/* ----------------------------------------------------------------
   11. Story Section
   ---------------------------------------------------------------- */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-block__text .section-subtitle { margin-bottom: 24px; }

.story-block__visual {
  position: relative;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--red) 0%, var(--charcoal) 60%, var(--black) 100%);
}

.story-block__visual-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--yellow);
}

/* ----------------------------------------------------------------
   12. Vision/Mission Strip
   ---------------------------------------------------------------- */
.vm-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.vm-block {
  padding: 60px;
}

.vm-block--red   { background: var(--red); color: var(--white); }
.vm-block--black { background: var(--black); color: var(--white); }

.vm-block__label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.7;
  margin-bottom: 16px;
}

.vm-block__text {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.2;
}

/* ----------------------------------------------------------------
   13. Franchise Formats
   ---------------------------------------------------------------- */
.franchise-card {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 36px 28px;
  color: var(--white);
  text-align: center;
  border-top: 4px solid var(--red);
  transition: border-color var(--transition);
}
.franchise-card:hover { border-color: var(--yellow); }

.franchise-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.franchise-card__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.franchise-card__price {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
  margin-bottom: 16px;
}

.franchise-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   14. Store Cards
   ---------------------------------------------------------------- */
.store-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
  border-left: 4px solid var(--red);
}
.store-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }

.store-card__body { padding: 24px; }

.store-card__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--black);
}

.store-card__address,
.store-card__hours,
.store-card__phone {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.store-card__icon {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.store-card__actions {
  padding: 16px 24px 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   15. FAQ Accordion
   ---------------------------------------------------------------- */
.faq-section { margin-bottom: 48px; }

.faq-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--black);
  padding-bottom: 12px;
  border-bottom: 3px solid var(--red);
  display: inline-block;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-label);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  gap: 16px;
}

.faq-question:hover { color: var(--red); }

.faq-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform var(--transition);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 800px;
}

/* ----------------------------------------------------------------
   16. Forms (Public)
   ---------------------------------------------------------------- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--gray-800);
}

.form-label.required::after {
  content: ' *';
  color: var(--red);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--red);
}
.form-control::placeholder { color: var(--gray-400); }

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

/* Flash messages */
.flash {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.flash--success { background: #e6f7ed; color: #1a7a3a; border-left: 4px solid var(--green); }
.flash--error   { background: #fce8e8; color: #a31515; border-left: 4px solid var(--red); }
.flash--info    { background: #e8f0fe; color: #1a4896; border-left: 4px solid #4a90e2; }

/* ----------------------------------------------------------------
   17. Footer
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--yellow);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social-link:hover {
  background: var(--red);
  color: var(--white);
}

.footer-col-title {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--yellow); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item svg,
.footer-contact-item .icon { color: var(--red); flex-shrink: 0; margin-top: 2px; }

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

.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--yellow); }

/* ----------------------------------------------------------------
   18. Page Hero (interior pages)
   ---------------------------------------------------------------- */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 60px;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(210,38,48,0.3) 0%, transparent 70%);
}

.page-hero__content { position: relative; z-index: 1; }

.page-hero__eyebrow {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--yellow);
  margin-bottom: 12px;
  display: block;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   19. Breadcrumb
   ---------------------------------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.5);
}

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

/* ----------------------------------------------------------------
   20. Map embed
   ---------------------------------------------------------------- */
.map-embed {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius);
  display: block;
}

/* ----------------------------------------------------------------
   21. Hours table
   ---------------------------------------------------------------- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
}
.hours-table td:first-child { font-weight: 600; color: var(--black); }
.hours-table td:last-child { text-align: right; color: var(--gray-600); }
.hours-table tr.today td { color: var(--red); }
.hours-table tr.closed td:last-child { color: var(--gray-400); }

/* ----------------------------------------------------------------
   22. CTA Strip
   ---------------------------------------------------------------- */
.cta-strip {
  background: var(--red);
  padding: 64px 0;
  text-align: center;
}
.cta-strip h2 {
  color: var(--white);
  margin-bottom: 8px;
}
.cta-strip p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ----------------------------------------------------------------
   23. Stat blocks
   ---------------------------------------------------------------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-block {
  padding: 48px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-block:last-child { border-right: none; }
.stat-block__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-block__label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.7;
}

/* ----------------------------------------------------------------
   24. Responsive
   ---------------------------------------------------------------- */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .section  { padding: 60px 0; }
  .grid-2   { grid-template-columns: 1fr; }
  .grid-3   { grid-template-columns: 1fr 1fr; }
  .grid-4   { grid-template-columns: 1fr 1fr; }
  .grid-6   { grid-template-columns: repeat(3, 1fr); }
  .promo-cards     { grid-template-columns: 1fr; }
  .category-grid   { grid-template-columns: repeat(2, 1fr); }
  .menu-items-grid { grid-template-columns: 1fr 1fr; }
  .story-block     { grid-template-columns: 1fr; gap: 40px; }
  .story-block__visual { height: 300px; }
  .vm-strip        { grid-template-columns: 1fr; }
  .vm-block        { padding: 48px 40px; }
  .stats-row       { grid-template-columns: 1fr 1fr; }
  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --container: 100%; }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .grid-3, .grid-4, .grid-6  { grid-template-columns: 1fr; }
  .category-grid   { grid-template-columns: 1fr 1fr; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .hero { height: 85vh; min-height: 500px; }
  .hero-content h1 { font-size: 3rem; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 32px 24px; }
}

/* ----------------------------------------------------------------
   25. Utility
   ---------------------------------------------------------------- */
.d-flex   { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-16 { gap: 16px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.w-100 { width: 100%; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* No-image placeholder pattern */
.img-placeholder {
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 8px
  );
}
