/* =====================================================================
   OUELLETTE DRAIN & HOME SERVICES — Warren, OH
   Style: Clean & Modern · Water + Plumbing
   Palette: Deep navy + water-blue + cool white (matches logo)
   Type: Inter Black display + Inter body + JetBrains Mono accents
   ===================================================================== */

:root {
  /* NAVY / DARK */
  --ink:        #0A1626;
  --steel:      #122438;
  --steel-2:    #1B324C;
  --steel-3:    #284766;
  --slate:      #45607B;
  --slate-2:    #6B829A;
  --slate-3:    #9BB0C5;
  --paper:      #FFFFFF;
  --paper-2:    #F4F7FA;
  --paper-3:    #E9EFF5;
  --line:       #D9E1EA;
  --line-2:     #BFCBD8;

  /* SIGNATURE ACCENT — WATER BLUE */
  --orange:     #2D9CDB;
  --orange-hi:  #4FB3E8;
  --orange-lo:  #1B7AB5;
  --orange-50:  #E8F4FC;

  /* SUPPORTING */
  --copper:     #5A8EBC;
  --steel-blue: #2D5F8F;
  --emerald:    #2DD4BF;   /* "Available now" indicator — cooler aqua */

  --maxw: 1280px;
  --r-xs: 4px; --r-sm: 8px; --r: 12px; --r-lg: 18px; --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(10,10,10,.08), 0 2px 8px rgba(10,10,10,.06);
  --shadow:    0 8px 24px rgba(10,10,10,.12), 0 2px 6px rgba(10,10,10,.06);
  --shadow-lg: 0 28px 64px rgba(10,10,10,.24), 0 10px 24px rgba(10,10,10,.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16.5px; line-height: 1.55;
  font-feature-settings: "kern","ss01";
  -webkit-font-smoothing: antialiased;
}
.mono { font-family: 'JetBrains Mono', 'Roboto Mono', ui-monospace, monospace; font-feature-settings: "tnum"; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-lo); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .wrap { padding: 0 18px; } }

/* ───────── ANNOUNCE BAR ───────── */
.announce {
  background: var(--ink); color: var(--paper);
  font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
  font-size: 12.5px; font-weight: 500; letter-spacing: .04em;
  border-bottom: 2px solid var(--orange);
}
.announce-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px; gap: 16px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
}
.announce a { color: var(--paper); }
.announce-left, .announce-right { display: flex; align-items: center; gap: 22px; }
.announce-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 3px 0; text-transform: uppercase;
}
.announce-pill.emergency { color: var(--orange-hi); font-weight: 700; }
.announce-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 4px rgba(16,185,129,.22); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
@media (max-width: 900px) { .announce-right .announce-pill:nth-child(2), .announce-left .announce-pill:nth-child(2) { display: none; } }
@media (max-width: 600px) { .announce-inner { font-size: 11.5px; height: 34px; padding: 0 14px; gap: 8px; } .announce-left .announce-pill:not(:first-child), .announce-right .announce-pill:not(:first-child) { display: none; } }

