/* ============================================================
   ACE UNLOCKS — Homepage Styles
   Hero canvas, scroll sections, marquee, stats, etc.
   ============================================================ */

/* ── Hero ────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 200vh;
  background: var(--bg-dark);
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}
#hero-canvas {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  position: absolute;
  inset: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  /* JS controls opacity/transform */
  pointer-events: none;
}
.hero-overlay.visible { pointer-events: all; }
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(255,214,10,0.5);
}
.hero-headline {
  font-size: clamp(3.6rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.7);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 20px rgba(0,0,0,0.6);
  margin-bottom: 42px;
  line-height: 1.4;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 52px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(214,40,40,0.50);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  cursor: pointer;
}
.hero-cta:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 50px rgba(214,40,40,0.60);
  background: var(--red-dark);
}
.hero-cta svg { width: 22px; height: 22px; fill: currentColor; }
.hero-microcopy {
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── Scroll indicator ────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.scroll-indicator svg {
  width: 14px;
  height: 14px;
  fill: rgba(255,255,255,0.6);
  animation: scrollArrow 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}
@keyframes scrollArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ── Post-hero page flow ─────────────────────────────────── */
.page-content { background: var(--bg); position: relative; z-index: 2; }

/* ── Marquee strip ───────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  background: var(--yellow);
  padding: 18px 0;
  border-top: 2px solid var(--bg-dark);
  border-bottom: 2px solid var(--bg-dark);
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 36px;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg-dark);
}
.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── Stats bar ───────────────────────────────────────────── */
.stats-section {
  background: var(--bg-dark);
  padding: 80px 40px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.stats-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 52px;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-block {
  padding: 40px 32px;
  border-left: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-block:first-child { border-left: none; }
.stat-number-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}
.stat-num {
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.stat-suffix {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1.2;
  margin-top: 8px;
}
.stat-label-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* ── Services section ────────────────────────────────────── */
.services-section {
  background: var(--bg);
  padding: 110px 40px;
}
.services-head {
  max-width: 1100px;
  margin: 0 auto 70px;
}
.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-card {
  background: var(--bg);
  padding: 44px 32px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 3px;
  background: var(--red);
  transition: right 0.4s var(--ease-out);
}
.service-card:hover { background: var(--bg-off); }
.service-card:hover::after { right: 0; }
.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(214,40,40,0.08);
  border-radius: 12px;
  margin-bottom: 24px;
}
.service-icon svg { width: 26px; height: 26px; fill: var(--red); }
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.15;
}
.service-card p {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ── Why Choose Us ───────────────────────────────────────── */
.why-section {
  background: var(--bg-off);
  padding: 110px 40px;
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-left .section-body { margin-top: 24px; }
.why-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.why-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
}
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 24px; height: 24px; fill: var(--white); }
.why-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}
.why-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 500;
}

/* ── Why image container ─────────────────────────────────── */
.why-img-container {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}
.why-img-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* ── How It Works ────────────────────────────────────────── */
.how-section {
  background: var(--bg);
  padding: 110px 40px;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}
.how-main { min-width: 0; }
.how-head { margin-bottom: 72px; }
.how-image-wrap {
  position: sticky;
  top: 100px;
  border-radius: 12px;
  overflow: hidden;
}
.how-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 72px;
  bottom: 72px;
  width: 1px;
  background: var(--border);
}
.how-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.how-step:last-child { border-bottom: none; }
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-off);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-muted);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.how-step:hover .step-num {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.step-content { padding-top: 12px; }
.step-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 500;
  max-width: 560px;
}

/* ── Emergency Response ──────────────────────────────────── */
.emergency-section {
  background: var(--bg-dark);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.emergency-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,40,40,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.emergency-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.emergency-section .section-label { color: rgba(255,255,255,0.35); }
.emergency-section .section-heading {
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin-bottom: 28px;
}
.emergency-section .section-heading em { color: var(--red); }
.emergency-body {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.70);
  font-weight: 500;
  margin-bottom: 48px;
}
.emergency-body strong { color: var(--white); font-weight: 700; }

/* ── Trust / Story section ───────────────────────────────── */
.trust-section {
  background: var(--bg);
  padding: 110px 40px;
  overflow: hidden;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.trust-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.trust-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.trust-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 2px;
}
.trust-image-accent .big-num {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.04em;
}
.trust-image-accent .big-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.trust-content .section-body { margin: 20px 0 36px; }
.pull-quote {
  padding: 24px 28px;
  border-left: 3px solid var(--red);
  background: var(--bg-off);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── Community section ───────────────────────────────────── */
.community-section {
  background: var(--bg-off);
  padding: 120px 40px;
  overflow: hidden;
}
.community-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.community-year {
  font-size: clamp(8rem, 14vw, 14rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--red);
  opacity: 0.12;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;
  user-select: none;
}
.community-content { position: relative; z-index: 1; }
.community-content .section-body { margin: 20px 0 36px; }
.community-image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.community-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
}

