/* ==========================================================================
   Inland Web Services — styles.css   (3.0 "Bold & Direct" redesign, 2026-07-14)
   One stylesheet shared by every page.

   Design language (chosen by Jimmie from three prototypes):
     • Dark charcoal ground (#0c0e13) with amber (#f5a524) as the single accent
     • Archivo headings + Inter body; uppercase button labels
     • Laptop-frame portfolio shots of our real demo builds
     • White form cards that pop off the dark ground
     • Honest numbers only — no invented client counts

   Sections:
     1. Design tokens          7. Laptop frames + work cards
     2. Base / reset           8. Forms (white cards on dark)
     3. Layout helpers         9. Footer
     4. Buttons               10. Page bits + responsive
     5. Top bar + header      11. Accessibility
     6. Hero + stats
   ========================================================================== */


/* ==========================================================================
   1. DESIGN TOKENS  — edit here to re-skin the whole site
   ========================================================================== */
:root {
  /* Dark ground */
  --bg:      #0c0e13;   /* page background */
  --bg2:     #12151d;   /* alternating band */
  --panel:   #171b25;   /* cards / raised surfaces */
  --panel-2: #1d2230;   /* hover / deeper panel */
  --line:    #252b3a;   /* hairline borders */

  /* Text on dark */
  --txt:     #eef1f7;
  --muted:   #9aa4b6;

  /* Amber — the single accent */
  --amber:   #f5a524;
  --amber-d: #d98f0f;
  --amber-glow: rgba(245,165,36,0.13);

  /* Light card interiors (forms) */
  --card-ink:  #1a2233;
  --card-mut:  #5a6578;
  --card-line: #d7dce7;

  /* Legacy aliases so older inline styles stay coherent */
  --brand:    var(--amber);
  --brand-d:  var(--amber-d);
  --ink-900:  var(--txt);
  --text:     var(--txt);
  --border:   var(--line);
  --bg-warm:  var(--bg2);
  --accent:   var(--amber);
  --accent-d: var(--amber-d);

  /* Type */
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head: "Archivo", var(--font-body);

  /* Shape */
  --radius: 14px;
  --radius-sm: 8px;
  --pill: 999px;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 28px 64px rgba(0, 0, 0, 0.5);
  --maxw: 1180px;
}


/* ==========================================================================
   2. BASE / RESET
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--txt);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }
svg { flex: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--txt);
  line-height: 1.1;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.lead { font-size: 1.13rem; color: var(--muted); }


/* ==========================================================================
   3. LAYOUT HELPERS
   ========================================================================== */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: 78px 0; }
.section--warm { background: var(--bg2); border-block: 1px solid var(--line); }
.section--ink {
  background:
    radial-gradient(800px 380px at 50% 120%, var(--amber-glow), transparent 60%),
    var(--bg2);
  border-block: 1px solid var(--line);
  color: var(--muted);
}
.section--ink h2, .section--ink h3 { color: var(--txt); }

.grid { display: grid; gap: 24px; }

.section-head { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }


/* ==========================================================================
   4. BUTTONS  (rectangular, uppercase, amber primary)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.06s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; }

/* Primary = amber on dark text */
.btn--primary { background: var(--amber); color: #151003; box-shadow: 0 10px 26px rgba(245,165,36,0.22); }
.btn--primary:hover { background: var(--amber-d); color: #151003; }

/* Dark = raised panel */
.btn--dark { background: var(--panel-2); color: var(--txt); border-color: var(--line); }
.btn--dark:hover { border-color: var(--amber); color: var(--amber); }

/* Outline / Ghost = quiet secondary on dark */
.btn--outline { background: transparent; color: var(--txt); border-color: var(--line); }
.btn--outline:hover { border-color: var(--amber); color: var(--amber); }
.btn--ghost { background: transparent; color: var(--txt); border-color: rgba(255,255,255,0.35); }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }

.btn--block { width: 100%; }
.btn--lg { padding: 17px 32px; font-size: 0.98rem; }

/* Row of buttons. .hero and .cta-band override alignment below; this base is
   what page-banner heroes (the location pages) rely on. */
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }


/* ==========================================================================
   5. TOP BAR + HEADER
   ========================================================================== */
.topbar {
  background: #07080c;
  color: var(--muted);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  gap: 12px;
}
.topbar a { color: var(--txt); font-weight: 600; white-space: nowrap; }
.topbar .tb-right { display: flex; gap: 18px; align-items: center; }
.topbar svg { width: 15px; height: 15px; vertical-align: -3px; margin-right: 4px; color: var(--amber); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12,14,19,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

/* Logo / wordmark */
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); color: var(--txt); }
.brand:hover { text-decoration: none; }
.brand-mark { display: block; width: 44px; height: 44px; flex: none; }
.brand-wm { display: flex; flex-direction: column; line-height: 1; }
.brand-wm .bw-1 { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.01em; color: var(--txt); }
.brand-wm .bw-2 { font-family: var(--font-head); font-weight: 700; font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--amber); margin-top: 3px; }
.brand-wm--light .bw-1 { color: var(--txt); }
.brand-wm--light .bw-2 { color: var(--amber); }

/* Nav */
.site-nav ul { list-style: none; display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
.site-nav a { display: block; padding: 9px 14px; border-radius: var(--radius-sm); color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.site-nav a:hover { color: var(--txt); background: var(--panel); text-decoration: none; }
.site-nav a.active { color: var(--amber); background: var(--panel); }

/* Services dropdown (accessible: opens on hover AND keyboard focus-within) */
.site-nav .has-submenu { position: relative; }
.nav-caret { font-size: 0.7em; opacity: 0.7; margin-left: 3px; }
.site-nav .submenu {
  position: absolute; top: 100%; left: 0; min-width: 214px;
  flex-direction: column; align-items: stretch; gap: 2px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 6px; margin: 0;
  box-shadow: 0 14px 34px rgba(0,0,0,0.42);
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s; z-index: 60;
}
.site-nav .has-submenu:hover > .submenu,
.site-nav .has-submenu:focus-within > .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.site-nav .submenu a { white-space: nowrap; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 11px 20px; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-sm); cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--txt); margin: 0 auto; transition: 0.2s ease; }


/* ==========================================================================
   6. HERO + STATS
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding: 72px 0 84px;
  background:
    radial-gradient(900px 500px at 80% -10%, var(--amber-glow), transparent 55%),
    radial-gradient(700px 400px at 0% 110%, rgba(245,165,36,0.05), transparent 55%),
    var(--bg);
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: 52px; align-items: center; min-width: 0; }
.hero-copy { max-width: 620px; }
.hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.7rem); font-weight: 900; max-width: 640px; }
.hero h1 .hl-gradient, .hero h1 em { font-style: normal; color: var(--amber); }
.hero .lead { max-width: 540px; font-size: clamp(1.02rem, 1.1vw + 0.8rem, 1.16rem); }
.hero .btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero .trust-row { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 28px; color: var(--muted); font-size: 0.9rem; }
.hero .trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.hero .trust-row span::before { content: "✓"; color: var(--amber); font-weight: 800; }

/* Kicker chip above the headline */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px; margin-bottom: 22px;
  border: 1px solid rgba(245,165,36,0.35);
  border-radius: 6px;
  background: transparent;
  color: var(--amber);
  font-family: var(--font-head); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.hero-badge .dot { display: none; }