/* ───────── NAV ───────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 24px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand-img { height: 60px; width: auto; max-width: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name { font-weight: 900; font-size: 15px; color: var(--ink); letter-spacing: -.015em; }
.brand-text .sub { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--slate-2); letter-spacing: .08em; margin-top: 4px; text-transform: uppercase; }

.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  color: var(--steel-2); font-weight: 600; font-size: 14.5px;
  letter-spacing: .01em; padding: 8px 0;
  position: relative;
  text-transform: uppercase;
  font-size: 13px; letter-spacing: .08em;
}
.nav-links a.active, .nav-links a:hover { color: var(--ink); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 3px; background: var(--orange); border-radius: 3px;
}

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-fb {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--paper-2); color: var(--ink);
  transition: all .2s ease;
  border: 1px solid var(--line);
}
.nav-fb:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-1px); }
.nav-fb svg { width: 18px; height: 18px; }

.nav-call {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 16px; height: 42px;
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-sm);
  font-weight: 800; font-size: 14.5px; letter-spacing: -.005em;
}
.nav-call:hover { background: var(--orange); color: var(--paper); }
.nav-call svg { width: 16px; height: 16px; color: var(--orange); }
.nav-call:hover svg { color: var(--paper); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 50px; padding: 0 24px; border-radius: var(--r-sm);
  font-weight: 800; font-size: 14.5px; letter-spacing: .02em;
  cursor: pointer; transition: all .22s ease;
  border: 0; white-space: nowrap;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}
.btn > svg { flex-shrink: 0; }
.btn-primary { background: var(--orange); color: var(--paper); box-shadow: 0 6px 18px rgba(242,101,34,.36); }
.btn-primary:hover { background: var(--orange-lo); color: var(--paper); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(242,101,34,.46); }
.btn-secondary { background: var(--ink); color: var(--paper); }
.btn-secondary:hover { background: var(--steel-3); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost-light { background: transparent; color: var(--paper); border: 2px solid rgba(255,255,255,.36); }
.btn-ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-lg { height: 58px; padding: 0 28px; font-size: 15px; }
.btn-block { width: 100%; }

.nav-toggle { display: none; background: var(--ink); color: var(--paper); border: 0; width: 44px; height: 44px; border-radius: var(--r-sm); align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-right .nav-call { display: none; }
  .nav-right .btn { display: none; }
  .nav-right { margin-left: auto; align-items: center; gap: 10px; }
  .brand { margin-right: auto; }
  .nav-fb, .nav-toggle {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; border-radius: var(--r-sm);
  }
  .nav-fb { border-radius: 50%; }
}
@media (max-width: 720px) {
  .nav-inner {
    height: auto;
    min-height: 68px;
    padding: 8px 14px;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .brand {
    order: 1;
    flex: 0 0 auto;
    margin-right: auto;
  }
  .brand-img { height: 64px; max-height: 64px; width: auto; }
  .brand-text { display: none; }
  .nav-right {
    order: 2;
    flex: 0 0 auto;
    margin-left: 0;
    gap: 10px;
  }
  .nav-fb, .nav-toggle { width: 42px; height: 42px; }
}
@media (max-width: 420px) {
  .brand-img { height: 56px; max-height: 56px; }
  .nav-inner { padding: 8px 12px; min-height: 64px; }
}

/* Mobile drawer */
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 320px; max-width: 90vw; background: var(--ink); color: var(--paper); padding: 30px 28px; transform: translateX(110%); transition: transform .28s ease; z-index: 100; box-shadow: var(--shadow-lg); }
.drawer.open { transform: translateX(0); }
.drawer-close { position: absolute; top: 18px; right: 18px; background: rgba(255,255,255,.08); border: 0; color: var(--paper); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; }
.drawer h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-3); margin: 24px 0 12px; }
.drawer a { display: block; color: var(--paper); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.10); font-weight: 600; font-size: 17px; }
.drawer a:hover { color: var(--orange-hi); }
.drawer .btn { width: 100%; margin-top: 18px; }
.drawer-emergency { display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--orange); color: var(--paper); border-radius: var(--r-sm); margin-top: 14px; font-weight: 800; letter-spacing: .04em; }
.drawer-emergency svg { width: 16px; height: 16px; }
.scrim { position: fixed; inset: 0; background: rgba(10,10,10,.6); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.scrim.open { opacity: 1; pointer-events: auto; }

/* ───────── HERO ───────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--paper);
}
.hero-bg { display: none; }
.hero-mobile-logo { display: none; }

.hero-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 90px 28px 100px;
  display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 70px; align-items: center;
  position: relative;
}
.hero-grid::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 30%; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.08), transparent);
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 0; padding: 60px 22px 80px; } .hero-grid::before { display: none; } }

.hero-emergency {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: var(--r-sm);
  background: var(--orange); color: var(--paper);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
  animation: pulseBox 2.5s infinite;
}
.hero-emergency .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--paper); }
@keyframes pulseBox { 0%,100% { box-shadow: 0 0 0 0 rgba(242,101,34,.6); } 50% { box-shadow: 0 0 0 14px rgba(242,101,34,0); } }

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 6.2vw, 104px); line-height: .94; letter-spacing: -.045em;
  color: var(--paper); margin: 0 0 24px;
}
.hero h1 .accent { color: var(--orange); }
.hero h1 .strike { position: relative; display: inline-block; }
.hero h1 .strike::after {
  content: ""; position: absolute; left: -4px; right: -4px; bottom: 8%;
  height: 14%; background: var(--orange); z-index: -1; opacity: .75;
}
.hero-sub {
  font-size: 19px; line-height: 1.55; color: rgba(255,255,255,.78);
  max-width: 540px; margin: 0 0 36px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.10);
}
.hero-stat .num {
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: 36px; color: var(--paper); letter-spacing: -.04em; line-height: 1;
}
.hero-stat .num .accent { color: var(--orange); }
.hero-stat .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--slate-3); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; margin-top: 8px;
}

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute; top: 24px; right: 24px; z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  background: var(--orange); color: var(--paper);
  padding: 14px 18px; border-radius: var(--r-sm);
  box-shadow: 0 10px 28px rgba(242,101,34,.4);
  font-family: 'Inter', sans-serif;
}
.hero-badge .top { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .14em; font-weight: 600; text-transform: uppercase; opacity: .9; }
.hero-badge .big { font-size: 28px; font-weight: 900; letter-spacing: -.02em; line-height: 1; margin: 4px 0 2px; }
.hero-badge .bottom { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .14em; font-weight: 600; text-transform: uppercase; opacity: .9; }

@media (max-width: 980px) { .hero-badge { top: 16px; right: 16px; padding: 12px 16px; } .hero-badge .big { font-size: 22px; } }

/* ───────── TRUST STRIP ───────── */
.trust {
  background: var(--paper);
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .ico { width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--orange-50); color: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-item .ico svg { width: 22px; height: 22px; }
.trust-item .ttl { font-weight: 800; font-size: 15px; color: var(--ink); letter-spacing: -.01em; }
.trust-item .sub { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: var(--slate-2); letter-spacing: .04em; margin-top: 2px; }
@media (max-width: 720px) { .trust-row { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

/* ───────── SECTION ───────── */
section { padding: 110px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 18px;
}
.eyebrow::before { content: "›"; font-size: 18px; line-height: 1; font-weight: 900; }

.h-display {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 4.8vw, 72px); line-height: 1.0; letter-spacing: -.04em;
  color: var(--ink); margin: 0 0 20px;
}
.h-display .accent { color: var(--orange); }
.h-display .strike { position: relative; display: inline-block; }
.h-display .strike::after { content: ""; position: absolute; left: -4px; right: -4px; bottom: 8%; height: 14%; background: var(--orange); z-index: -1; opacity: .75; }
.lede { font-size: 18.5px; line-height: 1.6; color: var(--slate); max-width: 700px; }

/* ───────── SERVICES ───────── */
.svc-head { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 40px; margin-bottom: 56px; }
@media (max-width: 720px) { .svc-head { grid-template-columns: 1fr; gap: 14px; } }

.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 960px) { .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: all .26s ease;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.svc-photo { aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--steel); }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc-card:hover .svc-photo img { transform: scale(1.07); }
.svc-card.emergency .svc-photo::before {
  content: "24 / 7"; position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--orange); color: var(--paper);
  padding: 6px 11px; border-radius: var(--r-xs);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  box-shadow: 0 4px 12px rgba(242,101,34,.4);
}
.svc-body { padding: 28px 30px 32px; flex: 1; display: flex; flex-direction: column; }
.svc-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; font-weight: 600; color: var(--slate-2); letter-spacing: .14em;
  margin-bottom: 12px;
}
.svc-body h3 { font-size: 24px; font-weight: 900; color: var(--ink); letter-spacing: -.025em; margin: 0 0 12px; line-height: 1.08; }
.svc-body p { font-size: 15px; color: var(--slate); line-height: 1.6; margin: 0 0 18px; flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; color: var(--ink); font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; align-self: flex-start;
}
.svc-link::after { content: "→"; transition: transform .2s; }
.svc-link:hover { color: var(--orange); }
.svc-link:hover::after { transform: translateX(4px); }

