:root {
    --red: #d4222d;
    --red-dark: #a8161f;
    --red-glow: rgba(212, 34, 45, 0.35);
    --black: #0b0b0b;
    --ink: #141414;
    --panel: #1a1a1a;
    --panel-2: #222;
    --line: #2a2a2a;
    --text: #f1f1f1;
    --muted: #b8b8b8;
    --maxw: 1200px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

  img { max-width: 100%; display: block; }

  a { color: var(--red); text-decoration: none; }
  a:hover { color: #fff; }

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

  /* ===== NAV ===== */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px; max-width: var(--maxw); margin: 0 auto;
  }
  .nav-brand { display: flex; align-items: center; gap: 12px; }
  .nav-brand img { width: 38px; height: 38px; }
  .nav-brand-text { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1.5px; color: #fff; line-height: 1; }
  .nav-brand-text span { color: var(--red); }

  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a {
    color: var(--text); font-weight: 500; font-size: 14px; letter-spacing: 0.3px;
    text-transform: uppercase; transition: color .2s;
  }
  .nav-links a:hover { color: var(--red); }
  .nav-cta {
    background: var(--red); color: #fff !important; padding: 10px 18px;
    border-radius: 4px; font-weight: 700 !important; transition: all .2s;
  }
  .nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

  .nav-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 8px; }
  .nav-toggle svg { width: 28px; height: 28px; }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    background:
      radial-gradient(ellipse at 70% 30%, rgba(212, 34, 45, 0.18), transparent 55%),
      radial-gradient(ellipse at 20% 80%, rgba(212, 34, 45, 0.10), transparent 50%),
      linear-gradient(180deg, #0b0b0b 0%, #141414 100%);
    position: relative; overflow: hidden;
    padding: 120px 0 60px;
  }
  .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;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  }
  .hero-grid {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center;
    position: relative; z-index: 1;
  }
  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.95; letter-spacing: 1px; color: #fff; margin-bottom: 24px;
    text-transform: uppercase;
  }
  .hero h1 .accent { color: var(--red); display: block; }
  .hero p.lede {
    font-size: clamp(17px, 1.7vw, 20px); color: var(--muted);
    max-width: 560px; margin-bottom: 36px;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px; border-radius: 4px; font-weight: 700; font-size: 15px;
    letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer;
    border: none; transition: all .2s; text-decoration: none;
  }
  .btn-primary {
    background: var(--red); color: #fff;
    box-shadow: 0 8px 24px var(--red-glow);
  }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); color: #fff; }
  .btn-outline {
    background: transparent; color: #fff; border: 2px solid #fff;
  }
  .btn-outline:hover { background: #fff; color: var(--black); }

  .hero-badges { display: flex; gap: 24px; margin-top: 48px; flex-wrap: wrap; }
  .badge {
    display: flex; align-items: center; gap: 10px;
    color: var(--muted); font-size: 14px; font-weight: 500;
  }
  .badge svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }

  .hero-art {
    position: relative; display: flex; justify-content: center; align-items: center;
  }
  .hero-art-frame {
    width: 100%; max-width: 380px; aspect-ratio: 1;
    background: radial-gradient(circle at center, rgba(212, 34, 45, 0.25), transparent 65%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .hero-art-frame img { width: 80%; filter: drop-shadow(0 0 30px var(--red-glow)); }

  /* ===== SECTION TEMPLATE ===== */
  section { padding: 100px 0; position: relative; }
  .section-head { text-align: center; margin-bottom: 60px; }
  .eyebrow {
    display: inline-block; color: var(--red); font-weight: 700; font-size: 13px;
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 56px);
    color: #fff; letter-spacing: 1px; line-height: 1; text-transform: uppercase;
  }
  .section-sub {
    color: var(--muted); max-width: 640px; margin: 18px auto 0; font-size: 17px;
  }

  /* ===== SERVICES ===== */
  #services { background: var(--ink); }
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }
  .service-card {
    background: var(--panel); border: 1px solid var(--line); border-radius: 8px;
    padding: 36px 30px; transition: all .25s ease; position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ""; position: absolute; top: 0; left: 0; height: 4px; width: 100%;
    background: linear-gradient(90deg, var(--red), var(--red-dark));
    transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
  }
  .service-card:hover { transform: translateY(-6px); border-color: var(--red); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 60px; height: 60px; border-radius: 8px; background: rgba(212,34,45,0.12);
    display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
    border: 1px solid rgba(212,34,45,0.3);
  }
  .service-icon svg { width: 30px; height: 30px; color: var(--red); }
  .service-card h3 {
    font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px;
    color: #fff; margin-bottom: 14px; text-transform: uppercase;
  }
  .service-card p { color: var(--muted); margin-bottom: 18px; }
  .service-card ul { list-style: none; }
  .service-card li {
    color: var(--text); padding-left: 24px; position: relative;
    margin-bottom: 8px; font-size: 15px;
  }
  .service-card li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    color: var(--red); font-weight: 700;
  }

  /* ===== SERVICE AREA ===== */
  #area .area-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: stretch;
  }
  .area-info {
    background: var(--panel); border: 1px solid var(--line); border-radius: 8px;
    padding: 36px;
  }
  .area-info h3 {
    font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 1px;
    color: #fff; margin-bottom: 18px; text-transform: uppercase;
  }
  .area-info p { color: var(--muted); margin-bottom: 22px; }
  .city-list {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px;
    margin-bottom: 22px; list-style: none;
  }
  .city-list li {
    color: var(--text); font-size: 15px; padding-left: 20px; position: relative;
  }
  .city-list li::before {
    content: "📍"; position: absolute; left: 0; top: 0; font-size: 12px;
  }
  .area-callout {
    margin-top: 18px; padding: 16px; background: rgba(212,34,45,0.08);
    border-left: 3px solid var(--red); border-radius: 4px;
    font-size: 14px; color: var(--text);
  }
  #map {
    height: 100%; min-height: 420px; border-radius: 8px; overflow: hidden;
    border: 1px solid var(--line); background: #000;
  }

  /* ===== QUOTE FORM ===== */
  #quote { background: var(--ink); }
  .quote-grid {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start;
  }
  .quote-pitch h2 {
    font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4.5vw, 52px);
    color: #fff; letter-spacing: 1px; line-height: 1; text-transform: uppercase;
    margin-bottom: 20px;
  }
  .quote-pitch h2 span { color: var(--red); }
  .quote-pitch p { color: var(--muted); font-size: 17px; margin-bottom: 28px; }
  .quote-perks { list-style: none; }
  .quote-perks li {
    display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px;
    color: var(--text);
  }
  .quote-perks svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 2px; }

  .quote-form {
    background: var(--panel); border: 1px solid var(--line); border-radius: 8px;
    padding: 36px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-field { display: flex; flex-direction: column; }
  .form-field.full { grid-column: 1 / -1; }
  .form-field label {
    font-size: 13px; font-weight: 600; color: var(--muted);
    margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    background: var(--ink); border: 1px solid var(--line); border-radius: 4px;
    color: var(--text); padding: 12px 14px; font-size: 15px;
    font-family: inherit; transition: border-color .2s;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none; border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(212,34,45,0.18);
  }
  .form-field textarea { resize: vertical; min-height: 100px; }
  .form-submit { width: 100%; justify-content: center; margin-top: 8px; }
  .form-note {
    font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center;
  }

  /* ===== ABOUT ===== */
  #about .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .about-mark {
    text-align: center; position: relative;
  }
  .about-mark img {
    margin: 0 auto; max-width: 280px;
    filter: drop-shadow(0 0 40px var(--red-glow));
  }
  .about-text h2 {
    font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 48px);
    color: #fff; letter-spacing: 1px; line-height: 1; text-transform: uppercase;
    margin-bottom: 22px;
  }
  .about-text h2 span { color: var(--red); }
  .about-text p { color: var(--muted); font-size: 17px; margin-bottom: 18px; }
  .stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px;
  }
  .stat {
    text-align: center; padding: 20px; background: var(--panel);
    border: 1px solid var(--line); border-radius: 8px;
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--red);
    line-height: 1;
  }
  .stat-label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 6px; }

  /* ===== CONTACT ===== */
  #contact { background: var(--ink); }
  .contact-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; max-width: 720px; margin: 0 auto;
  }
  .contact-card {
    background: var(--panel); border: 1px solid var(--line); border-radius: 8px;
    padding: 30px 24px; text-align: center; transition: all .25s ease;
  }
  .contact-card:hover { border-color: var(--red); transform: translateY(-4px); }
  .contact-icon {
    width: 56px; height: 56px; border-radius: 50%; background: rgba(212,34,45,0.12);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
    border: 1px solid rgba(212,34,45,0.3);
  }
  .contact-icon svg { width: 26px; height: 26px; color: var(--red); }
  .contact-card h4 {
    font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px;
    color: #fff; margin-bottom: 8px; text-transform: uppercase;
  }
  .contact-card a, .contact-card p {
    color: var(--text); font-size: 16px;
    overflow-wrap: anywhere; word-break: normal; hyphens: none;
  }
  .contact-card a.email { font-size: 15px; letter-spacing: -0.2px; }
  .contact-card a:hover { color: var(--red); }

  /* ===== FOOTER ===== */
  footer {
    background: #050505; border-top: 1px solid var(--line);
    padding: 50px 0 30px; color: var(--muted); font-size: 14px;
  }
  .footer-inner {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
    padding-bottom: 30px; border-bottom: 1px solid var(--line);
  }
  .footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
  .footer-brand img { width: 50px; }
  .footer-brand-text { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: #fff; letter-spacing: 1.5px; line-height: 1; }
  .footer-brand-text span { color: var(--red); }
  .footer-col h5 {
    color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 14px; font-weight: 700;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 8px; }
  .footer-col a { color: var(--muted); font-size: 14px; }
  .footer-col a:hover { color: var(--red); }
  .footer-bottom {
    text-align: center; padding-top: 24px; font-size: 13px; color: #777;
  }
  .footer-bottom span { color: var(--red); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
      background: var(--ink); flex-direction: column; padding: 20px; gap: 18px;
      border-bottom: 1px solid var(--line); }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }

    .hero { padding-top: 110px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-badges { justify-content: center; }
    .hero-art-frame { max-width: 280px; margin: 0 auto; }

    section { padding: 70px 0; }

    #area .area-grid,
    .quote-grid,
    #about .about-grid { grid-template-columns: 1fr; gap: 30px; }

    .footer-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer-brand { justify-content: center; }
    .stats { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }
  /* ===== INTERIOR PAGE HERO ===== */
  .page-hero {
    padding: 140px 0 60px;
    background:
      radial-gradient(ellipse at 70% 30%, rgba(212, 34, 45, 0.14), transparent 60%),
      linear-gradient(180deg, #0b0b0b 0%, #141414 100%);
    position: relative; overflow: hidden;
    text-align: center;
    border-bottom: 1px solid var(--line);
  }
  .page-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;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  }
  .page-hero .container { position: relative; z-index: 1; }
  .page-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 0.95; letter-spacing: 1px; color: #fff;
    text-transform: uppercase; margin-bottom: 18px;
  }
  .page-hero h1 .accent { color: var(--red); }
  .page-hero p.lede {
    color: var(--muted); font-size: clamp(16px, 1.6vw, 19px);
    max-width: 720px; margin: 0 auto 26px;
  }
  .page-hero .hero-actions { justify-content: center; }

  /* ===== BREADCRUMB ===== */
  .breadcrumb {
    padding: 100px 0 0;
    background: var(--black);
  }
  .breadcrumb ol {
    list-style: none; display: flex; gap: 10px; flex-wrap: wrap;
    padding: 0; font-size: 13px; color: var(--muted); letter-spacing: 0.5px;
  }
  .breadcrumb li { display: flex; align-items: center; gap: 10px; }
  .breadcrumb li + li::before { content: "›"; color: var(--red); }
  .breadcrumb a { color: var(--muted); text-decoration: none; }
  .breadcrumb a:hover { color: var(--red); }
  .breadcrumb li[aria-current="page"] { color: var(--text); }

  /* ===== CONTENT SECTIONS ===== */
  .prose h2 {
    font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 3.5vw, 40px);
    color: #fff; letter-spacing: 1px; line-height: 1; text-transform: uppercase;
    margin-bottom: 20px;
  }
  .prose h2 span { color: var(--red); }
  .prose h3 {
    font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 1px;
    color: #fff; margin: 24px 0 12px; text-transform: uppercase;
  }
  .prose p { color: var(--muted); font-size: 17px; margin-bottom: 18px; }
  .prose ul { list-style: none; padding: 0; margin-bottom: 18px; }
  .prose ul li {
    color: var(--text); padding-left: 26px; position: relative;
    margin-bottom: 10px; font-size: 16px;
  }
  .prose ul li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    color: var(--red); font-weight: 700;
  }

  /* ===== TWO-COL LAYOUT ===== */
  .two-col {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start;
  }
  @media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr; gap: 30px; }
  }

  /* ===== USE-CASE GRID ===== */
  .use-cases {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px; margin-top: 30px;
  }
  .use-case {
    background: var(--panel); border: 1px solid var(--line); border-radius: 8px;
    padding: 24px; transition: all .2s ease;
  }
  .use-case:hover { border-color: var(--red); transform: translateY(-4px); }
  .use-case-icon {
    width: 44px; height: 44px; border-radius: 8px;
    background: rgba(212,34,45,0.12); border: 1px solid rgba(212,34,45,0.3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
  }
  .use-case-icon svg { width: 22px; height: 22px; color: var(--red); }
  .use-case h4 {
    font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px;
    color: #fff; margin-bottom: 8px; text-transform: uppercase;
  }
  .use-case p { color: var(--muted); font-size: 14px; margin: 0; }

  /* ===== PROCESS STEPS ===== */
  .steps {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px; margin-top: 30px; counter-reset: step;
  }
  .step {
    position: relative; padding: 30px 24px 24px;
    background: var(--panel); border: 1px solid var(--line); border-radius: 8px;
    counter-increment: step;
  }
  .step::before {
    content: counter(step, decimal-leading-zero);
    position: absolute; top: -18px; left: 20px;
    font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--red);
    background: var(--ink); padding: 0 10px; letter-spacing: 1px;
    border: 1px solid var(--line); border-radius: 4px;
  }
  .step h4 {
    font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px;
    color: #fff; margin: 10px 0 8px; text-transform: uppercase;
  }
  .step p { color: var(--muted); font-size: 14px; margin: 0; }

  /* ===== COUNTY GRID ===== */
  .county-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px; margin-top: 30px;
  }
  .county-card {
    background: var(--panel); border: 1px solid var(--line); border-radius: 8px;
    padding: 24px; border-top: 4px solid var(--red);
  }
  .county-card h3 {
    font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 1px;
    color: #fff; margin: 0 0 14px; text-transform: uppercase;
  }
  .county-card ul { list-style: none; padding: 0; }
  .county-card li {
    color: var(--text); font-size: 15px; margin-bottom: 6px; padding-left: 18px;
    position: relative;
  }
  .county-card li::before {
    content: "•"; color: var(--red); position: absolute; left: 0;
  }

  /* ===== TRUST STRIP ===== */
  .trust-strip {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px; margin-top: 40px;
    padding: 32px; background: var(--panel);
    border: 1px solid var(--line); border-radius: 8px;
  }
  .trust-item { text-align: center; }
  .trust-item svg { width: 32px; height: 32px; color: var(--red); margin-bottom: 10px; }
  .trust-item strong { color: #fff; display: block; font-size: 15px; margin-bottom: 4px; letter-spacing: 0.5px; }
  .trust-item span { color: var(--muted); font-size: 13px; }

  /* ===== FAQ ===== */
  .faq { margin-top: 30px; }
  .faq-item {
    background: var(--panel); border: 1px solid var(--line); border-radius: 8px;
    padding: 22px 24px; margin-bottom: 12px;
  }
  .faq-item h4 {
    color: #fff; font-size: 17px; margin: 0 0 8px; font-weight: 600;
  }
  .faq-item p { color: var(--muted); font-size: 15px; margin: 0; }

  /* Active nav link */
  .nav-links a.active { color: var(--red); }