/* Hero lead-form card (white, pops off the dark ground) */
.hero-showcase { min-width: 0; width: 100%; }
.hero-form-card {
  background: #fff; color: var(--card-ink);
  border-radius: var(--radius); padding: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  max-width: 460px; margin-left: auto;
}
.hero-form-card h2 { color: #10182b; font-size: 1.3rem; margin-bottom: 4px; letter-spacing: -0.01em; }
.hero-form-card > p { color: var(--card-mut); font-size: 0.9rem; margin: 0 0 6px; }
.hero-form-card .form-note { color: #8a94a8; text-align: center; margin-top: 12px; font-size: 0.78rem; }
.hero-form-card .btn { width: 100%; margin-top: 16px; }

/* Stats band */
.stats { display: grid; gap: 18px; }
.stat {
  text-align: center; background: transparent; border: 0; padding: 6px;
  display: block; box-shadow: none;
}
.stat b { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; color: var(--amber); line-height: 1.1; }
.stat span { font-size: 0.88rem; color: var(--muted); }
.stat .st-ico { display: none; }


/* ==========================================================================
   7. LAPTOP FRAMES + WORK CARDS + COMPONENTS
   ========================================================================== */
/* Thin screen bezel around demo screenshots (no fake laptop) */
.laptop { position: relative; transition: transform 0.22s ease; }
a .laptop:hover, .laptop:hover { transform: translateY(-6px); }
.laptop .screen {
  border: 5px solid #232a38;
  border-radius: 14px; overflow: hidden; background: #000;
  box-shadow: 0 16px 38px rgba(0,0,0,0.42);
}
.laptop .screen img { width: 100%; height: auto; aspect-ratio: 1280 / 800; object-fit: cover; object-position: top center; }
/* laptop base/hinge removed; kept as no-op so existing markup stays valid */
.laptop .base { display: none; }

/* Phone frame + side-by-side pair (services "mobile-first" visual) */
.phone-frame {
  overflow: hidden; margin: 0;
  border-radius: 20px; border: 5px solid #232a38; background: #232a38;
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
}
.phone-frame img { width: 100%; height: auto; display: block; border-radius: 14px; }
.phone-row { display: flex; gap: 20px; justify-content: center; align-items: flex-start; }
.phone-row .phone-frame { width: min(46%, 225px); }
.phone-row .phone-frame + .phone-frame { margin-top: 34px; }

/* Work figure captions */
.work-cap { margin-top: 16px; }
.work-cap b { font-family: var(--font-head); font-size: 1.02rem; color: var(--txt); display: block; }
.work-cap span { display: block; color: var(--muted); font-size: 0.86rem; }
.work-cap .go { color: var(--amber); font-weight: 600; font-size: 0.86rem; }
figure { margin: 0; }

/* Cards (dark panels) */
.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  box-shadow: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.card:hover { transform: translateY(-4px); border-color: #37405a; background: var(--panel-2); }
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--muted); }
.card p:last-child { margin-bottom: 0; }

/* Numbered card labels */
.card .no { font: 800 0.78rem var(--font-head); color: var(--amber); letter-spacing: 0.12em; }

/* Feature icon bubble */
.feat-icon {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--panel-2); border: 1px solid var(--line);
  color: var(--amber); margin-bottom: 14px;
}
.feat-icon.orange { background: var(--panel-2); border-color: var(--line); color: var(--amber); }
.feat-icon svg { width: 24px; height: 24px; }

/* Checklist */
.list { list-style: none; padding: 0; margin: 0; }
.list li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--txt); }
.list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--amber); font-weight: 800; font-size: 0.95rem;
}
.card .list li, .plan .list li { color: var(--muted); }

/* Process steps */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 58px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 2px;
  width: 42px; height: 42px; display: grid; place-items: center;
  background: var(--panel-2); color: var(--amber); border: 1px solid var(--line);
  font-family: var(--font-head); font-weight: 800; font-size: 0.85rem; border-radius: 10px;
}
.step h3 { font-size: 1.05rem; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* Pricing plans */
.plan { display: flex; flex-direction: column; }
.plan.featured { border-color: var(--amber); box-shadow: 0 0 0 1px var(--amber), 0 24px 54px rgba(0,0,0,0.45); }
.plan .tag {
  align-self: flex-start; background: var(--amber); color: #151003;
  font-family: var(--font-head);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 5px; margin-bottom: 12px;
}
.plan .tag--green { background: var(--panel-2); color: var(--amber); border: 1px solid var(--amber); }
.price { font-family: var(--font-head); font-weight: 800; color: var(--txt); font-size: 1.7rem; margin: 6px 0 2px; }
.price small { display: block; font-size: 0.95rem; color: var(--muted); font-weight: 600; }
.plan .list { margin: 16px 0 22px; }
.plan .btn { margin-top: auto; }

/* Quote / testimonial panel */
.quote {
  background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--amber);
  border-radius: 0 12px 12px 0; padding: 26px;
}
.quote .stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 8px; }
.quote p { font-style: italic; color: var(--txt); }
.quote .who { font-style: normal; font-weight: 700; color: var(--txt); margin: 10px 0 0; }
.quote .who small { display: block; font-weight: 500; color: var(--muted); }

