/* ============================================================
   KRISHNAWE TEERTH YATRA EXPRESS — MAIN STYLESHEET v1.1
   Palette: Saffron #E8640A | Gold #F4A620 | Crimson #8B1A1A | Cream #FEF6E4
   Fonts: Noto Serif Devanagari (display) + Noto Sans Devanagari (body)
============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --saffron:       #E8640A;
  --saffron-light: #F4862A;
  --gold:          #F4A620;
  --gold-light:    #FAD27A;
  --crimson:       #8B1A1A;
  --crimson-dark:  #5C0F0F;
  --cream:         #FEF6E4;
  --cream-dark:    #F5E8CC;
  --ink:           #1C1A18;
  --stone:         #7A7060;
  --stone-light:   #B8AA94;
  --white:         #FFFFFF;

  --font-display: 'Noto Serif Devanagari', serif;
  --font-body:    'Noto Sans Devanagari', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 4px 24px rgba(28,26,24,.10);
  --shadow-btn:  0 2px 12px rgba(232,100,10,.30);

  --max-w:      1200px;
  --section-py: 72px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--crimson-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── UTILITIES ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: var(--section-py) 0; }
.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }
.section--dark   { background: var(--crimson-dark); color: var(--cream); }
.section--gold   { background: var(--gold-light); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { color: var(--stone); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* Tilak divider */
.tilak-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px auto 24px;
  width: fit-content;
}
.tilak-divider::before,
.tilak-divider::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--saffron));
}
.tilak-divider::after { background: linear-gradient(90deg, var(--saffron), transparent); }
.tilak-divider span {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--saffron);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--gold-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .22s ease;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,100,10,.40); }
.btn-outline {
  background: transparent;
  color: var(--saffron);
  border: 2px solid var(--saffron);
}
.btn-outline:hover { background: var(--saffron); color: var(--white); }
.btn-crimson { background: var(--crimson); color: var(--white); }
.btn-crimson:hover { background: var(--crimson-dark); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--ink);
}
.btn-gold:hover { transform: translateY(-2px); }

/* Badge */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--gold-light);
  color: var(--crimson-dark);
}
.badge-saffron { background: var(--saffron); color: var(--white); }

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(28,26,24,.13); }
.card-body { padding: 24px; }
.card-img { width: 100%; height: 200px; object-fit: cover; }

/* Grid */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── TICKER BAR ─────────────────────────────────────────── */
.ticker-bar {
  background: var(--crimson-dark);
  color: var(--gold-light);
  padding: 9px 0;
  overflow: hidden;
  position: relative;
}
.ticker-inner {
  display: flex;
  gap: 60px;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
  padding-left: 40px;
}
.ticker-inner span { font-size: .88rem; font-weight: 500; }
.ticker-inner .dot { color: var(--saffron); font-size: 1.2rem; line-height: 1; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(28,26,24,.08);
}
.header-top {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--crimson) 100%);
  padding: 8px 0;
}
.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-contact { display: flex; align-items: center; gap: 20px; }
.header-contact a {
  color: var(--white);
  font-size: .88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: .92;
}
.header-contact a:hover { opacity: 1; }
.header-franchise-btn {
  background: var(--gold) !important;
  color: var(--crimson-dark) !important;
  font-weight: 700 !important;
  padding: 5px 16px;
  border-radius: var(--radius-sm);
  font-size: .85rem !important;
}
.header-franchise-btn:hover { background: var(--gold-light) !important; }

.header-main { padding: 14px 0; }
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo .logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--saffron), var(--crimson));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.site-logo .logo-text { line-height: 1.2; }
.site-logo .logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--crimson-dark);
}
.site-logo .logo-text span { font-size: .76rem; color: var(--stone); font-weight: 500; }

/* Navigation */
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  transition: all .18s;
}
.main-nav a:hover,
.main-nav .current-menu-item > a { background: var(--cream-dark); color: var(--saffron); }
.main-nav .nav-franchise a { background: var(--saffron); color: var(--white); font-weight: 700; }
.main-nav .nav-franchise a:hover { background: var(--crimson); color: var(--white); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .22s;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 40%, var(--saffron) 100%);
  overflow: hidden;
  padding: 80px 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.hero-content { position: relative; z-index: 1; color: var(--white); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gold-light);
}
.hero h1 { color: var(--white); margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,.2); }
.hero .hero-sub { font-size: 1.1rem; opacity: .88; max-width: 580px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--gold-light);
}
.hero-stat span { font-size: .88rem; opacity: .8; }
.hero-image { position: relative; }
.hero-image img { border-radius: var(--radius-lg); box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.hero-image .hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--gold);
  color: var(--crimson-dark);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--crimson-dark), var(--crimson));
  padding: 56px 0;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-hero p  { color: var(--gold-light); font-size: 1.05rem; margin-top: 10px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb .sep { opacity: .5; }

/* ── MISSION VISION ─────────────────────────────────────── */
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border-top: 4px solid var(--saffron);
  box-shadow: var(--shadow-card);
}
.mv-card.vision-card { border-top-color: var(--crimson); }
.mv-card .mv-icon { font-size: 2.4rem; margin-bottom: 16px; }
.mv-card h3 { margin-bottom: 12px; }

