/* =================================================================
   GROUND WORKS — SHARED STYLES (V3 — Rugged Trade)
   Carhartt × Snap-On × shop-bay door. Bone paper, oil black, brick red.
   No textures, just confident type, real photos, sharp edges.
================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Antonio:wght@600;700&family=Archivo:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600&display=swap');

/* ============================ TOKENS ============================ */
:root {
  /* surfaces — bone paper instead of pure white */
  --bg:         #F1ECE2;    /* warm bone paper */
  --bg-soft:    #E7E1D3;    /* manila card */
  --bg-tint:    #E7E1D3;
  --bg-warm:    #DFD8C8;    /* darker bone, like aged paper */
  --surface:    #FBF8F1;    /* slightly brighter card top */
  --surface-2:  #ECE6D8;
  --line:       #C9C0AA;    /* hairline on paper */
  --line-soft:  #DAD2BD;

  /* ink — oily black, slightly warm */
  --ink:        #141210;
  --ink-soft:   #2E2A24;
  --ink-mute:   #6C6557;
  --ink-quiet:  #A39A85;

  /* dark inverse — oily near-black */
  --ink-on-dark: #F1ECE2;
  --dark:       #141210;
  --dark-2:     #1C1916;
  --dark-3:     #28241D;

  /* accents — brick red, not fire engine */
  --accent:       #B92E1F;
  --accent-warm:  #B92E1F;
  --accent-deep:  #871D11;
  --accent-dark:  #5E1209;
  --red:          #B92E1F;
  --red-deep:     #871D11;
  --red-bright:   #D44430; /* for on-dark moments */
  --gold:         #C99023; /* burnished gold for stars */
  --hi-vis:       #E8A300; /* saved for one moment if needed */

  --maxw: 1320px;
  --maxw-narrow: 1100px;
  --gap-pad: clamp(20px, 4vw, 56px);

  --rhythm-eyebrow: 20px;
  --rhythm-h2: 28px;
  --rhythm-p: 20px;

  /* SHARP edges — minimal rounding */
  --r-sm: 0px;
  --r:    0px;
  --r-lg: 0px;
  --r-pill: 0px;

  --sec-y: 80px;
  --sec-y-lg: 120px;

  --ease: cubic-bezier(0.2, 0, 0, 1);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Fonts */
  --f-display: 'Oswald', 'Antonio', 'Impact', sans-serif;
  --f-body:    'Archivo', 'Inter', system-ui, -apple-system, sans-serif;
  --f-mono:    'JetBrains Mono', 'IBM Plex Mono', ui-monospace, Menlo, monospace;
}

/* ============================ RESET ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg { display: block; max-width: 100%; }
img { image-orientation: from-image; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; background: none; border: 0; outline: 0; }
::selection { background: var(--accent); color: #fff; }

/* ============================ TYPOGRAPHY ============================ */
.h-display, .h-h1, .h-h2, .h-h3 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--ink);
}
.h-display { font-size: clamp(48px, 7.5vw, 96px); max-width: 16ch; line-height: 0.92; }
.h-h1      { font-size: clamp(38px, 5.8vw, 72px); max-width: 18ch; line-height: 0.94; }
.h-h2      { font-size: clamp(30px, 4.2vw, 52px); max-width: 22ch; line-height: 0.96; }
.h-h3      { font-size: clamp(20px, 2.2vw, 24px); letter-spacing: 0; line-height: 1.18; max-width: 30ch; text-transform: none; font-weight: 600; }

/* Mono eyebrow — like a job-ticket label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "◆";
  font-size: 10px;
  line-height: 1;
  background: none;
  width: auto; height: auto;
  color: var(--accent);
}
.eyebrow.muted { color: var(--ink-mute); }
.eyebrow.muted::before { color: var(--ink-mute); }

.lede {
  font-size: clamp(17px, 1.45vw, 19px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 56ch;
  font-weight: 400;
}
.body  { font-size: 16px; color: var(--ink-soft); line-height: 1.6; }
.body-s { font-size: 14px; color: var(--ink-mute); line-height: 1.55; }
.accent-text { color: var(--accent); }
.red-text { color: var(--accent); }

/* ============================ LAYOUT ============================ */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gap-pad);
}
.container.narrow { max-width: var(--maxw-narrow); }
.section { padding: var(--sec-y) 0; position: relative; }
@media (min-width: 900px) { .section { padding: var(--sec-y-lg) 0; } }
.section.tight { padding: 56px 0; }
@media (min-width: 900px) { .section.tight { padding: 72px 0; } }

.bg-tint  { background: var(--bg-soft); }
.bg-warm  { background: var(--bg-warm); }
.bg-dark  { background: var(--dark); color: var(--ink-on-dark); }
.bg-dark .body, .bg-dark .lede { color: rgba(241,236,226,0.78); }
.bg-dark .h-display, .bg-dark .h-h1, .bg-dark .h-h2, .bg-dark .h-h3 { color: var(--ink-on-dark); }
.bg-dark .eyebrow { color: var(--red-bright); }
.bg-dark .eyebrow::before { color: var(--red-bright); }