/* Promise panel (About) */
.promise {
  position: relative; overflow: hidden;
  min-height: 240px; display: flex; flex-direction: column; justify-content: center;
  padding: 34px; border-radius: 12px;
  background: radial-gradient(500px 260px at 90% -10%, var(--amber-glow), transparent), var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
}
.promise .qmark { font-family: Georgia, serif; font-size: 4rem; line-height: 0.6; color: var(--amber); opacity: 0.7; margin-bottom: 10px; }
.promise p { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--txt); margin: 0 0 12px; }
.promise .sig { font-size: 0.9rem; color: var(--amber); }

/* Small notice tag */
.placeholder-tag {
  display: inline-block; font-family: var(--font-head); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--amber); background: transparent; border: 1px solid rgba(245,165,36,0.4);
  padding: 3px 10px; border-radius: 5px;
}

/* FAQ accordion */
.faq details { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq details:last-child { margin-bottom: 0; }
.faq summary {
  cursor: pointer; padding: 18px 20px; font-family: var(--font-head); font-weight: 700; color: var(--txt);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--amber); transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 20px 18px; color: var(--muted); }
.faq .faq-body a { color: var(--amber); }

/* Demo cards (Examples page) — laptop inside a plain figure, caption below */
.demo { background: transparent; border: 0; padding: 0; box-shadow: none; display: flex; flex-direction: column; }
.demo:hover { transform: none; background: transparent; }
.demo .demo-body { padding: 16px 4px 0; display: flex; flex-direction: column; flex: 1 1 auto; }
.demo .demo-body .btn { margin-top: auto; align-self: flex-start; }
.demo-thumb { display: block; }
/* The whole screenshot links to its demo. It duplicates the "View Example"
   button below it, so it is hidden from assistive tech and skipped in the tab
   order — the button is the accessible route. Mouse users get the obvious one. */
.demo-thumb-link { display: block; cursor: pointer; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band .btn-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* Two-column feature row */
.feature-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 34px; align-items: center; }

/* AI teaser band */
.next-band {
  display: flex; align-items: center; gap: 22px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; padding: 26px 28px;
}
.next-band p { color: var(--muted); }
.next-ico {
  flex: none; display: grid; place-items: center; width: 62px; height: 62px; border-radius: 12px;
  background: var(--panel-2); border: 1px solid var(--line); color: var(--amber);
}
.next-ico svg { width: 32px; height: 32px; }
.next-text { flex: 1; }
@media (max-width: 720px) { .next-band { flex-direction: column; text-align: center; } }


/* ==========================================================================
   8. FORMS  (white cards on the dark ground)
   ========================================================================== */