/* ───────── CAPABILITY BAR ───────── */
.capability-bar {
  margin-top: 60px; padding: 40px 44px;
  background: var(--ink); border-radius: var(--r-lg);
  color: var(--paper);
  position: relative; overflow: hidden;
}
.capability-bar::before {
  content: ""; position: absolute; top: 0; right: 0; width: 6px; height: 100%;
  background: var(--orange);
}
.capability-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 26px; }
.capability-head h3 { margin: 0; font-family: 'Inter', sans-serif; font-size: 28px; font-weight: 900; color: var(--paper); letter-spacing: -.025em; }
.capability-head p { margin: 6px 0 0; color: var(--slate-3); font-size: 14.5px; font-family: 'JetBrains Mono', monospace; }
.capability-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.capability { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--steel); border-radius: var(--r-sm); border: 1px solid var(--steel-2); transition: all .2s; }
.capability:hover { background: var(--steel-2); border-color: var(--orange); }
.capability .ico { width: 32px; height: 32px; border-radius: 8px; background: var(--orange); color: var(--paper); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.capability .ico svg { width: 16px; height: 16px; }
.capability span { color: var(--paper); font-weight: 600; font-size: 14px; }

/* ───────── EMERGENCY CALLOUT BANNER ───────── */
.emergency-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-lo) 100%);
  color: var(--paper);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.emergency-band::before {
  content: "24/7"; position: absolute; top: 50%; right: -40px; transform: translateY(-50%);
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: 320px; color: rgba(255,255,255,.08); line-height: 1; letter-spacing: -.05em;
}
.emergency-grid { display: grid; grid-template-columns: minmax(0,1.6fr) auto; gap: 50px; align-items: center; position: relative; z-index: 1; }
.emergency-band h2 { font-family: 'Inter', sans-serif; font-size: clamp(34px, 4vw, 56px); font-weight: 900; line-height: 1.04; letter-spacing: -.035em; margin: 0 0 12px; color: var(--paper); }
.emergency-band p { font-size: 17px; margin: 0; max-width: 580px; color: rgba(255,255,255,.92); }
.emergency-band .label { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.84); margin-bottom: 10px; display: inline-block; }
.emergency-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.emergency-band .btn-primary { background: var(--paper); color: var(--ink); }
.emergency-band .btn-primary:hover { background: var(--ink); color: var(--paper); box-shadow: 0 10px 28px rgba(0,0,0,.32); }
@media (max-width: 820px) { .emergency-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; } .emergency-actions { justify-content: center; } }