.sec-head { margin-bottom: 56px; max-width: 720px; }
.sec-head .eyebrow { margin-bottom: var(--rhythm-eyebrow); }
.sec-head .h-h2 { margin-bottom: var(--rhythm-h2); }
.sec-head .body { font-size: 17px; line-height: 1.55; max-width: 58ch; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.center .h-h2,
.sec-head.center .body { margin-left: auto; margin-right: auto; }
@media (min-width: 900px) { .sec-head { margin-bottom: 80px; } }

.sec-head-row {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 48px;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .sec-head-row { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 48px; margin-bottom: 72px; }
}
.sec-head-row .left { max-width: 720px; }
.sec-head-row .left .eyebrow { margin-bottom: var(--rhythm-eyebrow); }
.sec-head-row .left .h-h2 { margin-bottom: 14px; }

/* ============================ BUTTONS — sharp, blocky ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 0;
  transition: background 160ms var(--ease),
              border-color 160ms var(--ease),
              color 160ms var(--ease),
              transform 80ms ease,
              box-shadow 160ms var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 14px; height: 14px; }
.btn-lg { padding: 19px 32px; font-size: 14px; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 4px 4px 0 0 var(--ink);
}
.btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 4px 4px 0 0 var(--accent);
}
.btn-dark:hover {
  background: #000;
  border-color: #000;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--accent);
}

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }

.btn-on-dark {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
  box-shadow: 4px 4px 0 0 var(--accent);
}
.btn-on-dark:hover {
  background: transparent;
  color: var(--bg);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--accent);
}

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-weight: 600; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 3px;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.link:hover { color: var(--accent); border-color: var(--accent); }
.link.on-dark { color: var(--bg); border-color: var(--bg); }
.link.on-dark:hover { color: var(--red-bright); border-color: var(--red-bright); }

/* ============================ TOPBAR (utility ribbon) ============================ */
.topbar {
  background: var(--ink);
  color: rgba(241,236,226,0.72);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--dark-2);
}
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 8px var(--gap-pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  text-transform: uppercase;
}
.topbar .left { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar .left .it { display: inline-flex; align-items: center; gap: 6px; }
.topbar .left .it svg { width: 11px; height: 11px; color: var(--red-bright); }
.topbar .right { display: none; gap: 22px; align-items: center; }
.topbar .right a:hover { color: var(--bg); }
@media (min-width: 768px) { .topbar .right { display: inline-flex; } }
.topbar .star { color: var(--gold); letter-spacing: 1px; }

/* ============================ NAV ============================ */
.nav-wrap {
  position: sticky; top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
  transition: box-shadow 220ms var(--ease);
}
.nav-wrap.scrolled,
nav.nav.scrolled {
  box-shadow: 0 6px 0 -4px rgba(20,18,16,0.18);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--gap-pad);
  display: flex; align-items: center; gap: 24px;
}
/* Stand-alone nav (no .nav-wrap parent — used on inner pages) */
nav.nav.full {
  position: sticky; top: 0;
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
  z-index: 100;
  justify-content: space-between;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
/* STENCIL PLATE LOGO MARK */
.logo-mark {
  width: 44px; height: 44px;
  background: var(--ink);
  border-radius: 0;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  /* corner notches — stamped plate */
  clip-path: polygon(
    6px 0, calc(100% - 6px) 0, 100% 6px, 100% calc(100% - 6px),
    calc(100% - 6px) 100%, 6px 100%, 0 calc(100% - 6px), 0 6px
  );
}
.logo-mark::before {
  content: "GW";
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--bg);
  letter-spacing: -0.02em;
  line-height: 1;
  /* stencil bridge */
  background: linear-gradient(
    to right,
    transparent 47%, var(--ink) 47%, var(--ink) 53%, transparent 53%
  );
  -webkit-background-clip: text;
  background-clip: text;
}
.logo-mark::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 5px;
  background: var(--accent);
}
.logo .wrap { display: flex; flex-direction: column; line-height: 1.05; }
.logo .nm,
.logo > .wrap > span:first-child {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.logo .sb,
.logo .sub {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  list-style: none;
  display: none;
  align-items: center;
  gap: 2px;
  margin-left: 24px;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 160ms var(--ease);
  position: relative;
}
.nav-links > li > a::after,
.nav-links > li > button::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease);
}
.nav-links > li > a:hover,
.nav-links > li > button:hover { color: var(--accent); }
.nav-links > li > a:hover::after,
.nav-links > li > button:hover::after,
.has-dropdown:focus-within .dd-trigger::after { transform: scaleX(1); }
.nav-links .dd-trigger svg { width: 10px; height: 10px; transition: transform 200ms var(--ease); color: var(--ink-mute); }
.has-dropdown:hover .dd-trigger svg,
.has-dropdown:focus-within .dd-trigger svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: -8px;
  list-style: none;
  background: var(--bg);
  border: 2px solid var(--ink);
  min-width: 380px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 0s linear 180ms;
  box-shadow: 6px 6px 0 0 var(--ink);
  z-index: 110;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 0s;
}
.dropdown li a {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background 160ms var(--ease), color 160ms var(--ease);
  border-left: 3px solid transparent;
}
.dropdown li a:hover { background: var(--bg-soft); color: var(--ink); border-left-color: var(--accent); }
.dropdown li a .n {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 11px;
  color: var(--accent);
  min-width: 24px;
  letter-spacing: 0.08em;
}
.dropdown li a .arrow { margin-left: auto; opacity: 0; color: var(--accent); transition: opacity 160ms var(--ease), transform 160ms var(--ease); }
.dropdown li a:hover .arrow { opacity: 1; transform: translateX(2px); }