.form-card {
  background: #fff; color: var(--card-ink);
  border: 0; border-radius: var(--radius); padding: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.form-card h1, .form-card h2, .form-card h3 { color: #10182b; }
.form-card p { color: var(--card-mut); }
.form-grid { display: grid; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label { font-weight: 600; font-size: 0.86rem; color: #33415e; }
.field .req { color: #dc2626; }
.field .opt { color: #7a8699; font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: 12px 14px;
  border: 1px solid var(--card-line); border-radius: var(--radius-sm); background: #fff; color: var(--card-ink);
  width: 100%; min-width: 0; max-width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(245,165,36,0.25);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--muted); }
.form-card .form-note { color: #8a94a8; }
.form-success {
  display: none; background: var(--panel); border: 1px solid var(--amber); color: var(--txt);
  padding: 16px 18px; border-radius: 10px; font-weight: 600;
}


/* ==========================================================================
   9. FOOTER
   ========================================================================== */
.site-footer { background: #07080c; color: var(--muted); padding: 52px 0 26px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 30px; }
.site-footer h4 { color: var(--txt); font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 0.02em; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--amber); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 2px; }
.footer-links a { display: inline-block; padding: 6px 0; }
.footer-brand .brand { color: var(--txt); margin-bottom: 12px; }
.footer-brand .brand-mark { width: 40px; height: 40px; }

/* Social row — 44px tap targets, icon inherits link colour */
.footer-social { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; padding: 0; list-style: none; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 4px;
  border: 1px solid var(--line); background: var(--panel);
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.footer-social a:hover, .footer-social a:focus-visible {
  color: var(--amber); border-color: var(--amber); background: var(--panel-2);
}
.footer-social svg { width: 20px; height: 20px; fill: currentColor; display: block; }
.footer-bottom {
  border-top: 1px solid var(--line); margin-top: 34px; padding-top: 18px;
  font-size: 0.85rem; color: #6b7589; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between;
}
.footer-disclaimer { font-size: 0.8rem; color: #5d6678; margin-top: 10px; }


/* ==========================================================================
   10. PAGE BITS + RESPONSIVE
   ========================================================================== */
.page-banner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(800px 340px at 85% -30%, var(--amber-glow), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.page-banner h1 { color: var(--txt); }
.page-banner p.lead { margin: 0; max-width: 640px; }
.page-banner--center { text-align: center; }
.page-banner--center p.lead { margin-inline: auto; }
.mini-links { font-size: 0.88rem; color: var(--muted); margin-bottom: 10px; }
.mini-links a { color: var(--amber); }

/* Reassurance chips under a page-banner hero: same 28px rhythm as .btn-row. */
.page-banner .chip-row { margin-top: 28px; }

/* Answer-first intro paragraph directly under a page-banner hero (location
   pages). Padding matches .page-banner so the two read as one block. */
.answer-band { padding: 56px 0; }
.answer-band p { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.05rem; }

.map-embed { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); min-height: 260px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 260px; border: 0; display: block; }

/* Service-area chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 0.82rem; font-weight: 600; padding: 6px 14px; border-radius: 6px; background: var(--panel); border: 1px solid var(--line); color: var(--muted); }

/* Areas We Serve hierarchy */
.area-path {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin-top: 34px;
}
.area-path a {
  display: flex;
  flex-direction: column;
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--txt);
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.area-path a:hover { border-color: var(--amber); background: var(--panel-2); transform: translateY(-2px); }
.area-path a span,
.primary-location__fact span {
  color: var(--amber);
  font: 800 0.72rem var(--font-head);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.area-path a strong { margin-top: 4px; font: 800 1.05rem var(--font-head); }
.area-path a small { margin-top: 4px; color: var(--muted); }
.area-path__base { border-color: rgba(245,165,36,0.6) !important; box-shadow: inset 4px 0 0 var(--amber); }
.area-path__line { display: none; }
.area-path__branches { display: grid; gap: 12px; }

.primary-location { position: relative; overflow: hidden; }
.primary-location::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -260px;
  border-radius: 50%;
  background: rgba(245,165,36,0.07);
  pointer-events: none;
}
.primary-location__fact {
  display: grid;
  gap: 4px;
  margin: 24px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--amber);
  background: rgba(245,165,36,0.06);
}
.primary-location__fact strong { color: var(--txt); font-family: var(--font-head); }
.primary-location__fact small { color: var(--muted); }

.county-section { position: relative; }
.county-section--sb {
  background:
    radial-gradient(circle at 85% 15%, rgba(245,165,36,0.08), transparent 28%),
    var(--bg2);
}
.selection-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  max-width: 920px;
  margin: -8px auto 34px;
  padding: 20px 22px;
  border: 1px solid rgba(245,165,36,0.35);
  border-radius: 10px;
  background: rgba(245,165,36,0.05);
}
.selection-note__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--amber);
  color: #16120a;
  font: 900 0.8rem var(--font-head);
}
.selection-note h3 { margin: 0 0 4px; font-size: 1.05rem; }
.selection-note p { margin: 0; color: var(--muted); }

.location-grid { align-items: stretch; }
.location-grid--wide { max-width: 960px; margin-inline: auto; }
.location-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  overflow: hidden;
}
.location-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--amber);
  transform: scaleY(0.35);
  transform-origin: top;
  transition: transform 0.18s ease;
}
.location-card:hover::before { transform: scaleY(1); }
.location-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.location-card__number {
  color: var(--amber);
  font: 900 0.75rem var(--font-head);
  letter-spacing: 0.1em;
}
.location-card__focus {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}
.location-card h3 { font-size: 1.35rem; }
.location-card p { flex: 1; }
.location-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--txt);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}
.location-card__link span { color: var(--amber); font-size: 1.1rem; transition: transform 0.18s ease; }
.location-card__link:hover { color: var(--amber); }
.location-card__link:hover span { transform: translateX(4px); }
.location-card--wide { min-height: 245px; padding: 30px; }

