/* ============================================================
   LA CHULA MEXICAN MARKET — style.css
   Brand: Green (#1a7a3c), Red (#d4380d), Yellow (#faad14), Black (#1a1a1a)
   Fonts: Alfa Slab One (display) · Oswald (headings) · Nunito (body)
   Theme: Bold Market / Signage / Street Food Energy
   ============================================================ */

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

:root {
  --green:    #1a7a3c;
  --green-d:  #145e2e;
  --green-l:  #e8f5ee;
  --red:      #d4380d;
  --red-d:    #aa2d0a;
  --red-l:    #fff0eb;
  --yellow:   #faad14;
  --yellow-l: #fffbe6;
  --black:    #1a1a1a;
  --dark:     #2d1a00;
  --warm:     #fef3e2;
  --sand:     #f5e6c8;
  --border:   #e8d5b0;
  --text:     #3d2200;
  --muted:    #7a5c3a;
  --white:    #ffffff;

  --font-display: 'Alfa Slab One', Georgia, serif;
  --font-head:    'Oswald', sans-serif;
  --font-body:    'Nunito', sans-serif;

  --radius:    6px;
  --radius-lg: 14px;
  --shadow:    0 4px 20px rgba(26,26,26,0.12);
  --shadow-lg: 0 10px 40px rgba(26,26,26,0.18);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
body.inner-page { padding-top: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── CONTAINER ─────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── SECTION TAG ───────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding-left: 10px;
  margin-bottom: 14px;
}
.section-tag.light-tag { color: var(--yellow); border-color: var(--yellow); }

/* ── SECTION HEADER ────────────────────────────────────── */
.section-header { margin-bottom: 48px; }
.section-header.center-header { text-align: center; }
.section-header.center-header .section-tag { border-left: none; border-bottom: 3px solid var(--red); padding-left: 0; padding-bottom: 6px; }

.section-header h2, h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-header p { font-size: 17px; color: var(--muted); }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(212,56,13,0.35);
}
.btn-primary:hover { background: var(--red-d); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,56,13,0.4); }
.btn-primary.btn-lg { font-size: 18px; padding: 16px 36px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--red); color: var(--white); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--dark);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* ── TOPBAR ────────────────────────────────────────────── */
.topbar {
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  z-index: 200;
}
.topbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.tb-item { color: rgba(255,255,255,0.92); }
.tb-item a { color: var(--yellow); font-weight: 700; }
.tb-sep { color: rgba(255,255,255,0.35); }

/* ── NAV ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 190;
  background: transparent;
  transition: top .3s, background .3s, box-shadow .3s;
}
.nav.scrolled,
body.inner-page .nav {
  top: 0;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.logo-icon-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--red);
  color: var(--white);
  font-size: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 1;
}

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

.logo-name-nav {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--dark);
  letter-spacing: 0.01em;
  line-height: 1;
}

.logo-tagline-nav {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-ctas { display: flex; gap: 10px; align-items: center; }

.btn-call {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.btn-call:hover { background: var(--green); color: var(--white); }

.btn-menu-nav {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: background .2s;
}
.btn-menu-nav:hover { background: var(--red-d); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span { display: block; width: 24px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: .25s; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--border);
  padding: 20px 32px;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-menu a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
}
.mobile-menu.open { display: flex; }
.btn-call-mobile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white) !important;
  font-size: 16px !important;
  padding: 12px 20px;
  border-radius: var(--radius);
  align-self: flex-start;
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45) saturate(0.9);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.75) 0%,
    rgba(26,122,60,0.25) 50%,
    rgba(26,26,26,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero-logo-wrap { animation: fadeUp .6s ease both; }
.hero-logo { height: 120px; width: auto; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5)); }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.05;
  color: var(--white);
  animation: fadeUp .6s ease .1s both;
  text-shadow: 0 3px 20px rgba(0,0,0,0.5);
}
.h1-line1 { display: block; }
.h1-line2 { display: block; color: var(--yellow); }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  animation: fadeUp .6s ease .2s both;
}

.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  animation: fadeUp .6s ease .3s both;
}
.hpill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .6s ease .4s both;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4);
  transition: background .2s;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 1.6s ease-in-out infinite;
}

/* ── ANNOUNCE STRIP ────────────────────────────────────── */
.announce-strip {
  overflow: hidden;
  background: var(--red);
  padding: 12px 0;
}
.announce-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.announce-track span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}
.announce-track em {
  color: rgba(255,255,255,0.45);
  font-style: normal;
  flex-shrink: 0;
}

/* ── ABOUT ─────────────────────────────────────────────── */
.about { padding: 100px 0; background: var(--warm); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--yellow);
  box-shadow: 10px 10px 0 var(--red), 14px 14px 0 var(--green);
}
.about-img-frame img { width: 100%; height: 340px; object-fit: cover; object-position: center 35%; }
.about-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  border: 3px solid var(--white);
}

.about-text h2 { margin-bottom: 16px; }
.about-lead {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  color: var(--red);
  margin-bottom: 16px;
}
.about-text p { font-size: 15px; color: var(--muted); margin-bottom: 14px; line-height: 1.75; }

.about-stats {
  display: flex;
  gap: 28px;
  margin: 28px 0;
  padding: 20px 24px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
}
.astat { text-align: center; flex: 1; }
.astat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.astat-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.about-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.aopt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-l);
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 100px;
  border: 2px solid var(--green);
}