/* ───────── SPLIT ───────── */
.split-section { background: var(--paper-2); }
.split {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 70px; align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }

.split-photo {
  position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.split-photo img { width: 100%; height: 100%; object-fit: cover; }
.split-photo .badge {
  position: absolute; left: 24px; bottom: 24px;
  padding: 14px 18px; background: var(--ink); color: var(--paper);
  border-radius: var(--r-sm);
  font-weight: 800; font-size: 14px; letter-spacing: -.01em;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
}
.split-photo .badge .ico { width: 40px; height: 40px; border-radius: 50%; background: var(--orange); color: var(--paper); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.split-photo .badge small { display: block; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 600; color: var(--slate-3); margin-top: 2px; letter-spacing: .12em; }

.split-content p { font-size: 17px; color: var(--slate); line-height: 1.7; margin: 0 0 18px; max-width: 540px; }

.principles { margin: 32px 0 28px; }
.principle { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.principle .num { font-family: 'Inter', sans-serif; font-size: 28px; font-weight: 900; color: var(--orange); font-feature-settings: "tnum"; letter-spacing: -.04em; line-height: 1; }
.principle h4 { margin: 0 0 4px; font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -.015em; }
.principle p { margin: 0; font-size: 14.5px; color: var(--slate); line-height: 1.55; }

/* ───────── PROCESS — DARK ───────── */
.process { background: var(--ink); color: var(--paper); }
.process .h-display { color: var(--paper); }
.process .lede { color: var(--slate-3); }

.process-head { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,1fr); gap: 60px; align-items: end; margin-bottom: 70px; }
@media (max-width: 900px) { .process-head { grid-template-columns: 1fr; gap: 24px; } }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; gap: 18px; } }

.step {
  padding: 36px 28px 32px; background: var(--steel);
  border: 1px solid var(--steel-2); border-radius: var(--r);
  position: relative; transition: all .25s ease;
}
.step:hover { background: var(--steel-2); border-color: var(--orange); transform: translateY(-3px); }
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: .14em;
  text-transform: uppercase;
}
.step h4 { margin: 12px 0 10px; font-size: 22px; font-weight: 900; color: var(--paper); letter-spacing: -.025em; line-height: 1.1; }
.step p { margin: 0; color: var(--slate-3); font-size: 14.5px; line-height: 1.6; }

