/* Lone Star Pest Defense — V2 Demo
   Mobile-first | Red+Charcoal palette | Inter/Manrope typography */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Manrope:wght@400;600;700;800&display=swap');

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

:root {
  --red:        #C8202C;
  --red-dark:   #a01824;
  --charcoal:   #1A1A1A;
  --white:      #FFFFFF;
  --gray-bg:    #F5F5F5;
  --gold:       #E5A823;
  --text:       #2B2B2B;
  --text-muted: #666666;
  --border:     #E0E0E0;
  --font:       'Inter', 'Manrope', system-ui, sans-serif;
  --radius:     6px;
  --shadow:     0 2px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
  --transition: 0.18s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Typography ─────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 6vw, 3.75rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; }
p  { font-size: 1rem; line-height: 1.7; }

/* ─── Layout Utilities ───────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 4rem 0; }
.section--gray { background: var(--gray-bg); }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--red  { background: var(--red); color: var(--white); }
.section-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.section--dark .section-label, .section--red .section-label { color: var(--gold); }
.section-title { margin-bottom: 0.75rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; }
.section--dark .section-subtitle { color: rgba(255,255,255,0.65); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem; font-weight: 700;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(200,32,44,0.35);
}
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 6px 20px rgba(200,32,44,0.45); }

.btn-phone {
  background: var(--charcoal);
  color: var(--white);
}
.btn-phone:hover { background: #2e2e2e; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--charcoal);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.35); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1rem;
}

.site-logo {
  display: flex; align-items: center; gap: 0.6rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.logo-text {
  font-size: 1rem; font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}
.logo-text span { color: var(--gold); }

.header-nav { display: none; }
.header-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem; font-weight: 600;
  padding: 0.25rem 0.5rem;
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--white); }

.header-phone {
  display: none;
  align-items: center; gap: 0.5rem;
  color: var(--white);
  font-weight: 700; font-size: 1.05rem;
  background: var(--red);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.header-phone:hover { background: var(--red-dark); }
.header-phone svg { flex-shrink: 0; }

.menu-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 4px;
  color: var(--white);
}
.menu-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #111;
  padding: 1rem 1.25rem 1.5rem;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 600; font-size: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }

@media (min-width: 768px) {
  .header-nav { display: flex; align-items: center; gap: 0.25rem; }
  .header-phone { display: flex; }
  .menu-toggle { display: none; }
}

/* Page offset for fixed header */
.page-top { padding-top: 68px; }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1600&q=80');
  /* PLACEHOLDER — replace with real technician/truck photo on customer build */
  background-size: cover;
  background-position: center right;
  opacity: 0.22;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(26,26,26,0.97) 0%, rgba(26,26,26,0.82) 55%, rgba(26,26,26,0.45) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 5rem 0 4rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(200,32,44,0.18);
  border: 1px solid rgba(200,32,44,0.4);
  color: #ff6b75;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--red); }
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.875rem;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-stat-value { font-size: 1.6rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── Trust Strip ────────────────────────────────────────────── */
.trust-strip {
  background: var(--red);
  padding: 1.1rem 0;
}
.trust-strip-inner {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 1rem 2rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--white);
  font-weight: 600; font-size: 0.9rem;
  white-space: nowrap;
}
.trust-item svg { flex-shrink: 0; opacity: 0.9; }
.trust-sep { color: rgba(255,255,255,0.4); display: none; }
@media (min-width: 640px) { .trust-sep { display: block; } }

/* ─── Service Grid ───────────────────────────────────────────── */
.services-intro { text-align: center; margin-bottom: 3rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.85rem;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  cursor: default;
}
.service-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(200,32,44,0.25);
  transform: translateY(-2px);
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(200,32,44,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-card h3 { font-size: 1.05rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); flex: 1; }
.service-card .learn-more {
  font-size: 0.85rem; font-weight: 700; color: var(--red);
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: auto;
}
.service-card .learn-more:hover { text-decoration: underline; }

@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.05em; }
.testimonial-body { font-size: 0.97rem; line-height: 1.7; font-style: italic; color: var(--text); }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-city { font-size: 0.82rem; color: var(--text-muted); }

@media (min-width: 720px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── Service Area Map ───────────────────────────────────────── */
.map-section { background: var(--gray-bg); }
.map-wrapper {
  display: grid; gap: 2rem; align-items: center;
  grid-template-columns: 1fr;
}
.map-embed {
  border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  background: #c8c8c8;
}
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }
.map-areas h2 { margin-bottom: 1rem; }
.map-areas p { color: var(--text-muted); margin-bottom: 1.25rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text);
}

@media (min-width: 900px) { .map-wrapper { grid-template-columns: 1fr 1fr; } }

/* ─── Final CTA Band ─────────────────────────────────────────── */
.cta-band {
  background: var(--red);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.1rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: var(--gray-bg); }