.nav-actions {
  display: flex; align-items: center; gap: 10px;
  margin-left: auto;
}
.nav-call {
  display: none;
  align-items: center; gap: 10px;
  font-family: var(--f-body);
  font-size: 13px; font-weight: 700;
  color: var(--ink);
  transition: color 160ms var(--ease);
}
.nav-call:hover { color: var(--accent); }
.nav-call .ico {
  width: 36px; height: 36px;
  background: var(--accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-call .ico svg { width: 16px; height: 16px; }
.nav-call .num small {
  display: block;
  font-family: var(--f-mono);
  font-size: 9px; font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-call .num { font-family: var(--f-display); font-weight: 600; font-size: 17px; letter-spacing: 0.01em; }
@media (min-width: 880px) { .nav-call { display: inline-flex; } }
.nav-phone {
  display: none;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.nav-phone:hover { color: var(--accent); }
@media (min-width: 768px) { .nav-phone { display: inline-flex; } }
.nav-phone-icon-only { display: none; }

.nav-cta {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 160ms var(--ease), transform 80ms ease;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
  box-shadow: 3px 3px 0 0 var(--ink);
}
.nav-cta:hover { background: var(--accent-deep); transform: translate(-1px,-1px); box-shadow: 4px 4px 0 0 var(--ink); }
.nav-cta svg { width: 13px; height: 13px; }
.nav-cta .full-label { display: inline; }
.nav-cta .short-label { display: none; }
@media (max-width: 520px) {
  .nav-cta { padding: 11px 14px; font-size: 11px; }
  .nav-cta .full-label { display: none; }
  .nav-cta .short-label { display: inline; }
}

.nav-toggle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  color: var(--ink);
  background: transparent;
  border: 2px solid var(--ink);
  cursor: pointer;
}
.nav-toggle:hover { background: var(--ink); color: var(--bg); }
.nav-toggle svg { width: 18px; height: 18px; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile menu */
.mm {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 200;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
  display: flex; flex-direction: column; gap: 8px;
}
.mm.open { transform: translateX(0); }
@media (min-width: 1024px) { .mm { display: none; } }
.mm-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 8px;
}
.mm-close {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  border: 2px solid var(--ink);
  cursor: pointer;
  background: transparent;
}
.mm-close:hover { background: var(--ink); color: var(--bg); }
.mm-close svg { width: 18px; height: 18px; }
.mm ul { list-style: none; }
.mm > ul.mm-primary > li > a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  letter-spacing: -0.005em;
}
.mm-section-header {
  margin-top: 28px; padding-bottom: 10px;
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  border-bottom: 2px solid var(--ink);
}
.mm-section ul li a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0;
  font-size: 14px; color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
.mm-section ul li a:hover { color: var(--accent); }
.mm-section ul li a .n {
  font-family: var(--f-mono); font-weight: 600;
  color: var(--accent); min-width: 28px; font-size: 12px;
}
.mm-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

/* ============================ HOME HERO ============================ */
.hero {
  position: relative;
  background: var(--dark);
  color: var(--bg);
  overflow: hidden;
  padding: 88px var(--gap-pad) 88px;
  min-height: auto;
  text-align: left;
  display: block;
}
@media (min-width: 900px) { .hero { padding: 112px var(--gap-pad) 112px; } }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('gw-photos/8385fb779_IMG_1930.jpeg');
  background-color: #1A1714;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) contrast(1.08) saturate(0.6);
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,18,16,0.94) 0%, rgba(20,18,16,0.6) 50%, rgba(20,18,16,0.2) 100%),
    linear-gradient(180deg, rgba(20,18,16,0.55) 0%, rgba(20,18,16,0.92) 100%);
  z-index: 1;
}
/* Hazard tape bottom edge — optional minimal accent */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--accent);
  z-index: 2;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.25fr 0.75fr; gap: 72px; align-items: center; }
}
.hero-content { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; max-width: 760px; }
.hero-eyebrow,
.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 14px;
  background: rgba(241,236,226,0.06);
  border: 1px solid rgba(241,236,226,0.2);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241,236,226,0.95);
}
.hero-eyebrow .stars,
.hero-badge .stars { color: var(--gold); letter-spacing: 1.5px; font-size: 13px; }
.hero-eyebrow .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(241,236,226,0.4); }
.hero h1 { color: var(--bg); }
.hero h1 .red,
.hero h1 .red-text,
.hero h1 .accent-text { color: var(--red-bright); }
.hero-sub,
.hero-tagline,
.svc-hero-sub.on-dark {
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(241,236,226,0.84);
  line-height: 1.5;
  max-width: 48ch;
  font-weight: 400;
}
.hero-tagline {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(22px, 2.3vw, 30px);
  text-transform: uppercase;
  color: var(--red-bright);
  letter-spacing: 0.01em;
  line-height: 1;
}
.hero-bullets {
  display: flex; flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 6px;
}
.hero-bullets .b {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
}
.hero-bullets .b svg { width: 16px; height: 16px; color: var(--red-bright); flex-shrink: 0; }
.hero-cta {
  display: flex; flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.hero .breadcrumb a, .hero .breadcrumb .cur, .hero .breadcrumb .sep { color: rgba(241,236,226,0.7); }
.hero .breadcrumb .cur { color: var(--red-bright); }
.hero .breadcrumb a:hover { color: var(--bg); }
.hero .btn-outline { color: var(--bg); border-color: rgba(241,236,226,0.6); }
.hero .btn-outline:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.hero-proof {
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono);
  color: rgba(241,236,226,0.7);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-proof .stars { color: var(--gold); letter-spacing: 1px; font-size: 14px; }
.hero-proof strong { color: var(--bg); font-weight: 600; }

/* HERO QUOTE CARD */
.hf-card {
  position: relative;
  background: var(--bg);
  color: var(--ink);
  padding: 32px;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 0 var(--accent);
}
@media (min-width: 768px) { .hf-card { padding: 36px; } }
.hf-card .tag {
  position: absolute;
  top: -14px; left: 24px;
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.hf-card h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 0.96;
  margin-bottom: 6px;
}
.hf-card .sub {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 22px;
}
.hf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.hf-field label {
  font-family: var(--f-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.hf-field input, .hf-field select, .hf-field textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-family: var(--f-body);
  transition: border-color 160ms var(--ease), background 160ms var(--ease);
}
.hf-field input::placeholder { color: var(--ink-quiet); }
.hf-field input:focus, .hf-field select:focus, .hf-field textarea:focus {
  background: var(--bg);
  border-color: var(--ink);
}
.hf-field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%236C6557' d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat; background-position: right 10px center; background-size: 16px;
  padding-right: 34px;
}
.hf-submit {
  width: 100%;
  padding: 16px 20px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 8px;
  transition: background 160ms var(--ease);
}
.hf-submit:hover { background: var(--accent); }
.hf-submit svg { width: 14px; height: 14px; }
.hf-note {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 10px; color: var(--ink-mute);
  text-align: center; letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.hf-note svg { width: 11px; height: 11px; color: #2B7A4A; }

/* Hero stats strip — sits under hero */
.hero-stats {
  position: relative;
  z-index: 3;
  background: var(--ink);
  color: var(--bg);
  border-bottom: 1px solid var(--dark-2);
}
.hero-stats-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 28px var(--gap-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
}
@media (min-width: 700px) { .hero-stats-inner { grid-template-columns: repeat(4, 1fr); gap: 24px 40px; padding: 30px var(--gap-pad); } }
.hs-item { display: flex; align-items: center; gap: 14px; border-left: 2px solid var(--dark-3); padding-left: 18px; }
.hs-item:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 700px) { .hs-item { border-left: 0; padding-left: 0; } }
.hs-item .ico {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: rgba(212,68,48,0.16);
  color: var(--red-bright);
  display: inline-flex; align-items: center; justify-content: center;
}
.hs-item .ico svg { width: 18px; height: 18px; }
.hs-item .num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--bg);
}
.hs-item .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241,236,226,0.6);
  margin-top: 4px;
}