/* ── FRANCHISE STRIP ────────────────────────────────────── */
.franchise-strip {
  background: linear-gradient(135deg, var(--crimson-dark), var(--crimson) 60%, var(--saffron));
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.franchise-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.franchise-strip h2 { color: var(--white); margin-bottom: 8px; font-size: 1.9rem; }
.franchise-strip p  { color: var(--gold-light); margin: 0; }

/* ── YATRA CARDS ────────────────────────────────────────── */
.yatra-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .22s, box-shadow .22s;
}
.yatra-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(28,26,24,.14); }
.yatra-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--saffron-light), var(--crimson));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.yatra-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.yatra-card-img .days-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--crimson-dark);
  color: var(--gold-light);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  z-index: 2;
}
.yatra-card-body { padding: 20px; }
.yatra-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--crimson-dark); }
.yatra-card-body p  { font-size: .9rem; color: var(--stone); margin-bottom: 16px; line-height: 1.6; }
.yatra-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.link-more { font-size: .9rem; font-weight: 600; color: var(--saffron); display: flex; align-items: center; gap: 4px; }

/* ── FEATURES GRID ──────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border-bottom: 3px solid transparent;
  transition: border-color .2s, transform .2s;
}
.feature-item:hover { border-bottom-color: var(--saffron); transform: translateY(-3px); }
.feature-item .icon { font-size: 2.4rem; margin-bottom: 12px; }
.feature-item h4 { margin-bottom: 8px; font-size: 1rem; }
.feature-item p { font-size: .88rem; color: var(--stone); margin: 0; }

/* ── BENEFIT ITEMS ──────────────────────────────────────── */
.benefit-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
  align-items: flex-start;
}
.benefit-item .benefit-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-item h4 { margin-bottom: 4px; font-size: 1rem; }
.benefit-item p  { font-size: .9rem; color: var(--stone); margin: 0; }

/* ── CHECKLIST ──────────────────────────────────────────── */
.checklist { padding: 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: .95rem;
  border-bottom: 1px solid var(--cream-dark);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: '✔'; color: var(--saffron); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── DETAIL ROWS ────────────────────────────────────────── */
.detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.detail-row:last-child { border-bottom: none; }
.detail-row.reverse { direction: rtl; }
.detail-row.reverse > * { direction: ltr; }
.detail-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.detail-image-placeholder {
  height: 280px;
  background: linear-gradient(135deg, rgba(232,100,10,.1), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-radius: var(--radius-lg);
}
.detail-content h3 { margin-bottom: 16px; font-size: 1.4rem; }
.download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--saffron);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--saffron);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.download-link:hover { background: var(--saffron); color: var(--white); }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--crimson-dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
}
.contact-info-card h3 { color: var(--gold-light); margin-bottom: 24px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item .contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; color: var(--gold-light); font-size: .85rem; margin-bottom: 2px; }
.contact-item a { color: var(--white); font-size: 1rem; }
.contact-item a:hover { color: var(--gold-light); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.contact-form-wrap h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--saffron); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── LEGAL PAGE ─────────────────────────────────────────── */
.legal-container { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.legal-sidebar {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.legal-sidebar h4 { margin-bottom: 16px; font-size: .95rem; color: var(--stone); text-transform: uppercase; letter-spacing: .05em; }
.legal-sidebar ul li a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--stone);
  font-weight: 500;
  transition: all .18s;
}
.legal-sidebar ul li a:hover,
.legal-sidebar ul li a.active { background: var(--cream-dark); color: var(--saffron); }
.legal-content section { margin-bottom: 48px; scroll-margin-top: 120px; }
.legal-content h2 { font-size: 1.4rem; padding-bottom: 12px; border-bottom: 2px solid var(--saffron); margin-bottom: 20px; }
.legal-content p, .legal-content li { font-size: .95rem; color: #333; line-height: 1.8; }
.legal-content ul { list-style: disc; padding-left: 20px; margin-bottom: 1rem; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: var(--stone-light); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--stone-light);
  font-size: .9rem;
  transition: color .18s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .88rem;
}
.footer-contact-item .icon { flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--stone-light); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-service-tag {
  background: rgba(244,166,32,.12);
  border: 1px solid rgba(244,166,32,.25);
  color: var(--gold-light);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .78rem;
}
.footer-services { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background .2s;
}
.social-link:hover { background: var(--saffron); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .84rem;
}
.footer-bottom a { color: var(--stone-light); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-about p { font-size: .9rem; line-height: 1.7; margin-top: 16px; }
.footer-about .logo-text strong { color: var(--gold-light); }
.footer-about .logo-text span   { color: var(--stone-light); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .22s, box-shadow .22s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .legal-container { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
}
@media (max-width: 768px) {
  :root { --section-py: 48px; }
  .grid-2, .grid-3, .mission-vision, .contact-grid, .detail-row { grid-template-columns: 1fr; }
  .detail-row.reverse { direction: ltr; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .main-nav.open ul { flex-direction: column; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .franchise-strip .container { flex-direction: column; text-align: center; }
  .header-contact .phone-link { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-inner { animation: none; }
  * { transition: none !important; }
}