/* ─── Quote Form ─────────────────────────────────────────────── */
.quote-form-section { background: var(--gray-bg); }
.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  max-width: 680px;
  margin: 0 auto;
}
.form-card h2 { margin-bottom: 0.5rem; }
.form-card > p { color: var(--text-muted); margin-bottom: 1.75rem; }
.form-grid { display: grid; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.88rem; font-weight: 700; color: var(--charcoal); }
.form-group input, .form-group select {
  height: 48px;
  padding: 0 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.5rem; }
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,32,44,0.12);
}
.form-group .error-msg { font-size: 0.8rem; color: var(--red); display: none; }
.form-group.has-error input,
.form-group.has-error select { border-color: var(--red); }
.form-group.has-error .error-msg { display: block; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.75rem; text-align: center; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success svg { margin: 0 auto 1rem; }
.form-success h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--text-muted); }

@media (min-width: 560px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-submit { grid-column: 1 / -1; } }

/* ─── Mobile Sticky Quote Bar ────────────────────────────────── */
.mobile-cta-bar {
  display: flex;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--charcoal);
  border-top: 2px solid rgba(255,255,255,0.1);
  padding: 0.6rem 1rem;
  gap: 0.6rem;
  align-items: center;
}
.mobile-cta-bar a { flex: 1; padding: 0.75rem; font-size: 0.9rem; justify-content: center; border-radius: var(--radius); }
@media (min-width: 768px) { .mobile-cta-bar { display: none; } }
.page-bottom-pad { padding-bottom: 72px; }
@media (min-width: 768px) { .page-bottom-pad { padding-bottom: 0; } }

/* ─── Services Page ──────────────────────────────────────────── */
.page-hero {
  background: var(--charcoal);
  padding: 5rem 0 3.5rem;
  color: var(--white);
}
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { font-size: clamp(1.75rem, 5vw, 3rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }

.pest-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.pest-section:last-child { border-bottom: none; }
.pest-section:nth-child(even) { background: var(--gray-bg); }
.pest-inner { display: grid; gap: 2.5rem; align-items: center; }
.pest-icon-lg {
  width: 80px; height: 80px;
  background: rgba(200,32,44,0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.pest-meta h2 { margin-bottom: 1rem; }
.pest-bullets { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.25rem 0; }
.pest-bullet {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.97rem;
}
.pest-bullet-icon {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.7rem; font-weight: 800;
}
@media (min-width: 860px) { .pest-inner { grid-template-columns: 340px 1fr; } }

/* ─── About Page ─────────────────────────────────────────────── */
.story-grid { display: grid; gap: 2.5rem; align-items: center; }
.story-img {
  border-radius: 12px; overflow: hidden;
  background: #c8c8c8;
  aspect-ratio: 4/3;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-text h2 { margin-bottom: 1rem; }
.story-text p { color: var(--text-muted); margin-bottom: 1rem; }
.cert-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.cert-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem; font-weight: 700;
  color: var(--charcoal);
}
.cert-badge svg { color: var(--gold); }

@media (min-width: 860px) { .story-grid { grid-template-columns: 1fr 1fr; } }

.values-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
.value-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.value-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.value-card p { font-size: 0.9rem; color: var(--text-muted); }
.value-icon { font-size: 1.5rem; margin-bottom: 0.6rem; line-height: 1; color: var(--red); }
@media (min-width: 600px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── Contact Page ───────────────────────────────────────────── */
.contact-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 0.85rem;
}
.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(200,32,44,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.contact-detail-text { display: flex; flex-direction: column; gap: 0.1rem; }
.contact-detail-label { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-detail-value { font-size: 1rem; font-weight: 600; }
.contact-hours { margin-top: 1.5rem; }
.contact-hours h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }

@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

/* ─── Gallery ────────────────────────────────────────────────── */
.gallery-filter {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.88rem; font-weight: 700;
  border: 2px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(200,32,44,0.06);
}
.gallery-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
.gallery-item {
  border-radius: 10px; overflow: hidden;
  background: #c8c8c8;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85), transparent);
  padding: 1.5rem 0.85rem 0.7rem;
  color: var(--white);
  font-size: 0.82rem; font-weight: 600;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

@media (min-width: 600px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

/* ─── 404 ────────────────────────────────────────────────────── */
.not-found {
  min-height: calc(100vh - 68px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--gray-bg);
}
.not-found-inner { max-width: 480px; padding: 3rem 1.25rem; }
.not-found h1 { font-size: 6rem; color: var(--red); line-height: 1; margin-bottom: 0.25rem; }
.not-found h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.not-found p { color: var(--text-muted); margin-bottom: 2rem; }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #0f0f0f;
  color: rgba(255,255,255,0.6);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
.footer-brand p { font-size: 0.9rem; margin-top: 0.75rem; line-height: 1.6; max-width: 280px; }
.footer-links h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links ul a { font-size: 0.9rem; transition: color var(--transition); }
.footer-links ul a:hover { color: var(--white); }
.footer-contact p { font-size: 0.9rem; line-height: 1.7; }
.footer-contact a { color: rgba(255,255,255,0.8); font-weight: 600; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: space-between; align-items: center;
  font-size: 0.82rem;
}
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--white); }

@media (min-width: 600px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.55s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