/* ---- Desktop enhancements (mobile-first base above) ---- */
@media (min-width: 640px) {
  .cols-2 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .stats  { grid-template-columns: repeat(2, 1fr); }
  .area-path { grid-template-columns: minmax(210px, 0.7fr) 32px minmax(0, 1.3fr); align-items: stretch; }
  .area-path__line { display: block; align-self: center; height: 1px; background: linear-gradient(90deg, var(--amber), var(--line)); }
  .area-path__branches { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .section { padding: 88px 0; }
  .hero { padding: 84px 0 92px; }
  .hero-grid { grid-template-columns: 1.12fr 0.88fr; }
  .cols-3 { grid-template-columns: repeat(3, 1fr); }
  .stats  { grid-template-columns: repeat(4, 1fr); }
  .feature-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .feature-row.reverse .visual, .feature-row.reverse .laptop-wrap,
  .feature-row.reverse .promise, .feature-row.reverse .illus { order: 2; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
  .form-grid.two { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) { .cols-4 { grid-template-columns: repeat(4, 1fr); } }

/* Tighter vertical rhythm on phones */
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .hero { padding: 46px 0 56px; }
  .section-head { margin-bottom: 28px; }
  .hero .btn-row, .page-banner .btn-row { flex-direction: column; }
  .hero .btn-row .btn, .page-banner .btn-row .btn { width: 100%; min-height: 52px; }
  .hero-form-card { padding: 24px 20px; }
  .stat b { font-size: 1.7rem; }
  .selection-note { grid-template-columns: 1fr; }
  .selection-note__mark { width: 38px; height: 38px; }
  .location-card { min-height: 0; }
}

/* ---- Mobile nav (below 880px) ---- */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .site-nav {
    position: absolute; top: 72px; left: 0; right: 0; background: var(--bg2);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
  }
  .site-nav.open { max-height: 80vh; overflow-y: auto; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: 8px 12px 16px; gap: 2px; }
  .site-nav a { padding: 13px 14px; }
  #primary-nav .mobile-only { display: block; margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--line); }
  #primary-nav .mobile-only .audit-cta { background: var(--amber); color: #151003; text-align: center; border-radius: var(--radius-sm); font-weight: 700; }
  /* Services submenu: shown inline & indented inside the open mobile menu */
  .site-nav .has-submenu { position: static; }
  .site-nav .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent; min-width: 0;
    padding: 2px 0 4px 12px; margin: 2px 0 4px; border-left: 2px solid var(--line);
  }
  .nav-caret { display: none; }
}
.site-nav .mobile-only { display: none; }
@media (max-width: 600px) {
  .topbar .tb-left { display: none; }
  .topbar .container { min-height: 44px; }
  .topbar .tb-right { justify-content: flex-end; width: 100%; }
  .topbar .tb-right a { padding: 9px 2px; }
}
@media (max-width: 430px) { .topbar .tb-right a[href^="mailto"] { display: none; } }

@media (max-width: 420px) {
  .brand-mark { width: 38px; height: 38px; }
  .brand-wm .bw-1 { font-size: 1.14rem; }
  .brand-wm .bw-2 { font-size: 0.6rem; letter-spacing: 0.2em; }
}

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto; transition: none !important; } }


/* ==========================================================================
   11. ACCESSIBILITY
   ========================================================================== */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--amber); color: #151003; padding: 10px 16px; border-bottom-right-radius: 8px; font-family: var(--font-head); font-weight: 700; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
