/* Apex Fabrication — design system (dark)
   Blue-black ground + brand blue (#2B5783 family, from the logo).
   Signature: the weld heat-tint hairline (silver→straw→copper→violet→blue). */

@font-face { font-family: 'Barlow'; font-weight: 400; font-display: swap; src: url('../fonts/barlow-400.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-weight: 500; font-display: swap; src: url('../fonts/barlow-500.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-weight: 600; font-display: swap; src: url('../fonts/barlow-600.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-weight: 700; font-display: swap; src: url('../fonts/barlow-700.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-weight: 600; font-display: swap; src: url('../fonts/barlow-cond-600.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-weight: 700; font-display: swap; src: url('../fonts/barlow-cond-700.woff2') format('woff2'); }

:root {
  --bg: #0A0E15;          /* page */
  --bg-2: #0F141D;        /* tinted sections */
  --deep: #070A0F;        /* header, footer, hero, bands */
  --card: #141B26;
  --card-hi: #1B2434;
  --ink: #E9EDF2;
  --muted: #9AA5B4;
  --faint: #5D6A7E;
  --border: #232D3C;
  --border-soft: #1A2230;
  --brand: #2B5783;
  --brand-deep: #1F4064;
  --brand-bright: #4C86BC;
  --link: #74A5D4;
  --brand-tint: #142639;
  --ember: #C94F37;
  --ember-hi: #E06B50;
  --heat: linear-gradient(90deg, #C6CAD1 0%, #E8C083 22%, #C87E52 45%, #8A5F7E 68%, #4A6E94 84%, #2B5783 100%);
  --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --body: 'Barlow', 'Segoe UI', Arial, sans-serif;
  --shadow-1: 0 1px 2px rgba(0, 0, 0, .35), 0 2px 10px rgba(0, 0, 0, .25);
  --shadow-2: 0 4px 10px rgba(0, 0, 0, .4), 0 14px 34px rgba(0, 0, 0, .45);
  --r: 6px;
  --w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 1.0625rem/1.6 var(--body);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); }
a:hover { color: var(--brand-bright); }
::selection { background: var(--brand); color: #fff; }
:focus-visible { outline: 3px solid var(--brand-bright); outline-offset: 2px; }

.skip { position: absolute; left: -999px; top: 0; background: var(--card); color: var(--ink); padding: .6rem 1rem; z-index: 100; }
.skip:focus { left: .5rem; top: .5rem; }

.wrap { max-width: var(--w); margin: 0 auto; padding: 0 1.25rem; }

/* ---------- type ---------- */
h1, h2, h3 { margin: 0 0 .5em; line-height: 1.08; color: #fff; }
h1, h2 { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .01em; }
h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.22rem; font-weight: 600; font-family: var(--body); }
p { margin: 0 0 1em; }
.lede { font-size: 1.18rem; color: var(--muted); max-width: 46em; }
.eyebrow {
  display: inline-block; font-weight: 600; font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; color: #6FA0CF; margin-bottom: .7rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-weight: 600; font-size: 1rem; text-decoration: none;
  padding: .78rem 1.5rem; border-radius: var(--r); border: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-solid { background: var(--brand); color: #fff; }
.btn-solid:hover { background: var(--brand-bright); color: #fff; }
.btn-ghost { border-color: #3A4658; color: var(--ink); background: var(--card); }
.btn-ghost:hover { border-color: var(--brand-bright); color: #fff; background: var(--card-hi); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

/* ---------- emergency strip ---------- */
.strip {
  background: var(--deep); color: var(--muted); font-size: .88rem;
  border-bottom: 1px solid var(--border-soft);
}
.strip .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 2.2rem; }
.strip b { color: #fff; font-weight: 600; }
.strip .dot { color: var(--ember-hi); }
.strip a { color: #fff; text-decoration: none; font-weight: 600; white-space: nowrap; }
.strip a:hover { text-decoration: underline; }
.strip .hours { color: var(--faint); }
.strip .strip-compact { display: none; }
@media (max-width: 640px) {
  .strip .hours, .strip .strip-msg, .strip .strip-call { display: none; }
  .strip .strip-compact {
    display: flex; align-items: center; justify-content: center; gap: .4rem;
    width: 100%; min-height: 44px;
  }
}

/* ---------- header ---------- */
.site-head { background: var(--deep); position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 0 var(--border-soft); }
.site-head .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 4.4rem; }
.logo { display: flex; align-items: center; flex: 0 0 auto; }
.logo img { width: 208px; height: auto; }
.nav { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.nav > a, .nav-drop > button {
  font: 600 .98rem/1 var(--body); color: #C7CFDA; text-decoration: none;
  padding: .9rem .8rem; background: none; border: 0; cursor: pointer; border-radius: 4px;
}
.nav > a:hover, .nav-drop > button:hover { color: #fff; }
.nav > a[aria-current="page"] { color: #fff; box-shadow: inset 0 -2px 0 var(--brand-bright); }
.nav-drop { position: relative; }
.nav-drop > button::after {
  content: ""; display: inline-block; width: .42em; height: .42em;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-30%); margin-left: .5em;
  transition: transform .18s ease; vertical-align: .12em;
}
.nav-drop.open > button::after { transform: rotate(225deg) translateY(-30%); }
.drop-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 17rem;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: var(--shadow-2); padding: .5rem; z-index: 60;
}
.nav-drop.open .drop-menu { display: block; }
.drop-menu a { display: block; padding: .55rem .8rem; text-decoration: none; color: var(--ink); border-radius: 4px; font-weight: 500; }
.drop-menu a.drop-label {
  display: block; padding: .6rem .8rem .25rem; font: 700 .82rem/1 var(--display);
  letter-spacing: .14em; text-transform: uppercase; color: #6FA0CF;
}
.drop-menu a.drop-label:hover { color: #fff; background: var(--brand-tint); }
.drop-menu a.drop-sub { padding-left: 1.6rem; }
.drop-menu a:hover { background: var(--brand-tint); color: #fff; }
.head-cta { margin-left: .5rem; white-space: nowrap; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 2px solid #3A4658; border-radius: 4px; color: #fff; font: 600 .95rem var(--body); padding: .7rem .9rem; cursor: pointer; }
.cart-link { display: none; position: relative; color: #C7CFDA; padding: .6rem; border-radius: 6px; flex: 0 0 auto; }
.cart-link.cart-on, .cart-link.has-items { display: inline-flex; }
.cart-link:hover { color: #fff; background: var(--card); }
.cart-link svg { width: 24px; height: 24px; }
.cart-count { position: absolute; top: -3px; right: -5px; background: var(--brand-bright); color: #fff; font: 700 .68rem/1 var(--body); min-width: 1.15rem; height: 1.15rem; border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 .28rem; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--deep); padding: .6rem 1rem 1.2rem; box-shadow: 0 16px 24px rgba(0,0,0,.5);
    border-bottom: 1px solid var(--border-soft);
  }
  .nav.open {
    display: flex;
    max-height: calc(100vh - 6.6rem);
    max-height: calc(100dvh - 6.6rem);
    overflow-y: auto; overscroll-behavior: contain;
  }
  .nav > a, .nav-drop > button { display: block; width: 100%; text-align: left; padding: .85rem .4rem; font-size: 1.05rem; }
  .drop-menu { position: static; box-shadow: none; background: transparent; border: 0; padding: 0 0 0 1rem; }
  .drop-menu a { color: var(--muted); }
  .drop-menu a:hover { background: var(--card); color: #fff; }
  .head-cta { margin: .8rem .4rem 0; text-align: center; }
}

/* ---------- hero ---------- */
.hero {
  background: var(--deep); color: #fff; position: relative; overflow: hidden;
  display: flex; align-items: center; min-height: min(92vh, 54rem);
}
.hero::after { content: ""; display: block; height: 3px; background: var(--heat); position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; }
.hero .wrap { width: 100%; display: grid; gap: 2.5rem; padding: 5rem 1.25rem; position: relative; z-index: 2; }
.hero-media { position: absolute; inset: 0; z-index: 1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: .55; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(7,10,15,.93) 0%, rgba(7,10,15,.72) 40%, rgba(7,10,15,.3) 72%, rgba(7,10,15,.12) 100%); }
@media (max-width: 700px) { .hero-media::after { background: rgba(7, 10, 15, .74); } }
.hero h1 { max-width: 13em; }
.hero-points { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.8rem; padding: 0; list-style: none; font-weight: 500; color: #D5DBE4; font-size: .98rem; }
.hero-points li::before { content: "▲ "; color: var(--brand-bright); font-size: .72em; }
.sub-hero { background: var(--deep); color: #fff; }
.sub-hero::after { content: ""; display: block; height: 3px; background: var(--heat); }
.sub-hero .wrap { padding: 3.2rem 1.25rem; }
.sub-hero .crumbs { margin-bottom: 1.2rem; }

/* ---------- breadcrumbs ---------- */
.crumbs { font-size: .88rem; color: var(--faint); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; margin: 0; padding: 0; }
.crumbs li + li::before { content: "/"; margin-right: .35rem; color: var(--faint); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--brand-bright); text-decoration: underline; }
.crumbs [aria-current] { color: var(--muted); }
.sku-line { margin: .2rem 0 .6rem; font: 600 .88rem/1.4 var(--body); color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }
.story-center { max-width: 56em; text-align: center; }
.story-center p { font-size: 1.08rem; }
.story-center .lede { font-size: 1.22rem; }
.story-trust { margin-top: 1.8rem; justify-content: center; }

/* ---------- sections ---------- */
.section { padding: 4rem 0; }
.section-dark { background: var(--deep); }
.section-tint { background: var(--bg-2); }
.section-head { max-width: 46em; margin-bottom: 2.2rem; }

/* ---------- cards & grids ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(21rem, 100%), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(13.5rem, 100%), 1fr)); }

.card {
  background: var(--card); border-radius: var(--r); box-shadow: var(--shadow-1);
  padding: 1.6rem; display: flex; flex-direction: column; gap: .4rem;
  border: 1px solid var(--border); border-top: 3px solid #2A3547;
  text-decoration: none; color: var(--ink);
  transition: box-shadow .15s, border-color .15s, transform .15s, background .15s;
}
a.card:hover { box-shadow: var(--shadow-2); border-top-color: var(--brand-bright); background: var(--card-hi); transform: translateY(-2px); color: var(--ink); }
.card h3 { margin: 0; color: #fff; }
.card p { margin: 0; color: var(--muted); font-size: .98rem; }
.card .more { color: var(--link); font-weight: 600; font-size: .95rem; margin-top: auto; padding-top: .6rem; }
.card-img { border-radius: var(--r) var(--r) 0 0; overflow: hidden; margin: -1.6rem -1.6rem 1rem; aspect-ratio: 16/10; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }

.svc-num { font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--faint); letter-spacing: .08em; }

/* ---------- service photo tiles (home) ---------- */
.svc-tile {
  position: relative; display: block; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 1 / 1; background: var(--card); border: 1px solid var(--border);
  box-shadow: var(--shadow-1); text-decoration: none;
  transition: box-shadow .15s, border-color .15s, transform .15s;
}
.svc-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.svc-tile::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(7,10,15,.30) 0%, rgba(7,10,15,.12) 40%, rgba(7,10,15,.88) 100%);
}
.svc-tile .tile-num {
  position: absolute; top: .85rem; left: 1rem; z-index: 2;
  font: 700 2.2rem/1 var(--display); color: #fff; opacity: .85; letter-spacing: .04em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}
.svc-tile h3 {
  position: absolute; left: 1rem; right: 1rem; bottom: .95rem; z-index: 2;
  margin: 0; color: #fff; font: 600 1.24rem/1.25 var(--body);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}
.svc-tile:hover { border-color: var(--brand-bright); box-shadow: var(--shadow-2); transform: translateY(-2px); }
.svc-tile:hover img { transform: scale(1.05); }

/* ---------- product placeholder cards (home) ---------- */
.ph-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; text-align: center; aspect-ratio: 4 / 3; border-radius: var(--r);
  border: 2px dashed #33405A; color: var(--faint); text-decoration: none;
  font-size: .95rem; transition: border-color .15s, color .15s, background .15s;
}
.ph-card b { color: var(--muted); }
.ph-card .ph-mark { font-size: 1.8rem; color: #33405A; line-height: 1; }
.ph-card:hover { border-color: var(--brand-bright); color: var(--muted); background: var(--brand-tint); }

/* ---------- header Google badge ---------- */
.g-badge {
  display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap;
  font: 600 .92rem/1 var(--body); color: #E9EDF2; text-decoration: none;
  padding: .55rem .85rem; border: 1px solid var(--border); border-radius: 99px;
}
.g-badge .g-star { color: #E8C083; }
.g-badge:hover { border-color: var(--brand-bright); color: #fff; }
@media (max-width: 1120px) and (min-width: 981px) { .g-badge { display: none; } }
@media (max-width: 980px) { .g-badge { justify-content: center; margin: .6rem .4rem 0; } }

/* ---------- why-choose band (home) ---------- */
.why-band { background: var(--bg-2); }
.why-inner { text-align: center; max-width: 56em; }
.why-inner h2 { max-width: 24em; margin-left: auto; margin-right: auto; }
.why-inner .lede { margin-left: auto; margin-right: auto; }
.why-btns { justify-content: center; }
.trust a { color: inherit; text-decoration: none; }
.trust a:hover { color: var(--brand-bright); text-decoration: underline; }

/* ---------- checklist ---------- */
.checks { list-style: none; padding: 0; margin: 1rem 0; display: grid; gap: .55rem; }
.checks li { padding-left: 1.7rem; position: relative; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: .95em; height: .5em;
  border-left: 3px solid var(--brand-bright); border-bottom: 3px solid var(--brand-bright); transform: rotate(-45deg);
}
.grid-2 .checks { margin: 0; }

/* ---------- split layout ---------- */
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1.1fr .9fr; } .split.flip > :first-child { order: 2; } }
.split figure { margin: 0; }
.split img, .split video { border-radius: var(--r); box-shadow: var(--shadow-2); width: 100%; height: auto; display: block; }

/* ---------- trust ---------- */
.trust { display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; align-items: center; }
.trust span { font-weight: 600; font-size: .95rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.trust span::before { content: "▲"; color: var(--brand-bright); font-size: .7em; }

/* ---------- FAQ ---------- */
.faq { max-width: 50em; }
.faq details { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--shadow-1); margin-bottom: .8rem; padding: 0 1.3rem; }
.faq summary { font-weight: 600; font-size: 1.05rem; color: #fff; padding: 1.05rem 0; cursor: pointer; list-style: none; position: relative; padding-right: 2rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .2rem; top: .85rem; font-size: 1.4rem; color: var(--brand-bright); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); padding-bottom: 1.1rem; margin: 0; }

/* ---------- product page (PDP) ---------- */
.cfg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1rem; margin: 1.3rem 0 1.6rem; }
.cfg-field span { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: .35rem; }
.cfg-field select { width: 100%; padding: .68rem .8rem; background: var(--card); color: var(--ink); border: 1px solid var(--border); border-radius: var(--r); font: inherit; }
.cfg-field select:focus { outline: 2px solid var(--brand-bright); outline-offset: 1px; }
.cfg-field select:disabled { color: var(--muted); border-style: dashed; cursor: not-allowed; opacity: 1; }
.product-fig img { width: 100%; aspect-ratio: 1 / 1; height: auto; object-fit: cover; }
.buy-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1rem; }
.stock-box { text-align: right; font-size: .78rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.stock-box b { display: block; font-size: .95rem; letter-spacing: 0; text-transform: none; color: #fff; margin-top: .15rem; }
.product-info { margin-top: 1.8rem; }
.product-info .checks { padding-bottom: 1.2rem; }
@media (max-width: 560px) { .cfg-grid { grid-template-columns: 1fr; } }
.dims-table { width: 100%; border-collapse: collapse; margin: 1.2rem 0 1.4rem; }
.dims-table th, .dims-table td { padding: .55rem .2rem; border-bottom: 1px solid var(--border); font-size: .95rem; }
.dims-table th { text-align: left; color: var(--muted); font-weight: 600; }
.dims-table td { text-align: right; color: #fff; font-weight: 600; white-space: nowrap; }
.dims-fig { margin: 0 0 1rem; }
.dims-fig img { width: 100%; height: auto; background: #fff; border-radius: var(--r); box-shadow: var(--shadow-1); padding: .6rem; }
.req-star, .req-star-inline { color: #E25656; font-style: normal; }
.cfg-field.missing select { border-color: #E25656; }
.cfg-custom { width: 100%; margin-top: .45rem; padding: .68rem .8rem; background: var(--card); color: var(--ink); border: 1px solid var(--border); border-radius: var(--r); font: inherit; }
.cfg-msg { color: #E25656; font-weight: 600; font-size: .95rem; margin: .8rem 0 0; text-align: right; }
.buy-btns { display: flex; gap: .7rem; flex-wrap: wrap; }
.price-line { margin-top: 1rem; display: flex; align-items: baseline; gap: .6rem; }
.price-line b { font-family: var(--display); font-weight: 700; font-size: 1.7rem; color: #fff; }
.price-line span { color: var(--muted); font-weight: 600; font-size: .95rem; }
.qty-row { display: flex; align-items: center; gap: .8rem; margin-top: .9rem; flex-wrap: wrap; }
.qty-label { font-size: .78rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.qty-hint { font-style: normal; text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--muted); display: block; font-size: .82rem; margin-top: .15rem; }
.qty-row.missing .qty-ctl { border-color: #E25656; }
.btn-cart { display: inline-flex; align-items: center; gap: .5rem; }
.btn-cart svg { width: 19px; height: 19px; }
@media (max-width: 560px) {
  .buy-row { flex-direction: column; align-items: stretch; }
  .stock-box { text-align: left; }
  .cfg-msg { text-align: left; }
  .buy-btns { flex-direction: column; }
  .buy-btns .btn, .cart-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ---------- cart page ---------- */
.cart-list { display: grid; gap: .9rem; margin-bottom: 1.4rem; }
.cart-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--shadow-1); padding: 1.1rem 1.3rem; display: grid; gap: .8rem; grid-template-columns: 1fr auto; align-items: start; }
.cart-item h3 { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 1.15rem; margin: 0 0 .4rem; }
.cart-item h3 a { color: #fff; text-decoration: none; }
.cart-item h3 a:hover { color: var(--brand-bright); }
.cart-opts { margin: 0; font-size: .92rem; color: var(--muted); display: grid; grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr)); gap: .15rem .9rem; }
.cart-opts b { color: var(--ink); font-weight: 600; }
.cart-side { display: flex; flex-direction: column; align-items: flex-end; gap: .6rem; }
.qty-ctl { display: flex; align-items: center; gap: .1rem; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.qty-ctl button { background: none; border: 0; color: #fff; font: 700 1.05rem var(--body); width: 2.75rem; height: 2.75rem; cursor: pointer; }
.qty-ctl button:hover { background: var(--card-hi); }
.qty-ctl button:focus-visible { outline: 3px solid var(--brand-bright); outline-offset: -3px; }
.qty-ctl span { min-width: 1.8rem; text-align: center; font-weight: 700; color: #fff; }
.cart-remove { background: none; border: 0; color: var(--muted); font: 600 .85rem var(--body); cursor: pointer; text-decoration: underline; padding: .55rem .3rem; }
.cart-remove:hover { color: #E25656; }
.cart-price { margin: .5rem 0 0; font-weight: 700; color: #fff; font-size: .95rem; }
.cart-subtotal { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 1.15rem; color: #fff; margin: 0 0 1.2rem; }
.cart-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.cart-sent { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--shadow-1); padding: 1.1rem 1.3rem; margin-bottom: 1.2rem; }
.cart-sent p { margin: 0 0 .8rem; color: var(--muted); }
.cart-sent b { color: #fff; }
.cart-sent textarea { width: 100%; background: var(--deep); color: var(--ink); border: 1px solid var(--border); border-radius: var(--r); font: .85rem/1.5 monospace; padding: .8rem; margin-bottom: .8rem; }
.mail-fallback { color: var(--muted); font-size: .92rem; }
@media (max-width: 560px) { .cart-item { grid-template-columns: 1fr; } .cart-side { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ---------- gallery ---------- */
.gallery { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fill, minmax(min(15rem, 100%), 1fr)); }
.gallery a { display: block; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-1); aspect-ratio: 4/3; background: var(--card); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s; }
.gallery a:hover img { transform: scale(1.03); }
.lightbox {
  position: fixed; inset: 0; background: rgba(4, 6, 10, .95); z-index: 90;
  display: none; align-items: center; justify-content: center; padding: 2.5rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; width: auto; height: auto; border-radius: var(--r); }
.lightbox button {
  position: absolute; top: 1rem; right: 1rem; background: none; border: 2px solid #3A4658;
  color: #fff; font-size: 1.3rem; line-height: 1; padding: .45rem .7rem; border-radius: 4px; cursor: pointer;
}
.lightbox button:hover { border-color: #fff; }

/* ---------- map facade ---------- */
.map-shell { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-1); border: 1px solid var(--border); background: var(--bg-2); position: relative; aspect-ratio: 16/8; }
.map-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-load {
  position: absolute; inset: 0; display: flex; flex-direction: column; gap: .8rem;
  align-items: center; justify-content: center; color: var(--muted); font-weight: 500;
  background: repeating-linear-gradient(45deg, #0F141D 0 14px, #0B0F16 14px 28px);
  border: 0; cursor: pointer; width: 100%; font-size: 1rem;
}
.map-load .btn { pointer-events: none; }

/* ---------- county service map ---------- */
.area-map { width: 100%; height: auto; display: block; }
.area-map .county { fill: #10151E; stroke: #26303F; stroke-width: .7; }
.area-map .county.svc { fill: #2E6096; stroke: #6FA0CF; }
.area-map .county.svc:hover { fill: var(--brand-bright); }
.area-map .county.home { fill: #5E97CC; }
.map-fig { margin: 0; background: var(--deep); border: 1px solid var(--border); border-radius: var(--r); padding: 1.4rem; box-shadow: var(--shadow-1); }
.map-legend { display: flex; flex-wrap: wrap; gap: 1rem 1.8rem; margin-top: 1.1rem; font-size: .9rem; color: var(--muted); }
.map-legend span { display: inline-flex; align-items: center; gap: .5rem; }
.map-legend i { width: .95rem; height: .95rem; border-radius: 3px; display: inline-block; }
.map-legend .l-svc { background: #2E6096; border: 1px solid #6FA0CF; }
.map-legend .l-home { background: #5E97CC; }
.map-legend .l-out { background: #10151E; border: 1px solid #26303F; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--deep); color: #fff; position: relative; }
.cta-band::before { content: ""; display: block; height: 3px; background: var(--heat); }
.cta-band .wrap { padding: 3.6rem 1.25rem; display: grid; gap: 1.2rem; justify-items: start; }
.cta-band h2 { margin: 0; max-width: 18em; }
.cta-band p { color: var(--muted); margin: 0; max-width: 42em; }
.cta-phone { font-family: var(--display); font-weight: 700; font-size: clamp(1.7rem, 4vw, 2.6rem); color: #fff; text-decoration: none; letter-spacing: .02em; }
.cta-phone:hover { color: #9DBBD8; }
.cta-phone-sub { margin: 0 0 -.6rem; color: var(--muted); font-weight: 600; }
.cta-phone-sub .dot { color: var(--ember-hi); }
.cta-phone-sub a { color: #fff; text-decoration: none; }
.cta-phone-sub a:hover { text-decoration: underline; }

/* ---------- forms ---------- */
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
label { font-weight: 600; font-size: .92rem; display: block; margin-bottom: .3rem; color: var(--ink); }
input, textarea, select {
  width: 100%; font: 400 1rem var(--body); color: var(--ink);
  padding: .7rem .85rem; border: 1.5px solid #2C3749; border-radius: var(--r); background: #0F1520;
}
input::placeholder, textarea::placeholder { color: var(--faint); }
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(76, 134, 188, .4); border-color: var(--brand-bright); }
select option { background: #0F1520; }
.req { color: var(--ember-hi); }
.form-note { font-size: .9rem; color: var(--faint); }

/* ---------- link columns / footer ---------- */

.site-foot { background: var(--deep); color: var(--muted); font-size: .95rem; }
.site-foot::before { content: ""; display: block; height: 3px; background: var(--heat); }
.foot-grid { display: grid; gap: 2.4rem; padding: 3.2rem 0 2.2rem; grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr)); }
.site-foot h3 { color: #fff; font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: 1.02rem; letter-spacing: .1em; }
.site-foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.site-foot a { color: var(--muted); text-decoration: none; }
.site-foot a:hover { color: #fff; text-decoration: underline; }
.foot-brand img { width: 220px; margin-bottom: 1rem; }
.foot-legal { border-top: 1px solid var(--border-soft); padding: 1.2rem 0 1.6rem; font-size: .85rem; color: var(--faint); display: flex; flex-wrap: wrap; gap: .6rem 2rem; justify-content: space-between; }
.foot-emergency { color: #fff; font-weight: 600; }
.foot-emergency .dot { color: var(--ember-hi); }

/* ---------- before/after ---------- */
.ba-fig { margin: 0; position: relative; }
.ba-fig img { border-radius: var(--r); width: 100%; }
.ba-tag {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  font: 700 .8rem/1 var(--display); letter-spacing: .14em; color: #fff;
  padding: .45rem .8rem; border-radius: 4px;
}
.ba-tag.before { background: var(--ember); }
.ba-tag.after { background: var(--brand); }
.ba-fig figcaption { font-size: .92rem; color: var(--muted); padding-top: .7rem; }

/* ---------- video intro (service page background video) ----------
   Video runs near-full brightness; a left-side scrim keeps the text
   readable while the right two-thirds stay clear to watch. */
.video-intro { position: relative; overflow: hidden; background: var(--deep); display: flex; align-items: center; min-height: min(88vh, 46rem); }
.video-intro .vi-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .95; }
.video-intro::after { content: ""; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(7,10,15,.94) 0%, rgba(7,10,15,.82) 32%, rgba(7,10,15,.35) 62%, rgba(7,10,15,.08) 100%); z-index: 1; }
.video-intro .wrap { position: relative; z-index: 2; width: 100%; padding-top: 4.5rem; padding-bottom: 4.5rem; }
.video-intro .vi-text { max-width: 34em; }
.video-intro p { color: #E2E7ED; }
.video-intro .lede { color: #EFF2F6; }
@media (max-width: 700px) {
  .video-intro::after { background: rgba(7, 10, 15, .78); }
}
@media (prefers-reduced-motion: reduce) { .video-intro video { display: none; } }

/* ---------- video gallery ---------- */
.video-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr)); }
.video-grid figure { margin: 0; }
.video-grid video { width: 100%; border-radius: var(--r); box-shadow: var(--shadow-1); background: var(--deep); display: block; }
.video-grid figcaption { font-size: .92rem; color: var(--muted); padding-top: .55rem; }

/* ---------- misc ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: .55rem; padding: 0; margin: 1rem 0 0; list-style: none; }
.pill-row a, .pill-row span {
  display: inline-block; font-size: .9rem; font-weight: 600; text-decoration: none;
  background: var(--brand-tint); color: #A9C4DE; border: 1px solid #22354C; border-radius: 99px; padding: .38rem .95rem;
}
.pill-row a:hover { background: var(--brand); color: #fff; }
.notice { background: var(--brand-tint); border-left: 4px solid var(--brand-bright); border-radius: 0 var(--r) var(--r) 0; padding: 1rem 1.3rem; margin: 1.4rem 0; }
.emergency-note { background: #241110; border-left-color: var(--ember-hi); }
.emergency-note b { color: var(--ember-hi); }