/* ============================ SERVICE HERO (inner pages) ============================ */
.svc-hero {
  position: relative;
  padding: 60px var(--gap-pad) 60px;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}
@media (min-width: 900px) { .svc-hero { padding: 80px var(--gap-pad) 80px; } }
.svc-hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .svc-hero-inner { grid-template-columns: 6fr 5fr; gap: 64px; }
}
.svc-hero-content { display: flex; flex-direction: column; gap: 20px; }
.svc-hero-content h1 { margin: 0; max-width: 18ch; }
.svc-hero-content .hero-tagline {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(22px, 2.5vw, 32px);
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.01em;
  line-height: 1;
}
.svc-hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 58ch;
}
.svc-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.svc-hero-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 0 var(--accent);
}
.svc-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.92);
}
/* Job ticket overlay top-left of photo */
.svc-hero-photo::before {
  content: "JOB · HAMPTON RDS";
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  padding: 5px 10px;
}

/* Breadcrumb — mono */
.breadcrumb {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--ink-quiet); }
.breadcrumb .cur { color: var(--accent); }

/* Stars row */
.stars-row {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  color: var(--ink-mute);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stars-row .stars { color: var(--gold); letter-spacing: 1px; font-size: 15px; }
.stars-row strong { color: var(--ink); font-weight: 600; }

/* ============================ TRUST STRIP ============================ */
.trust {
  border-top: 0;
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  padding: 26px var(--gap-pad);
}
.trust-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  align-items: center;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.trust-item {
  display: flex; align-items: center; gap: 14px;
  border-left: 2px solid var(--dark-3);
  padding-left: 20px;
}
.trust-item:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 768px) { .trust-item { border-left: 0; padding-left: 0; } }
.trust-item .ico {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--red-bright);
}
.trust-item .ico svg { width: 100%; height: 100%; }
.trust-item .lbl,
.trust-item div div:first-child {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--bg);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.trust-item .sub,
.trust-item div div:last-child {
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(241,236,226,0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 500;
}

/* ============================ FORMS ============================ */
.form-card {
  background: var(--bg);
  border: 2px solid var(--ink);
  border-top: 0;
  padding: 28px;
  position: relative;
  box-shadow: 8px 8px 0 0 var(--accent);
}
.form-card::before {
  content: "";
  position: absolute;
  left: -2px; right: -2px; top: -2px;
  height: 8px;
  background: var(--accent);
}
@media (min-width: 768px) { .form-card { padding: 40px; } }
.form-card h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  line-height: 0.95;
}
.form-card .form-sub,
.form-card .form-head .form-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 22px;
}
.form-card .form-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 22px; gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.form-card .form-head h3 { margin-bottom: 4px; }
.form-card .form-head .form-sub { margin-bottom: 0; }
.form-card .form-head .badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  flex-shrink: 0;
}
.form-card .form-head .badge svg { width: 11px; height: 11px; color: var(--red-bright); }