/* ── Reviews ─────────────────────────────────────────────── */
.reviews-section {
  background: var(--bg-off);
  padding: 110px 40px;
}
.reviews-head {
  max-width: 1100px;
  margin: 0 auto 60px;
}
.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  padding: 36px 32px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(26,26,26,0.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.review-card:hover {
  box-shadow: 0 8px 40px rgba(26,26,26,0.12);
  transform: translateY(-2px);
}
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.review-stars {
  display: flex;
  gap: 2px;
}
.review-stars svg { width: 17px; height: 17px; fill: #F5A623; }
.review-source {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.review-text {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 500;
  flex: 1;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-author {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.review-location {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ── Service Area ────────────────────────────────────────── */
.area-section {
  background: var(--bg-dark);
  padding: 110px 40px;
  overflow: hidden;
}
.area-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.area-section .section-label { color: rgba(255,255,255,0.35); }
.area-section .section-heading { color: var(--white); }
.area-section .section-body { color: rgba(255,255,255,0.60); }
.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}
.area-item:hover { background: rgba(255,255,255,0.04); color: var(--white); }
.area-item svg { width: 14px; height: 14px; fill: var(--red); flex-shrink: 0; }
.area-response {
  margin-top: 48px;
  padding: 32px;
  background: rgba(214,40,40,0.12);
  border: 1px solid rgba(214,40,40,0.25);
  border-radius: var(--radius);
}
.area-response h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.area-response p {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.60);
  line-height: 1.6;
}

/* ── Final CTA Band ──────────────────────────────────────── */
.cta-band {
  background: var(--red);
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(0,0,0,0.04) 24px,
    rgba(0,0,0,0.04) 48px
  );
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.cta-band-headline {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 24px;
}
.cta-band-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-bottom: 52px;
  line-height: 1.5;
}
.cta-band .btn {
  background: var(--white);
  color: var(--red);
  font-size: 1.2rem;
  padding: 22px 52px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.20);
}
.cta-band .btn:hover {
  background: var(--yellow);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.30);
}

/* ── Social Follow section ───────────────────────────────── */
.social-section {
  background: var(--bg);
  padding: 110px 40px;
}
.social-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.social-head { margin-bottom: 56px; }
.social-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.social-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  background: var(--bg-off);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.social-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,26,26,0.10);
}
.social-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.social-card--fb .social-card-icon { background: #1877F2; }
.social-card--ig .social-card-icon { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-card-icon svg { width: 26px; height: 26px; fill: white; }
.social-card-body { flex: 1; min-width: 0; }
.social-card-platform {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.social-card-handle {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.1;
}
.social-card-desc {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
  padding-right: 40px;
}
.social-card-arrow {
  position: absolute;
  top: 32px;
  right: 28px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.social-card-arrow svg { width: 16px; height: 16px; fill: var(--text-muted); transition: fill 0.2s; }
.social-card:hover .social-card-arrow { background: var(--red); border-color: var(--red); }
.social-card:hover .social-card-arrow svg { fill: white; }

/* ── Gallery section ─────────────────────────────────────── */
.gallery-section {
  background: var(--bg-off);
  padding: 110px 40px;
}
.gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-head { margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  background: var(--border);
  aspect-ratio: 4 / 3;
  position: relative;
}
.gallery-item--lg {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.03); }
.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 2px dashed var(--border);
}
.gallery-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.gallery-placeholder-content svg { width: 32px; height: 32px; fill: var(--border); }
.gallery-placeholder-content span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Responsive homepage ─────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner, .community-inner, .why-inner, .area-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .how-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .how-image-wrap { position: static; }
  .how-image-wrap img { height: 340px; }
}

@media (max-width: 768px) {
  .hero-section { height: 220vh; }
  .hero-headline { font-size: clamp(2.8rem, 9vw, 5rem); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .how-steps::before { left: 30px; }
  .step-num { width: 60px; height: 60px; font-size: 1.2rem; }
  .how-step { grid-template-columns: 60px 1fr; }
  .area-list { grid-template-columns: 1fr 1fr; }
  .cta-band-headline { font-size: clamp(2.4rem, 10vw, 4rem); }
  .stat-num { font-size: clamp(2.8rem, 10vw, 4rem); }
  .why-img-container img { height: auto; }
  .how-image-wrap img { height: 260px; }
  .social-cards { grid-template-columns: 1fr; }
  .gallery-item--lg { grid-column: span 1; aspect-ratio: 4 / 3; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .area-list { grid-template-columns: 1fr; }
  .trust-image img, .community-image img { height: 280px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .social-card { flex-direction: column; gap: 16px; }
  .social-card-desc { padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  #hero-canvas { display: none; }
  .hero-static-bg {
    display: block !important;
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .hero-overlay { opacity: 1 !important; transform: none !important; pointer-events: all; }
  .scroll-indicator { display: none; }
}
