:root {
  --red: #c8102e;
  --red-dark: #9e0c24;
  --red-light: #e4243f;
  --ink: #14181d;
  --slate: #2b333d;
  --muted: #5d6772;
  --line: #e3e7ec;
  --bg: #ffffff;
  --bg-soft: #ffffff;
  --shadow: 0 10px 30px rgba(20, 24, 29, 0.10);
  --radius: 14px;
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -.01em; }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); border-top: 1px solid var(--line); }
.center { text-align: center; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 720px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Top emergency bar */
.topbar {
  background: #fff;
  color: var(--slate);
  font-size: .92rem;
  text-align: center;
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
}
.topbar a { color: var(--red); font-weight: 800; }

/* Header / nav */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.25rem; color: var(--ink); letter-spacing: -.01em; }
.brand > span { white-space: nowrap; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 9px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: grid; place-items: center; color: #fff; font-weight: 900; box-shadow: var(--shadow);
}
.brand small { display: block; font-size: .68rem; font-weight: 600; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--slate); font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; font-weight: 800; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer; transition: transform .12s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(200,16,46,.35); }
.btn-red:hover { background: var(--red-dark); color: #fff; }
.btn-ghost { background: #fff; color: var(--red); border-color: var(--red); }
.btn-ghost:hover { background: var(--red); color: #fff; }
.btn-lg { padding: 16px 30px; font-size: 1.1rem; }

/* Hero (all-white theme) */
.hero {
  position: relative; color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.hero-inner { padding: 92px 0 84px; max-width: 760px; }
.hero h1 { color: var(--ink); }
.hero h1 .flash { color: var(--red); }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; font-weight: 800; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero p { color: var(--muted); font-size: 1.22rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; color: var(--slate); font-weight: 600; font-size: .95rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust b { color: var(--ink); }

/* Hero background video (faded behind white) */
.hero { overflow: hidden; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: .18;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.90)),
    radial-gradient(1100px 480px at 78% -10%, rgba(200,16,46,.10), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; }

/* Media figures */
.media-figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media-figure img { width: 100%; height: 100%; object-fit: cover; }
.media-figure figcaption { font-size: .85rem; color: var(--muted); padding: 10px 4px 0; }

/* Work gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.gallery figure {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4 / 3;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(20,24,29,.85), transparent);
  color: #fff; font-weight: 700; font-size: .92rem; padding: 26px 16px 14px;
}

/* Video showcase section */
.video-wrap { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.video-wrap video { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; background: #0e1115; }
.video-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--red); color: #fff; font-weight: 800; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}

/* Split image feature */
.feature-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5 / 4; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }

/* Sub-page banner with image (all-white theme) */
.page-hero {
  position: relative; color: var(--ink); padding: 72px 0; overflow: hidden;
  background: #fff; border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; opacity: .12;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.80));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--ink); margin-bottom: 8px; }
.page-hero p { color: var(--muted); font-size: 1.15rem; max-width: 680px; margin: 0; }
.page-hero .crumb { color: var(--muted); font-size: .85rem; margin-bottom: 14px; }
.page-hero .crumb a { color: var(--red); }

/* Phone emphasis */
.phone-line { font-weight: 900; white-space: nowrap; }

/* Grid cards */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); transition: transform .15s ease, border-color .2s;
}
.card:hover { transform: translateY(-3px); border-color: #f1c9cf; }
.card .ico {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: #fdecef; color: var(--red); font-size: 1.5rem; margin-bottom: 14px;
}
.card h3 { font-size: 1.25rem; }
.card p { color: var(--muted); margin: 0; }

/* Steps */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 64px; margin-bottom: 26px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: #fff; font-weight: 900; display: grid; place-items: center;
}
.step h3 { margin-bottom: 4px; }
.step p { color: var(--muted); margin: 0; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; border-radius: 18px; padding: 44px; text-align: center; box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #ffe3e7; max-width: 640px; margin: 0 auto 22px; font-size: 1.1rem; }
.cta-band .btn-ghost { background: #fff; border-color: #fff; }

/* Areas */
.area-list { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; padding: 0; margin: 18px 0 0; }
.area-list li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-weight: 700; color: var(--slate); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: start; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .95rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; background: #fff; transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.15);
}
.contact-info { background: #fff; color: var(--ink); border: 1px solid var(--line); border-top: 4px solid var(--red); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.contact-info h3 { color: var(--ink); }
.contact-info a { color: var(--red); }
.contact-info .big-phone { font-size: 1.8rem; font-weight: 900; margin: 6px 0 18px; }
.note { font-size: .85rem; color: var(--muted); }

/* Disclaimer */
.disclaimer {
  background: #fff7e6; border: 1px solid #f3dca0; border-left: 5px solid #e0a800;
  border-radius: 10px; padding: 18px 20px; font-size: .9rem; color: #6b5500;
}
.disclaimer strong { color: #5a4700; }

/* Footer (all-white theme) */
.footer { background: #fff; color: var(--slate); padding: 56px 0 26px; border-top: 1px solid var(--line); }
.footer h4 { color: var(--ink); font-size: 1rem; margin: 0 0 14px; }
.footer a { color: var(--slate); }
.footer a:hover { color: var(--red); }
.footer .grid-3 { gap: 34px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--ink); font-weight: 800; font-size: 1.2rem; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 34px; padding-top: 20px; font-size: .85rem; color: var(--muted); }
.footer-bottom .disclaimer { background: #fff7e6; border: 1px solid #f3dca0; border-left: 4px solid #e0a800; color: #6b5500; border-radius: 8px; padding: 12px 16px; margin-bottom: 14px; }
.footer-bottom .disclaimer strong { color: #5a4700; }
.footer-bottom .disclaimer a { color: var(--red) !important; }

/* Sticky mobile call bar */
.callbar { display: none; }

/* Responsive */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 20px 16px; box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .nav .nav-cta .btn { padding: 10px 16px; font-size: .9rem; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .hero-inner { padding: 64px 0 60px; }
  .cta-band { padding: 32px 22px; }
  body { padding-bottom: 64px; }
  .callbar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: var(--red); box-shadow: 0 -6px 18px rgba(0,0,0,.18);
  }
  .callbar a { flex: 1; text-align: center; color: #fff; font-weight: 800; padding: 16px; font-size: 1.05rem; }
  .callbar a.alt { background: var(--ink); }
  .lead { font-size: 1.08rem; }
  .hero p { font-size: 1.08rem; }
  .cta-band { padding: 30px 20px; }
  .card { padding: 22px; }
  .step { padding-left: 56px; }
  .feature-img { aspect-ratio: 4 / 3; }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav { gap: 8px; }
  .brand { font-size: 1.02rem; gap: 9px; }
  .brand .mark { width: 34px; height: 34px; font-size: .82rem; }
  .brand small { font-size: .6rem; letter-spacing: .1em; }
  .nav-cta { gap: 8px; }
  .nav .nav-cta .btn { padding: 9px 13px; font-size: .82rem; }
  .topbar { font-size: .82rem; }
  .btn-lg { padding: 14px 22px; font-size: 1rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-band { padding: 26px 16px; }
}