.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.form-field label .req { color: var(--accent); margin-left: 2px; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-family: var(--f-body);
  transition: border-color 160ms var(--ease), background 160ms var(--ease);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-quiet); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--ink);
  background: var(--bg);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%236C6557' d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 38px;
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.form-field.full { grid-column: 1 / -1; }
.form-submit {
  width: 100%;
  padding: 17px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: background 160ms var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  font-family: var(--f-body);
}
.form-submit:hover { background: var(--accent); }
.form-submit svg { width: 15px; height: 15px; }
.form-note {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-mute);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.form-note .lock { display: inline-flex; align-items: center; gap: 4px; }
.form-note .lock svg { width: 12px; height: 12px; color: #2B7A4A; }

/* ============================ HOME QUOTE GRID ============================ */
.quote { background: var(--bg); border-bottom: 0; }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .quote-grid { grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; }
}
.quote-left h2, .quote-left .h-h1 { margin-bottom: 24px; max-width: 13ch; }
.quote-left .lede { margin-bottom: 28px; }
.quote-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  padding: 0;
}
.quote-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.45;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.quote-points li::before {
  content: "✓";
  width: 22px;
  flex-shrink: 0;
  background: none;
  -webkit-mask: none;
  mask: none;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
  padding-left: 0;
}
.quote-points li:last-child { border-bottom: 0; }
.owner-quote {
  border-left: 4px solid var(--accent);
  padding: 6px 0 6px 20px;
  margin-top: 32px;
  background: var(--bg-soft);
  padding: 18px 20px 18px 22px;
  position: relative;
}
.owner-quote .q {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.owner-quote .attr {
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: 11px; color: var(--ink-mute);
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
}

/* ============================ HOME SERVICE TILES ============================ */
.services { background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid var(--ink);
  background: var(--ink);
}
@media (min-width: 700px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* Each service tile */
.service-tile, .svc {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transition: background 200ms var(--ease);
  text-decoration: none;
}
.service-tile:hover, .svc:hover { background: var(--surface); }
.service-tile .ph, .svc .ph {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--surface-2);
}
.service-tile .ph img, .svc .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.85);
  transition: filter 320ms var(--ease), transform 480ms var(--ease);
}
.service-tile:hover .ph img,
.svc:hover .ph img {
  filter: contrast(1.1) saturate(1);
  transform: scale(1.04);
}
.service-tile .ph::after, .svc .ph::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 35%;
  background: linear-gradient(180deg, transparent 0%, rgba(20,18,16,0.7) 100%);
}
/* job-ticket number on tile */
.service-tile .num,
.svc .ph .num,
.svc .num {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 5px 10px;
  text-transform: uppercase;
}
.service-tile .num::before,
.svc .ph .num::before {
  content: "JOB · ";
  color: var(--red-bright);
}

.service-tile .body-wrap,
.svc .bd {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.service-tile h3, .svc h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.service-tile p, .svc p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
}
.svc .more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.svc .more svg { width: 12px; height: 12px; transition: transform 200ms var(--ease); }
.svc:hover .more { color: var(--accent); border-color: var(--accent); }
.svc:hover .more svg { transform: translateX(3px); }

.services-foot {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: var(--ink);
  color: var(--bg);
  border: 2px solid var(--ink);
}
@media (min-width: 768px) {
  .services-foot { flex-direction: row; align-items: center; justify-content: space-between; padding: 24px 36px; }
}
.services-foot p, .services-foot .copy { display: flex; flex-direction: column; gap: 4px; max-width: 50ch; color: rgba(241,236,226,0.78); font-size: 15px; }
.services-foot p strong, .services-foot .copy strong {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 700;
  color: var(--bg); text-transform: uppercase;
  letter-spacing: -0.005em;
}
.services-foot .copy span { font-size: 14px; color: rgba(241,236,226,0.7); }
.services-foot .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 4px 4px 0 0 var(--bg);
}
.services-foot .btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  box-shadow: 6px 6px 0 0 var(--bg);
}

