/* =====================================================
   Spark Doc Electric — Main Stylesheet
   Colors: Red #CC1F1F | Black #0D0D0D | Grey #2A2A2A | White #FFFFFF
   ===================================================== */

/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.mobile-only { display: none !important; }
@media (max-width: 768px) { .mobile-only { display: inline-flex; } }
@media (max-width: 1024px) { .mobile-hide { display: none !important; } }

:root {
  --red:        #CC1F1F;
  --red-dark:   #A31717;
  --red-light:  #E53535;
  --black:      #0D0D0D;
  --dark:       #1A1A1A;
  --dark2:      #222222;
  --grey-dark:  #2A2A2A;
  --grey:       #555555;
  --grey-mid:   #888888;
  --silver:     #D0D0D0;
  --off-white:  #F4F4F4;
  --white:      #FFFFFF;
  --shadow:     0 4px 24px rgba(0,0,0,0.18);
  --shadow-sm:  0 2px 10px rgba(0,0,0,0.12);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: 0.22s ease;
  --max-w:      1160px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.18; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { font-size: 1.0625rem; line-height: 1.7; }

.red  { color: var(--red); }
.bold { font-weight: 800; }

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 15px 30px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 18px rgba(204,31,31,0.4);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 6px 24px rgba(204,31,31,0.5);
}

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

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

.btn-lg {
  font-size: 1.15rem;
  padding: 18px 38px;
}

/* ─── Floating Call Button (Mobile) ─────────────────── */
#float-cta {
  display: none;
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(204,31,31,0.55);
  border: none;
  cursor: pointer;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.01em;
}
#float-cta:hover { background: var(--red-dark); transform: translateX(-50%) translateY(-2px); }

@media (max-width: 768px) {
  #float-cta { display: inline-flex; }
}

/* ─── Header / Nav ──────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 2px solid var(--red);
  transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.45); }

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
/* Text fallback if logo image is unavailable */
.logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-text span { color: var(--red); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--silver);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--red); }
.header-phone svg { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--dark2);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--silver);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .mobile-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.mobile-nav .mobile-cta-row .btn {
  flex: 1;
  padding: 13px 16px;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
}

/* ─── Hero Section ──────────────────────────────────── */
#hero {
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('../hero-bg.jpg') center center / cover no-repeat;
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
/* Subtle grid overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
/* Red accent line */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,31,31,0.15);
  border: 1px solid rgba(204,31,31,0.4);
  color: var(--red-light);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title { color: var(--white); margin-bottom: 20px; }
.hero-title em { color: var(--red); font-style: normal; }

.hero-subtitle {
  color: var(--silver);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--silver);
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-item svg { color: var(--red-light); flex-shrink: 0; }

/* Hero visual panel */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(4px);
  transition: border-color var(--transition);
}
.hero-card:hover { border-color: rgba(204,31,31,0.4); }
.hero-card-icon {
  width: 48px; height: 48px;
  background: rgba(204,31,31,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red-light);
}
.hero-card-text strong { display: block; color: var(--white); font-weight: 700; }
.hero-card-text span { color: var(--silver); font-size: 0.88rem; }

.hero-emergency {
  background: linear-gradient(135deg, rgba(204,31,31,0.2), rgba(204,31,31,0.08));
  border: 1px solid rgba(204,31,31,0.5);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
}
.hero-emergency p { color: var(--red-light); font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.hero-emergency a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}
.hero-emergency a:hover { color: var(--red-light); }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  #hero { padding: 60px 0; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}

/* ─── Trust Bar ─────────────────────────────────────── */
#trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--silver);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 28px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  border-right: 1px solid var(--silver);
}
.trust-badge:last-child { border-right: none; }
.trust-badge svg { color: var(--red); }

@media (max-width: 700px) {
  .trust-badge { border-right: none; padding: 8px 16px; }
}

