/* ===========================================================
   SupplyFire — Fire Industry Supply
   Design system + global styles
   =========================================================== */

:root {
  /* Brand palette */
  --fire-red: #c1121f;
  --fire-red-dark: #8d0801;
  --ember: #f3722c;
  --amber: #f8961e;
  --charcoal: #1b1b1e;
  --charcoal-2: #26262b;
  --slate: #3a3a42;
  --ash: #6b6b76;
  --smoke: #f4f4f6;
  --paper: #ffffff;
  --line: #e5e5ea;

  --ok: #2a9d8f;

  --font: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Archivo", "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(27, 27, 30, 0.10);
  --shadow-lg: 0 20px 50px rgba(27, 27, 30, 0.18);
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }

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

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--smoke { background: var(--smoke); }
.section--dark { background: var(--charcoal); color: #fff; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--fire-red);
  margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--amber); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ash); font-size: 1.08rem; margin-top: 12px; }
.section--dark .section-head p { color: #c7c7cf; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--fire-red), var(--fire-red-dark));
  color: #fff;
  box-shadow: 0 6px 18px rgba(193, 18, 31, 0.32);
}
.btn--primary:hover { box-shadow: 0 10px 26px rgba(193, 18, 31, 0.42); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--charcoal); }
.btn--light { background: #fff; color: var(--charcoal); }
.btn--light:hover { background: var(--smoke); }
.btn--amber { background: var(--amber); color: var(--charcoal); }
.btn--amber:hover { background: var(--ember); color: var(--charcoal); }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 11px 18px; font-size: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 900; font-size: 1.3rem; letter-spacing: -0.03em; }
.brand-logo { height: 30px; width: auto; display: block; }
.footer-logo { height: 30px; width: auto; display: block; margin-bottom: 14px; }
.brand .flame { width: 30px; height: 30px; }
.brand span { color: var(--fire-red); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--slate);
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--smoke); color: var(--charcoal); }
.nav-links a.active { color: var(--fire-red); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 7px; }
.nav-phone svg { width: 16px; height: 16px; color: var(--fire-red); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: 0.25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(243, 114, 44, 0.22), transparent 60%),
    linear-gradient(160deg, var(--charcoal) 0%, #2a1416 55%, var(--fire-red-dark) 130%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 96px 0 104px;
}
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--amber); }
.hero p.lead { font-size: 1.18rem; color: #d9d9e0; margin: 22px 0 30px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 28px; margin-top: 42px; flex-wrap: wrap; }
.hero-trust div { font-size: 0.9rem; color: #c7c7cf; }
.hero-trust strong { display: block; font-size: 1.6rem; color: #fff; font-weight: 800; }

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 10px;
  backdrop-filter: blur(6px);
}
.hero-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  transition: transform 0.2s, background 0.2s;
}
.hero-tile:hover { transform: translateY(-3px); background: rgba(255,255,255,0.09); }
.hero-tile .ico { font-size: 1.6rem; margin-bottom: 10px; }
.hero-tile h4 { font-size: 1rem; margin-bottom: 4px; }
.hero-tile p { font-size: 0.82rem; color: #b5b5c0; margin: 0; }

/* ---------- Hero photo ---------- */
.hero-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; background: #2a1416;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-badge {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  background: rgba(27,27,30,0.78); backdrop-filter: blur(6px);
  color: #fff; font-weight: 700; font-size: 0.92rem;
  padding: 12px 16px; border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-photo-badge span { font-size: 1.2rem; }

/* ---------- Photo panel (image with overlay text) ---------- */
.photo-panel {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 380px; display: flex; box-shadow: var(--shadow-md);
}
.photo-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-panel-overlay {
  position: relative; z-index: 1; margin-top: auto; width: 100%;
  padding: 40px; color: #fff;
  background: linear-gradient(180deg, rgba(27,27,30,0) 0%, rgba(27,27,30,0.55) 35%, rgba(27,27,30,0.92) 100%);
}
.photo-panel-overlay h3 { font-size: 1.6rem; color: #fff; margin-bottom: 10px; }
.photo-panel-overlay p { color: #e4e4ea; margin-bottom: 18px; max-width: 460px; }

/* ---------- Logo / trust strip ---------- */
.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; padding-top: 22px; padding-bottom: 22px;
}
.trust-strip span { font-weight: 700; color: var(--ash); font-size: 0.92rem; letter-spacing: 0.02em; }
.trust-logos { display: flex; gap: 34px; flex-wrap: wrap; }
.trust-logos b { font-weight: 800; color: var(--slate); font-size: 1.05rem; opacity: 0.7; }

/* ---------- Feature cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  border-top: 3px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s, border-top-color 0.2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: var(--fire-red); }
.feature .ico {
  font-size: 1.5rem; line-height: 1;
  display: inline-flex; margin-bottom: 14px;
}
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--ash); font-size: 0.96rem; text-wrap: pretty; }

/* ---------- Category cards ---------- */
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  border: 1px solid var(--line);
  background: var(--charcoal);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,27,30,0.15) 0%, rgba(27,27,30,0.85) 100%);
  z-index: 1;
}
.cat-card .cat-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform 0.4s ease;
}
.cat-card:hover .cat-bg { transform: scale(1.06); }
.cat-card .cat-content { position: relative; z-index: 2; }
.cat-card .ico { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.cat-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.cat-card p { font-size: 0.86rem; color: #d9d9e0; }
.cat-card .cat-link { margin-top: 12px; font-weight: 700; font-size: 0.9rem; color: var(--amber); display: inline-flex; gap: 6px; }

/* ---------- Product catalog ---------- */
.catalog-layout { display: grid; grid-template-columns: 1fr; gap: 28px; }
.filters {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px;
}
.filter-btn {
  min-height: 44px; padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; font-weight: 600; font-size: 0.9rem; cursor: pointer;
  color: var(--slate); transition: all 0.15s;
}
.filter-btn:hover { border-color: var(--fire-red); color: var(--fire-red); }
.filter-btn.active { background: var(--fire-red); border-color: var(--fire-red); color: #fff; }

.product-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 26px;
}
.search-box {
  position: relative; flex: 1; min-width: 220px; max-width: 360px;
}
.search-box input {
  width: 100%; padding: 12px 14px 12px 42px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit;
}
.search-box input:focus { outline: none; border-color: var(--fire-red); }
.search-box svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--ash); }
.result-count { color: var(--ash); font-size: 0.9rem; font-weight: 600; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.product {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-thumb {
  height: 170px; display: grid; place-items: center; font-size: 3rem;
  background: linear-gradient(135deg, var(--smoke), #eceef2);
  position: relative;
}
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--fire-red); color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em;
}
.product-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fire-red); margin-bottom: 6px; }
.product h3 { font-size: 1.05rem; margin-bottom: 6px; }
.product p { font-size: 0.88rem; color: var(--ash); margin-bottom: 14px; flex: 1; }
.product-sku { font-size: 0.78rem; color: var(--ash); font-family: ui-monospace, monospace; margin-bottom: 14px; }
.product-foot { display: flex; gap: 10px; align-items: center; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--ash); grid-column: 1 / -1; }
.empty-state .ico { font-size: 2.5rem; margin-bottom: 12px; }