/* ============================ PROCESS — Work order tickets ============================ */
.process { background: var(--bg); }
.process-grid,
.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: step;
  border: 2px solid var(--ink);
}
@media (min-width: 800px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px) { .process-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .process-list { grid-template-columns: repeat(4, 1fr); } }

.step, .process-step {
  position: relative;
  background: var(--bg);
  padding: 32px 26px 28px;
  overflow: hidden;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step .pn { display: none; }  /* old ghost number — we use blockier marker */
.step .badge, .process-step::before {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.process-step::before {
  counter-increment: step;
  content: "STEP " counter(step, decimal-leading-zero);
  color: var(--accent);
  display: block;
  margin-bottom: 2px;
}
.step .badge .chip {
  width: 38px; height: 38px;
  background: var(--accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 700; font-size: 18px;
  line-height: 1;
}
.step .badge .lbl { color: var(--accent); }
.step h3, .process-step h3, .process-step h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.step p, .process-step p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 36ch;
}

/* ============================ SERVICE PAGE — OVERVIEW ============================ */
.overview { background: var(--bg); }
.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) { .overview-grid { grid-template-columns: 5fr 6fr; gap: 64px; align-items: start; } }
.includes-list, .for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  border: 2px solid var(--ink);
}
.includes-list li, .for-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  position: relative;
  border-left: 0;
}
.includes-list li:last-child, .for-list li:last-child { border-bottom: 0; }
.includes-list li::before {
  content: "";
  width: 14px; height: 14px;
  margin-top: 5px;
  background: var(--accent);
  flex-shrink: 0;
  display: block;
}
.includes-list li strong, .for-list li strong {
  font-family: var(--f-display);
  color: var(--ink);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  display: block;
  margin-bottom: 4px;
}

.overview-aside {
  background: var(--ink);
  color: var(--bg);
  border: 2px solid var(--ink);
  padding: 28px;
}
.overview-aside h3 {
  font-family: var(--f-display);
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--bg);
  font-weight: 700;
}
.overview-aside p { color: rgba(241,236,226,0.78); margin-bottom: 16px; }
.overview-aside p strong { color: var(--bg); }

/* ============================ SERVICE PAGE — SYMPTOMS ============================ */
.symptoms { background: var(--bg-soft); }
.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 12px;
  border: 2px solid var(--ink);
}
@media (min-width: 700px) { .symptoms-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .symptoms-grid { grid-template-columns: repeat(3, 1fr); } }
.symptom {
  background: var(--bg);
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 200ms var(--ease);
}
.symptom:hover { background: var(--surface); }
.symptom .ico {
  width: 36px; height: 36px;
  color: var(--accent);
  margin-bottom: 4px;
}
.symptom h4 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.005em;
}
.symptom p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }

/* ============================ SERVICE PAGE — GALLERY ============================ */
.svc-gallery { background: var(--bg); }
.svc-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 700px) { .svc-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-gallery-grid .g {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 4/3;
  border: 2px solid var(--ink);
}
.svc-gallery-grid .g img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.88);
  transition: filter 320ms var(--ease), transform 480ms var(--ease);
}
.svc-gallery-grid .g:hover img { filter: contrast(1.08) saturate(1); transform: scale(1.03); }
.svc-gallery-grid .g .cap {
  position: absolute;
  left: 0; bottom: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  padding: 9px 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  font-weight: 500;
}
.svc-gallery-grid .g .cap .city { color: var(--red-bright); }

/* ============================ HOME GALLERY ============================ */
.gallery { background: var(--bg); }
.gallery-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 700px) { .gallery-row { grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 240px; } }
@media (min-width: 1000px) { .gallery-row { grid-auto-rows: 280px; } }
.gallery-row .g {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  border: 2px solid var(--ink);
  aspect-ratio: 4/3;
}
@media (min-width: 700px) { .gallery-row .g { aspect-ratio: auto; } }
.gallery-row .g img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.88);
  transition: filter 320ms var(--ease), transform 480ms var(--ease);
}
.gallery-row .g:hover img { filter: contrast(1.08) saturate(1); transform: scale(1.03); }
.gallery-row .g::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,18,16,0.6) 100%);
  pointer-events: none;
}
.gallery-row .g .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  padding: 10px 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  font-weight: 500;
  z-index: 1;
}
.gallery-row .g .cap .city,
.gallery-row .g .cap .t .city { color: var(--red-bright); }
.gallery-row .g .cap .t { display: contents; }
.gallery-row .g.big { grid-row: span 2; }