/* ───────── FAQ ───────── */
.faq-list { max-width: 880px; margin: 50px auto 0; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item details summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: 19px; font-weight: 800; color: var(--ink); letter-spacing: -.015em;
}
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-item details summary::after {
  content: "+"; font-size: 24px; font-weight: 400; color: var(--orange);
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  flex-shrink: 0; transition: all .25s ease;
}
.faq-item details[open] summary::after { content: "−"; background: var(--orange); border-color: var(--orange); color: var(--paper); }
.faq-item p { font-size: 16px; color: var(--slate); line-height: 1.7; margin: 16px 0 0; }

/* ───────── PAGE HERO ───────── */
.page-hero {
  background: var(--ink); color: var(--paper);
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: var(--orange); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-family: 'JetBrains Mono', monospace; font-size: 12.5px; font-weight: 500; color: var(--slate-3); margin-bottom: 22px; text-transform: uppercase; letter-spacing: .12em; }
.breadcrumb a { color: var(--orange); }
.page-hero h1 { font-family: 'Inter', sans-serif; font-size: clamp(44px, 5vw, 76px); line-height: 1.02; letter-spacing: -.04em; font-weight: 900; color: var(--paper); margin: 0 0 18px; max-width: 900px; }
.page-hero h1 .accent { color: var(--orange); }
.page-hero p { font-size: 19px; color: rgba(255,255,255,.78); max-width: 720px; line-height: 1.55; }

/* ───────── SERVICE DETAIL ───────── */
.svc-detail-row {
  display: grid; grid-template-columns: minmax(0,1.55fr) minmax(0,1fr);
  gap: 60px; align-items: start;
}
@media (max-width: 980px) { .svc-detail-row { grid-template-columns: 1fr; gap: 36px; } }

.svc-block {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.svc-block .photo { aspect-ratio: 16/9; overflow: hidden; position: relative; background: var(--steel); }
.svc-block .photo img { width: 100%; height: 100%; object-fit: cover; }
.svc-block .body { padding: 36px 40px 40px; }
.svc-block .body h3 { font-size: 28px; font-weight: 900; color: var(--ink); letter-spacing: -.03em; margin: 0 0 14px; line-height: 1.05; }
.svc-block .body p { font-size: 16px; color: var(--slate); line-height: 1.7; margin: 0 0 16px; }
.svc-block .bullets { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.svc-block .bullets li { display: flex; gap: 12px; font-size: 15px; color: var(--slate); align-items: flex-start; }
.svc-block .bullets li::before { content: "✓"; color: var(--orange); font-weight: 900; font-size: 14px; line-height: 1.5; flex-shrink: 0; }

.aside-card {
  position: sticky; top: 110px;
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-lg); padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--steel-3);
}
.aside-card h4 { margin: 0 0 10px; font-size: 24px; font-weight: 900; color: var(--paper); letter-spacing: -.025em; }
.aside-card .sub { color: var(--slate-3); font-size: 14.5px; font-family: 'JetBrains Mono', monospace; margin: 0 0 24px; }
.aside-card .info-row { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.10); }
.aside-card .info-row:first-of-type { border-top: 0; padding-top: 0; }
.aside-card .info-row .ico { width: 42px; height: 42px; border-radius: var(--r-sm); background: var(--orange); color: var(--paper); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.aside-card .info-row .ttl { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--slate-3); text-transform: uppercase; letter-spacing: .14em; font-weight: 600; }
.aside-card .info-row .val { font-size: 16px; color: var(--paper); font-weight: 800; margin-top: 4px; letter-spacing: -.01em; }
.aside-card .info-row a { color: var(--paper); }
.aside-card .btn { width: 100%; margin-top: 22px; }