/* ---------- Product photo showcase (Protec range) ---------- */
.pgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; margin-bottom: 30px; }
.pcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pcard img { width: 100%; height: 190px; object-fit: contain; background: #fff; padding: 18px; }
.pcard .pname { padding: 12px 14px 16px; font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; border-top: 1px solid var(--line); }
.pcard .pname small { display: block; font-family: var(--font); font-weight: 500; font-size: 0.82rem; color: var(--ash); margin-top: 2px; }

/* ---------- Brand / supplier cards (Products page) ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.brand-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.brand-mark { font-family: var(--font-display); font-weight: 900; font-size: 1.7rem; letter-spacing: -0.02em; color: var(--charcoal); }
.brand-cat { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fire-red); margin: 8px 0 12px; }
.brand-card p { color: var(--ash); font-size: 0.95rem; flex: 1; margin-bottom: 20px; }
.brand-card .btn { align-self: flex-start; }
.brand-card .ext { font-size: 0.9em; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }
.step-num {
  counter-increment: step;
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--fire-red), var(--fire-red-dark));
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.1rem;
}
.step-num::before { content: counter(step); }
.step h3 { margin-bottom: 4px; }
.step p { color: var(--ash); font-size: 0.96rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(248,150,30,0.25), transparent 60%),
    linear-gradient(135deg, var(--fire-red-dark), var(--fire-red));
  color: #fff; border-radius: 20px; padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); margin-top: 8px; max-width: 520px; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 7px; }
.field label .req { color: var(--fire-red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-size: 0.96rem; font-family: inherit; background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--fire-red); box-shadow: 0 0 0 3px rgba(193,18,31,0.1); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--ash); margin-top: 6px; }
.form-success {
  display: none; background: rgba(42,157,143,0.1); border: 1px solid var(--ok);
  color: #1d6f64; padding: 16px 18px; border-radius: var(--radius-sm); font-weight: 600; margin-bottom: 20px;
}
.form-success.show { display: block; }

.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-list .ico {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(193,18,31,0.12), rgba(248,150,30,0.16)); font-size: 1.2rem;
}
.contact-list h4 { font-size: 0.95rem; margin-bottom: 2px; }
.contact-list a, .contact-list p { color: var(--ash); font-size: 0.95rem; }
.contact-list a:hover { color: var(--fire-red); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat strong { display: block; font-size: 2.6rem; font-weight: 800; color: var(--fire-red); line-height: 1; }
.section--dark .stat strong { color: var(--amber); }
.stat span { color: var(--ash); font-size: 0.92rem; font-weight: 600; }
.section--dark .stat span { color: #c7c7cf; }

/* ---------- About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img, .split .visual { border-radius: var(--radius); }
.value-list { list-style: none; margin-top: 22px; }
.value-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.value-list .check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--fire-red);
  color: #fff; display: grid; place-items: center; font-size: 0.8rem; font-weight: 800;
}
.value-list b { display: block; }
.value-list span { color: var(--ash); font-size: 0.92rem; }

.visual-panel {
  background: linear-gradient(160deg, var(--charcoal), #2a1416);
  border-radius: var(--radius); padding: 40px; color: #fff; min-height: 360px;
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.visual-panel .flame-big { font-size: 3.4rem; }
.visual-panel h3 { font-size: 1.6rem; color: #fff; }
.visual-panel p { color: #c7c7cf; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  background:
    radial-gradient(800px 400px at 85% -20%, rgba(243,114,44,0.2), transparent 60%),
    linear-gradient(160deg, var(--charcoal), #241317);
  color: #fff; padding: 64px 0 70px; text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #c7c7cf; max-width: 560px; margin: 14px auto 0; font-size: 1.08rem; }
.breadcrumb { font-size: 0.85rem; color: #9a9aa5; margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--amber); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #c7c7cf; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px; margin-bottom: 44px; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 0.92rem; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: #a8a8b3; font-size: 0.92rem; margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.86rem; color: #9a9aa6;
}
.social { display: flex; gap: 12px; }
.social a { width: 44px; height: 44px; border-radius: 8px; background: rgba(255,255,255,0.07); display: grid; place-items: center; color: #c7c7cf; transition: background 0.15s, color 0.15s; }
.social a:hover { background: var(--fire-red); color: #fff; }

/* ---------- Trust bar (accreditation row) ---------- */
.trust-bar { background: #fff; border-bottom: 1px solid var(--line); }
.trust-bar .container { display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; justify-content: center; padding: 20px 24px; }
.trust-bar .ti { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 0.92rem; color: var(--slate); }
.trust-bar .ti svg { width: 20px; height: 20px; color: var(--ok); flex-shrink: 0; }
.trust-bar .ti.strong { color: var(--fire-red); }

/* ---------- Service-area chip in hero ---------- */
.hero-area { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-size: 0.92rem; color: #d9d9e0; }
.hero-area svg { width: 16px; height: 16px; color: var(--amber); }

/* ---------- Who-we-service chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 12px 20px; font-weight: 600; font-size: 0.96rem; box-shadow: var(--shadow-sm); }
.chip .em { font-size: 1.15rem; }
.chip--link { transition: border-color 0.15s, color 0.15s, transform 0.15s; }
.chip--link:hover { border-color: var(--fire-red); color: var(--fire-red); transform: translateY(-2px); }
.areas { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.areas h3 { font-size: 1.05rem; margin-bottom: 16px; }

/* ---------- Quote form (wide) ---------- */
.quote-card { max-width: 820px; margin: 0 auto; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 10px; }
.check-opt { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; font-size: 0.94rem; transition: border-color 0.15s, background 0.15s; }
.check-opt:hover { border-color: var(--fire-red); }
.check-opt input { width: auto; margin-top: 3px; accent-color: var(--fire-red); flex-shrink: 0; }
.check-opt.has { border-color: var(--fire-red); background: rgba(193,18,31,0.04); }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; color: var(--ash); margin: 4px 0 20px; }
.consent input { width: auto; margin-top: 3px; accent-color: var(--fire-red); flex-shrink: 0; }
.field-error { border-color: var(--fire-red) !important; box-shadow: 0 0 0 3px rgba(193,18,31,0.1); }
.err-msg { color: var(--fire-red); font-size: 0.82rem; margin-top: 6px; display: none; }
.err-msg.show { display: block; }

/* ---------- Lead magnet (checklist capture) ----------
   Deliberately distinct from the red quote form: dark offer panel + light
   capture form, amber CTA. Lighter commitment, two fields only. */
.leadmagnet {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden; box-shadow: var(--shadow-md);
}
.leadmagnet-info {
  position: relative; padding: 46px 44px; color: #fff;
  background: radial-gradient(600px 300px at 110% -10%, rgba(248,150,30,0.22), transparent 60%),
              linear-gradient(160deg, var(--charcoal), #241317);
}
.leadmagnet-info h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.leadmagnet-info > p { color: #d0d0d8; font-size: 1rem; }
.lm-tag {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 16px;
  background: var(--amber); color: var(--charcoal); font-weight: 800;
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: 999px;
}
.leadmagnet-list { list-style: none; margin: 22px 0; display: grid; gap: 12px; }
.leadmagnet-list li { position: relative; padding-left: 30px; font-size: 0.95rem; color: #eaeaef; }
.leadmagnet-list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 20px; height: 20px; border-radius: 50%; background: var(--amber);
  color: var(--charcoal); font-weight: 900; font-size: 0.7rem;
  display: grid; place-items: center;
}
.lm-meta { font-size: 0.8rem; color: #a8a8b3; letter-spacing: 0.02em; }
.leadmagnet-form { padding: 46px 44px; display: flex; flex-direction: column; justify-content: center; }
.leadmagnet-form h3 { font-size: 1.2rem; margin-bottom: 18px; }
.leadmagnet-form .field { margin-bottom: 16px; }
.leadmagnet-form .consent { margin: 2px 0 18px; }

@media (max-width: 820px) {
  .leadmagnet { grid-template-columns: 1fr; }
}

/* ---------- FAQ (accessible native accordion) ---------- */
.faq { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 56px; align-items: start; }
.faq-aside { position: sticky; top: 96px; }
.faq-aside h2 { margin-bottom: 14px; }
.faq-aside p { color: var(--ash); margin-bottom: 22px; }
.faq-ask {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px;
  background: var(--smoke);
}
.faq-ask strong { display: block; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 4px; }
.faq-ask p { font-size: 0.92rem; margin-bottom: 14px; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] { border-color: var(--fire-red); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 18px;
  justify-content: space-between; padding: 20px 22px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--charcoal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--fire-red); }
.faq-chevron { flex-shrink: 0; width: 22px; height: 22px; color: var(--fire-red); transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer-inner { padding: 0 22px 22px; color: var(--ash); font-size: 0.98rem; max-width: 68ch; }
.faq-answer-inner a { color: var(--fire-red); font-weight: 600; }
.faq-item[open] .faq-answer-inner { animation: faqReveal 0.3s cubic-bezier(0.22,1,0.36,1); }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

@media (max-width: 860px) {
  .faq { grid-template-columns: 1fr; gap: 32px; }
  .faq-aside { position: static; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-chevron { transition: none; }
  .faq-item[open] .faq-answer-inner { animation: none; }
}

/* ---------- Focus visibility ---------- */
:focus-visible { outline: 3px solid var(--fire-red); outline-offset: 2px; border-radius: 3px; }
.hero :focus-visible, .section--dark :focus-visible, .page-hero :focus-visible, .site-footer :focus-visible { outline-color: var(--amber); }

/* ---------- Reveal animation ----------
   Default is VISIBLE so content never depends on JS (no-JS, crawlers, hidden
   tabs). The `.js` class (set by main.js before paint) opts into the reveal. */
.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 64px 0 72px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 72px; left: 0; right: 0; background: #fff;
    padding: 16px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .cta-band { padding: 40px 28px; }
  .hero-card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