/* ============================ REVIEWS — receipts ============================ */
.reviews { background: var(--bg-soft); }
.review-summary {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  padding: 24px 28px;
  background: var(--ink);
  color: var(--bg);
  margin-bottom: 36px;
  border: 2px solid var(--ink);
}
.review-summary .big {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--bg);
}
.review-summary .stars { color: var(--gold); font-size: 24px; letter-spacing: 3px; }
.review-summary .meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(241,236,226,0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex; flex-direction: column; gap: 4px;
}
.review-summary .meta strong {
  color: var(--bg); font-weight: 600;
  font-family: var(--f-display);
  font-size: 18px; letter-spacing: 0;
}
.review-summary .gg {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241,236,226,0.7);
  padding: 9px 14px;
  border: 1.5px solid rgba(241,236,226,0.25);
}
.review-summary .gg svg { width: 14px; height: 14px; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--bg);
  border: 2px solid var(--ink);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
  position: relative;
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--accent);
}
.review-card:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 0 var(--ink); }
.review-card .rs { color: var(--gold); letter-spacing: 2px; font-size: 15px; margin-top: 6px; }
.review-card .q {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
  font-style: normal;
  font-weight: 500;
}
.review-card .attr {
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card .attr strong {
  color: var(--ink);
  font-weight: 600;
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0;
}
.review-card .av {
  width: 36px; height: 36px;
  background: var(--accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.review-card .attr .nm {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.review-card .attr .ct { font-size: 10px; color: var(--ink-mute); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; font-weight: 500; }
.review-card .attr .src {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ink-mute);
}
.review-card .attr .src svg { width: 14px; height: 14px; }

/* ============================ FAQ ============================ */
.faq { background: var(--bg); }
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 920px; margin: 0 auto; border: 2px solid var(--ink); }
.faq-item {
  background: var(--bg);
  border-bottom: 1.5px solid var(--ink);
}
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--accent);
  font-weight: 700;
  transition: transform 200ms var(--ease);
  flex-shrink: 0;
  line-height: 0.5;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] { background: var(--surface); }
.faq-item .answer {
  padding: 0 26px 24px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.faq-item .answer p + p { margin-top: 12px; }

/* ============================ ABOUT ============================ */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 5fr 6fr; gap: 72px; }
}
.about-media { position: relative; }
.about-media .ph {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--surface-2);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 0 var(--accent);
}
.about-media .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.9);
}
.about-media .floating {
  position: absolute;
  right: -12px;
  bottom: 32px;
  background: var(--ink);
  color: var(--bg);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  border: 2px solid var(--ink);
  z-index: 2;
}
.about-media .floating .num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}
.about-media .floating .lbl {
  font-family: var(--f-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241,236,226,0.7);
  max-width: 12ch;
  line-height: 1.4;
}
.about-media .caption {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-copy .h-h2 { margin-bottom: 24px; max-width: 14ch; }
.about-copy p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 56ch;
}
.about-copy p strong { color: var(--ink); font-weight: 700; }
.about-stats {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-stat .num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1;
  color: var(--ink);
}
.about-stat .num .red-text,
.about-stat .num .accent-text { color: var(--accent); }
.about-stat .lbl {
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.4;
  font-weight: 500;
}

/* Pullquote */
.story-pullquote {
  margin: 36px 0;
  padding: 24px 0 24px 26px;
  border-left: 5px solid var(--accent);
  font-family: var(--f-display);
  font-size: clamp(26px, 3vw, 38px);
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
  max-width: 20ch;
  font-weight: 700;
}
.story-pullquote .accent-text { display: block; color: var(--accent); }