/* ───────── AREAS ───────── */
.areas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 40px;
}
@media (max-width: 800px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
.area-tile {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px;
  transition: all .22s ease;
}
.area-tile:hover { border-color: var(--orange); background: var(--orange-50); transform: translateY(-2px); }
.area-tile .pin { width: 36px; height: 36px; border-radius: var(--r-sm); background: var(--orange-50); color: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.area-tile .pin svg { width: 18px; height: 18px; }
.area-tile h5 { margin: 0; font-size: 15px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.area-tile small { font-family: 'JetBrains Mono', monospace; color: var(--slate-2); font-size: 11.5px; letter-spacing: .04em; }

/* ───────── CONTACT FORM ───────── */
.contact-grid {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 56px; align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 30px; } }
.contact-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px 40px 42px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 26px; font-weight: 900; color: var(--ink); letter-spacing: -.025em; margin: 0 0 10px; }
.contact-card p { color: var(--slate); font-size: 15.5px; margin: 0 0 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-family: 'JetBrains Mono', monospace; font-size: 11.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; letter-spacing: .12em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font: inherit; font-size: 15px; color: var(--ink); background: var(--paper);
  transition: all .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(242,101,34,.16);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-full { grid-column: 1 / -1; }

.contact-info-card {
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-lg); padding: 40px 36px;
  border: 1px solid var(--steel-3);
}
.contact-info-card h3 { color: var(--paper); font-size: 26px; font-weight: 900; margin: 0 0 8px; letter-spacing: -.025em; }
.contact-info-card .sub { font-family: 'JetBrains Mono', monospace; color: var(--slate-3); font-size: 13.5px; margin: 0 0 28px; letter-spacing: .04em; }
.contact-info-card .info-row { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.10); }
.contact-info-card .info-row:first-of-type { border-top: 0; padding-top: 0; }
.contact-info-card .info-row .ico { width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--orange); color: var(--paper); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card .info-row .ttl { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--slate-3); text-transform: uppercase; letter-spacing: .14em; font-weight: 600; }
.contact-info-card .info-row .val { font-size: 17px; color: var(--paper); font-weight: 800; margin-top: 4px; letter-spacing: -.015em; }
.contact-info-card .info-row a { color: var(--paper); }
.contact-info-card .btn { margin-top: 28px; width: 100%; }
.contact-info-card .fb-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px; background: rgba(255,255,255,.08); border-radius: var(--r-sm);
  font-weight: 800; color: var(--paper); font-size: 14px; margin-top: 18px;
  letter-spacing: .04em; text-transform: uppercase;
}
.contact-info-card .fb-link:hover { background: var(--steel-blue); color: var(--paper); }
.contact-info-card .fb-link svg { width: 18px; height: 18px; }

/* ───────── FOOTER ───────── */
footer {
  background: var(--ink); color: var(--slate-3);
  padding: 88px 0 28px;
  border-top: 6px solid var(--orange);
}
.foot-grid { display: grid; grid-template-columns: minmax(0,1.4fr) repeat(3, 1fr); gap: 50px; margin-bottom: 50px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 600px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }

.foot-brand img { width: 180px; height: auto; margin-bottom: 20px; }
.foot-brand p { color: var(--slate-3); font-size: 14.5px; line-height: 1.7; max-width: 380px; }
.foot-social { display: flex; gap: 10px; margin-top: 20px; }
.foot-social a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: var(--r-sm); background: var(--steel); color: var(--paper); transition: all .2s; border: 1px solid var(--steel-2); }
.foot-social a:hover { background: var(--orange); color: var(--paper); border-color: var(--orange); }
.foot-social a svg { width: 18px; height: 18px; }

.foot-col h5 { color: var(--paper); font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin: 8px 0 18px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.foot-col ul a { color: var(--slate-3); font-size: 15px; }
.foot-col ul a:hover { color: var(--orange); }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--slate-2); letter-spacing: .04em;
}
.foot-bottom a { color: var(--slate-3); }

/* ───────── STICKY MOBILE CTA ───────── */
.mob-cta {
  display: none;
  position: fixed; bottom: 14px; left: 14px; right: 14px; z-index: 60;
  background: var(--paper); border-radius: var(--r);
  padding: 10px;
  box-shadow: 0 12px 32px rgba(10,10,10,.32);
  border: 1px solid var(--line);
}
.mob-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mob-cta-row .btn {
  height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 0 12px;
  text-align: center;
}
@media (max-width: 720px) { .mob-cta { display: block; } body { padding-bottom: 80px; } }