/* ── MENU CATS ─────────────────────────────────────────── */
.menu-cats { padding: 100px 0; background: var(--black); }

.menu-cats-header {
  margin-bottom: 48px;
}
.menu-cats-header h2 { color: var(--white); }
.menu-cats-header p { color: rgba(255,255,255,0.55); }

.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.ccat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.ccat:hover { transform: translateY(-4px); }

.ccat-red    { background: rgba(212,56,13,0.12); border-color: rgba(212,56,13,0.3); }
.ccat-green  { background: rgba(26,122,60,0.12); border-color: rgba(26,122,60,0.3); }
.ccat-yellow { background: rgba(250,173,20,0.12); border-color: rgba(250,173,20,0.3); }

.ccat-red:hover    { border-color: var(--red); }
.ccat-green:hover  { border-color: var(--green); }
.ccat-yellow:hover { border-color: var(--yellow); }

.ccat-icon { font-size: 32px; }

.ccat-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.ccat-body p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55; }

.ccat-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--yellow);
  margin-top: auto;
}

.ccat-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 18px;
  color: rgba(255,255,255,0.2);
  transition: color .2s, transform .2s;
}
.ccat:hover .ccat-arrow { color: var(--yellow); transform: translateX(3px); }

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

/* ── POPULAR PICKS ─────────────────────────────────────── */
.popular { padding: 100px 0; background: var(--warm); }

.pop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.pop-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.pop-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow); }

.pop-card.pop-featured {
  border-color: var(--yellow);
  background: var(--yellow-l);
}
.pop-ribbon {
  position: absolute;
  top: -1px;
  left: 20px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.pop-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.pop-emoji { font-size: 36px; }
.pop-price-tag {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--red);
}

.pop-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.pop-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

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

/* ── TRUCK PROMO ───────────────────────────────────────── */
.truck-promo {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.truck-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.truck-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.35) saturate(0.8);
}
.truck-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.5) 60%, transparent 100%);
}
.truck-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.truck-content h2 { color: var(--white); margin-bottom: 16px; }
.truck-content p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 24px; max-width: 480px; line-height: 1.75; }

.truck-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.truck-list li {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── HOURS & LOCATION ──────────────────────────────────── */
.hours-location { padding: 100px 0; background: var(--sand); }

.hl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hl-info h2 { margin-bottom: 28px; }
.hl-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.hl-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hl-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hl-item strong { display: block; font-weight: 700; font-size: 14px; color: var(--dark); margin-bottom: 2px; }
.hl-item span { font-size: 14px; color: var(--muted); line-height: 1.6; }
.hl-item a:hover { color: var(--red); }

.hl-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hl-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--yellow);
  box-shadow: 8px 8px 0 var(--red);
}
.map-svg { width: 100%; display: block; }
.map-link-btn {
  display: block;
  text-align: center;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px;
  transition: background .2s;
}
.map-link-btn:hover { background: var(--red); }

/* ── CONTACT ───────────────────────────────────────────── */
.contact-section { padding: 100px 0; background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-text h2 { margin-bottom: 16px; }
.contact-text > p { font-size: 16px; color: var(--muted); margin-bottom: 32px; }

.contact-ways { display: flex; flex-direction: column; gap: 16px; }
.cway {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--warm);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.cway:hover { border-color: var(--green); }
.cway.cway-primary {
  background: var(--green-l);
  border-color: var(--green);
  cursor: pointer;
}
.cway-icon { font-size: 26px; flex-shrink: 0; }
.cway strong { display: block; font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 2px; }
.cway span { font-size: 14px; color: var(--muted); }

.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.big-cta-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: var(--red);
  color: var(--white);
  transition: background .2s, transform .2s;
  border: 2px solid transparent;
}
.big-cta-btn:hover { background: var(--red-d); transform: translateX(4px); }
.big-cta-btn.secondary { background: var(--white); color: var(--dark); border-color: var(--border); }
.big-cta-btn.secondary:hover { background: var(--warm); border-color: var(--red); transform: translateX(4px); }
.big-cta-icon { font-size: 28px; flex-shrink: 0; }
.big-cta-btn strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 16px; letter-spacing: .04em; text-transform: uppercase; }
.big-cta-btn span { font-size: 13px; opacity: 0.75; }

/* ── FOOTER ────────────────────────────────────────────── */
.footer { background: var(--black); padding: 0; }
.footer-top-stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--green) 0%, var(--red) 50%, var(--yellow) 100%);
}
.footer > .container { padding: 60px 32px 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-img { height: 60px; width: auto; margin-bottom: 16px; filter: brightness(1.1); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 16px; }
.footer-phone { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 16px; letter-spacing: .05em; color: var(--yellow); transition: color .2s; }
.footer-phone:hover { color: var(--white); }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--yellow); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-col span { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.6; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-rating { color: rgba(255,255,255,0.45); }

/* ── SCROLL REVEAL ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .pop-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .hl-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .burger { display: flex; }
  .topbar-inner { justify-content: flex-start; gap: 8px; font-size: 11px; }
  .tb-sep { display: none; }
  .hero-content { padding-top: 140px; align-items: center; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-pills { justify-content: center; }
  .cats-grid { grid-template-columns: 1fr 1fr; }
  .pop-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .cats-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
}