/* ─── Section Styles ────────────────────────────────── */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.section-title { margin-bottom: 14px; }
.section-sub { color: var(--grey); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ─── Services ──────────────────────────────────────── */
#services { background: var(--black); color: var(--white); }
#services .section-title { color: var(--white); }
#services .section-sub { color: var(--silver); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(204,31,31,0.18);
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(204,31,31,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--red-light);
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(204,31,31,0.22); }
.service-card h3 { color: var(--white); margin-bottom: 8px; }
.service-card p { color: #AAAAAA; font-size: 0.92rem; line-height: 1.6; }

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ─── Why Choose Us ─────────────────────────────────── */
#why { background: var(--white); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-content .section-header { text-align: left; margin-bottom: 36px; }
.why-content .section-label { display: block; }

.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 46px; height: 46px;
  background: rgba(204,31,31,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.why-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.why-item p { color: var(--grey); font-size: 0.9rem; }

.why-cta-box {
  background: linear-gradient(135deg, var(--black), var(--dark2));
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.why-cta-box h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 8px; }
.why-cta-box p { color: var(--silver); font-size: 0.95rem; margin-bottom: 28px; }
.why-cta-phone {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.why-cta-phone:hover { color: var(--red-light); }
.why-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
  color: var(--grey-mid);
  font-size: 0.85rem;
  font-weight: 600;
}
.why-divider::before, .why-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

@media (max-width: 1024px) {
  .why-inner { grid-template-columns: 1fr; gap: 44px; }
  .why-content .section-header { text-align: center; }
  .why-content .section-label { text-align: center; }
}

/* ─── How It Works ──────────────────────────────────── */
#how-it-works { background: var(--off-white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
/* Connecting line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  z-index: 0;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
}
.step-num {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(204,31,31,0.35);
}
.step-card h3 { margin-bottom: 10px; color: var(--dark); }
.step-card p { color: var(--grey); font-size: 0.93rem; }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}

/* ─── Service Areas ─────────────────────────────────── */
#areas { background: var(--black); color: var(--white); }
#areas .section-title { color: var(--white); }
#areas .section-sub { color: var(--silver); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 44px;
}
.area-pill {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--silver);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.area-pill:hover {
  background: rgba(204,31,31,0.12);
  border-color: rgba(204,31,31,0.4);
  color: var(--white);
}
.area-pill.primary {
  background: rgba(204,31,31,0.14);
  border-color: rgba(204,31,31,0.45);
  color: var(--white);
}

.areas-note {
  text-align: center;
  color: var(--grey-mid);
  font-size: 0.92rem;
}
.areas-note strong { color: var(--silver); }

@media (max-width: 700px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .areas-grid { grid-template-columns: 1fr; } }

/* ─── Testimonials ──────────────────────────────────── */
#reviews { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.stars {
  display: flex;
  gap: 3px;
  color: #F5B50A;
  font-size: 1.1rem;
}
.review-text {
  color: var(--dark);
  font-size: 0.97rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.reviewer-avatar {
  width: 42px; height: 42px;
  background: var(--grey-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.92rem; }
.reviewer-source { color: var(--grey-mid); font-size: 0.8rem; }

@media (max-width: 1024px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ─── Emergency CTA Banner ──────────────────────────── */
#emergency-cta {
  background: var(--red);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#emergency-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.emergency-inner { position: relative; z-index: 1; }
.emergency-label {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
#emergency-cta h2 { color: var(--white); margin-bottom: 12px; }
#emergency-cta p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.emergency-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--white);
  font-weight: 800;
}
.btn-white:hover { background: var(--off-white); }

/* ─── Footer ────────────────────────────────────────── */
#site-footer {
  background: var(--black);
  color: var(--silver);
  padding: 64px 0 0;
  border-top: 2px solid var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--grey-mid); font-size: 0.9rem; max-width: 280px; line-height: 1.65; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  color: var(--grey-mid);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--grey-mid);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer-contact p svg { color: var(--red); flex-shrink: 0; }
.footer-contact a { color: var(--white); transition: color var(--transition); }
.footer-contact a:hover { color: var(--red-light); }
.footer-license {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--grey-mid);
  line-height: 1.5;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--grey-mid);
}
.footer-bottom a { color: var(--grey-mid); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* ─── Scroll-reveal utility ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