/* ───────── UTIL + REVEAL ───────── */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
  [data-reveal].in { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════ */
/* ═══════════════ MOBILE — FULL-BLEED HERO ═══════════════════ */
@media (max-width: 720px) {
  section { padding: 52px 0; }
  .page-hero { padding: 56px 0 44px; }

  .hero {
    position: relative;
    min-height: calc(100vh - 116px);
    min-height: calc(100dvh - 116px);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    isolation: isolate;
  }
  .hero-bg {
    display: block;
    position: absolute; inset: 0; z-index: -2;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }
  .hero::before {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(10,10,10,.82) 0%, rgba(10,10,10,.68) 35%, rgba(10,10,10,.86) 75%, rgba(10,10,10,.96) 100%);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 22px 36px;
    gap: 0;
    width: 100%;
    align-items: center;
    justify-items: center;
  }
  .hero-grid::before { display: none; }
  .hero-text { width: 100%; max-width: 480px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
  .hero-mobile-logo {
    display: block;
    width: min(72%, 260px);
    height: auto;
    margin: 0 auto 22px;
    filter: drop-shadow(0 10px 28px rgba(0,0,0,.5));
  }
  .hero-emergency { margin: 0 0 16px; }
  .hero h1 {
    text-align: center;
    font-size: clamp(38px, 9.2vw, 56px);
    line-height: .98;
    margin-bottom: 18px;
  }
  .hero-sub {
    text-align: center;
    font-size: 16px; line-height: 1.55;
    margin: 0 auto 26px;
    max-width: 380px;
  }
  .hero-ctas { width: 100%; flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .hero-ctas .btn-lg { width: 100%; height: 56px; padding: 0 22px; font-size: 14.5px; flex: none; }
  .hero-stats {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding-top: 22px;
    margin: 0 auto;
    max-width: 360px;
    border-top: 1px solid rgba(255,255,255,.14);
  }
  .hero-stat { text-align: center; }
  .hero-stat .num { font-size: 26px; }
  .hero-stat .lbl { font-size: 10px; letter-spacing: .1em; }
  .hero-photo { display: none; }

  /* trust */
  .trust { padding: 24px 0 !important; }
  .trust-row { gap: 18px 14px; }
  .trust-item .ttl { font-size: 13.5px; }
  .trust-item .sub { font-size: 11px; }
  .trust-item .ico { width: 40px; height: 40px; }

  .h-display { font-size: clamp(30px, 8vw, 44px); margin-bottom: 14px; }
  .lede { font-size: 16px; }
  .eyebrow { font-size: 11.5px; margin-bottom: 12px; letter-spacing: .14em; }

  .svc-head { margin-bottom: 28px; gap: 14px; }
  .svc-body { padding: 20px 22px 24px; }
  .svc-body h3 { font-size: 20px; }
  .svc-body p { font-size: 14.5px; margin-bottom: 14px; }

  .capability-bar { padding: 26px 22px; margin-top: 36px; }
  .capability-head h3 { font-size: 22px; }
  .capability-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .capability { padding: 11px 12px; gap: 10px; }
  .capability .ico { width: 28px; height: 28px; }
  .capability span { font-size: 13px; }

  .emergency-band { padding: 44px 0; }
  .emergency-band h2 { font-size: clamp(26px, 7vw, 36px); }
  .emergency-band p { font-size: 15.5px; }
  .emergency-actions { flex-direction: column; width: 100%; }
  .emergency-actions .btn { width: 100%; }
  .emergency-band::before { font-size: 200px; right: -30px; }

  .split { gap: 30px; }
  .split-content p { font-size: 15.5px; }
  .principles { margin: 22px 0 20px; }

  .process-head { gap: 18px; margin-bottom: 44px; }
  .step { padding: 26px 24px 24px; }
  .step h4 { font-size: 19px; }
  .step p { font-size: 14px; }

  .faq-list { margin-top: 28px; }
  .faq-item { padding: 18px 0; }
  .faq-item details summary { font-size: 16.5px; gap: 14px; }
  .faq-item details summary::after { width: 30px; height: 30px; font-size: 22px; }

  .page-hero h1 { font-size: clamp(32px, 8vw, 44px); }
  .page-hero p { font-size: 16px; }
  .svc-block .body { padding: 24px 22px 28px; }
  .svc-block .body h3 { font-size: 22px; }
  .svc-block .body p { font-size: 14.5px; }
  .svc-detail-row { gap: 24px; }
  .aside-card { padding: 28px 24px; position: static; }

  .areas-grid { gap: 10px; }
  .area-tile { padding: 14px 16px; gap: 12px; }

  .contact-card { padding: 26px 22px 30px; }
  .contact-info-card { padding: 28px 22px; }
  .contact-card h3, .contact-info-card h3 { font-size: 22px; }

  footer { padding: 56px 0 24px; }
  .foot-grid { gap: 28px; margin-bottom: 32px; }
  .foot-brand img { width: 160px; }
  .foot-brand p { font-size: 13.5px; }
}