/* Why-choose-us tiles */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid var(--ink);
}
@media (min-width: 700px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: var(--bg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transition: background 200ms var(--ease);
}
.why-card:hover { background: var(--surface); }
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card .ico {
  width: 38px;
  height: 38px;
  color: var(--accent);
  margin-bottom: 8px;
}
.why-card .ico svg { width: 100%; height: 100%; }
.why-card h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.why-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

/* Related services tiles (about page) */
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid var(--ink);
}
@media (min-width: 600px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .related-grid { grid-template-columns: repeat(5, 1fr); } }
.related-card {
  background: var(--bg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transition: background 200ms var(--ease);
  text-decoration: none;
}
.related-card:hover { background: var(--surface); }
.related-card .num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.related-card h4 {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.related-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }
.related-card .more {
  margin-top: 4px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 2px;
}
.related-card:hover .more { color: var(--accent); border-color: var(--accent); }

/* ============================ AREAS / MAP ============================ */
.area, .map { background: var(--bg-soft); }
.area-grid, .map-grid {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg);
  overflow: hidden;
  border: 2px solid var(--ink);
}
@media (min-width: 900px) { .area-grid, .map-grid { grid-template-columns: 5fr 7fr; } }
.area-cities, .map-cities {
  padding: 32px;
  display: flex; flex-direction: column;
}
@media (min-width: 768px) { .area-cities, .map-cities { padding: 40px; } }
@media (min-width: 900px) {
  .area-cities, .map-cities { border-right: 2px solid var(--ink); }
}
.area-cities h3, .map-cities h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.area-cities .meta, .map-cities .meta {
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.city-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--line);
}
.city {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0;
}
.city::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--accent);
  flex-shrink: 0;
}
.area-note, .map-note {
  margin-top: auto; padding-top: 16px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.area-note strong, .map-note strong { color: var(--ink); }
.area-frame, .map-frame {
  position: relative;
  min-height: 380px;
  background: var(--bg-warm);
}
@media (min-width: 900px) { .area-frame, .map-frame { min-height: 500px; } }
.area-frame iframe, .map-frame iframe {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}

/* ============================ CTA BAND ============================ */
.cta-band {
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -10%;
  top: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(closest-side, rgba(185,46,31,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner, .cta-band-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px var(--gap-pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .cta-inner, .cta-band-inner { grid-template-columns: 1fr auto; padding: 88px var(--gap-pad); gap: 64px; }
}
.cta-text h2,
.cta-band-text h2 { color: var(--bg); margin-bottom: 14px; max-width: 16ch; }
.cta-text h2 .red-text,
.cta-text h2 .accent-text,
.cta-band-text h2 .red-text,
.cta-band-text h2 .accent-text { color: var(--red-bright); }
.cta-text p,
.cta-band-text p { font-size: 17px; color: rgba(241,236,226,0.78); max-width: 56ch; }
.cta-actions, .cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-actions .btn-primary,
.cta-band-actions .btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 4px 4px 0 0 var(--bg);
}
.cta-actions .btn-primary:hover,
.cta-band-actions .btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  box-shadow: 6px 6px 0 0 var(--bg);
}
.cta-actions .btn-outline,
.cta-band-actions .btn-outline {
  color: var(--bg);
  border-color: var(--bg);
}
.cta-actions .btn-outline:hover,
.cta-band-actions .btn-outline:hover {
  background: var(--bg);
  color: var(--ink);
}

/* ============================ FOOTER ============================ */
.footer {
  background: var(--dark-2);
  color: rgba(241,236,226,0.65);
  padding: 64px var(--gap-pad) 24px;
  border-top: 1px solid rgba(241,236,226,0.08);
  font-family: var(--f-body);
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }
@media (min-width: 1100px) { .footer-grid.f5 { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; } }
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red-bright);
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(241,236,226,0.12);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li {
  font-size: 14px;
  color: rgba(241,236,226,0.72);
  line-height: 1.4;
  transition: color 160ms var(--ease);
}
.footer-col a:hover { color: var(--bg); }
.footer-brand .logo .nm,
.footer-brand .logo > .wrap > span:first-child { color: var(--bg); }
.footer-brand .logo .sb,
.footer-brand .logo .sub { color: rgba(241,236,226,0.5); }
.footer-brand .logo-mark { background: var(--bg); }
.footer-brand .logo-mark::before {
  color: var(--ink);
  background: linear-gradient(
    to right,
    transparent 47%, var(--bg) 47%, var(--bg) 53%, transparent 53%
  );
  -webkit-background-clip: text;
  background-clip: text;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(241,236,226,0.65);
  max-width: 360px; margin-top: 18px;
  line-height: 1.55;
}
.biz-block {
  margin-top: 18px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: rgba(241,236,226,0.65);
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.biz-block .biz-line { display: block; }
.biz-block strong { color: var(--bg); font-weight: 600; }
.biz-block a:hover { color: var(--bg); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(241,236,226,0.1);
  display: flex; flex-direction: column; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241,236,226,0.5);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom .legal { display: flex; gap: 18px; }
.footer-bottom .legal a:hover { color: var(--bg); }

/* ============================ MOBILE STICKY CTA BAR ============================ */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--ink);
  color: var(--bg);
  display: none;
  border-top: 3px solid var(--accent);
}
@media (max-width: 720px) { .mobile-bar { display: flex; } }
.mobile-bar a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  font-family: var(--f-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-bar a.call { background: var(--accent); color: #fff; }
.mobile-bar a.quote { background: transparent; color: var(--bg); }
.mobile-bar a svg { width: 16px; height: 16px; }

/* ============================ MODAL ============================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(20,18,16,0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.modal-overlay[aria-hidden="false"] { display: flex; }
.modal-box {
  background: var(--bg);
  border: 2px solid var(--ink);
  padding: 32px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 12px 12px 0 0 var(--accent);
  margin: auto;
}
@media (min-width: 600px) { .modal-box { padding: 40px; } }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--ink);
}
.modal-close:hover { background: var(--ink); color: var(--bg); }
.modal-close svg { width: 16px; height: 16px; }
.modal-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 5px 12px;
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 12px;
}
.modal-title {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.96;
  margin-bottom: 6px;
}
.modal-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}

/* ============================ REVEAL ============================ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 70ms; }
.reveal.d2 { transition-delay: 140ms; }
.reveal.d3 { transition-delay: 210ms; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================ RESPONSIVE SHADOWS ============================ */
@media (max-width: 720px) {
  .btn-primary, .btn-dark, .btn-on-dark { box-shadow: 3px 3px 0 0 var(--ink); }
  .hf-card, .form-card, .svc-hero-photo, .about-media .ph, .modal-box {
    box-shadow: 5px 5px 0 0 var(--accent);
  }
}

/* Util */
.full-bleed { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
