/* ============================================================
   LONE RIVER CONSTRUCTION — Modesto, CA
   Blueprint Trust Builder × Valley Craftsman
   Vanilla CSS, no build step. HostGator-safe.
   ============================================================ */

/* ---------- Fonts (self-hosted, SIL OFL) ---------- */
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 500; font-display: swap; src: url('../assets/fonts/BarlowCondensed-500.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url('../assets/fonts/BarlowCondensed-600.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url('../assets/fonts/BarlowCondensed-700.woff2') format('woff2'); }
@font-face { font-family: 'Work Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/fonts/WorkSans-400.woff2') format('woff2'); }
@font-face { font-family: 'Work Sans'; font-style: italic; font-weight: 400; font-display: swap; src: url('../assets/fonts/WorkSans-400i.woff2') format('woff2'); }
@font-face { font-family: 'Work Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('../assets/fonts/WorkSans-500.woff2') format('woff2'); }
@font-face { font-family: 'Work Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('../assets/fonts/WorkSans-600.woff2') format('woff2'); }
@font-face { font-family: 'Work Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('../assets/fonts/WorkSans-700.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/fonts/IBMPlexMono-400.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('../assets/fonts/IBMPlexMono-500.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 600; font-display: swap; src: url('../assets/fonts/IBMPlexMono-600.woff2') format('woff2'); }

/* ---------- Tokens ---------- */
:root {
  /* Brand palette */
  --ink: #101010;
  --paper: #F7F3EA;
  --slate: #42525C;
  --river: #0F3A4A;
  --copper: #9CC73C;          /* now the logo green — name kept for plumbing */

  /* Derived */
  --paper-warm: #F1EADA;
  --river-deep: #0A2833;
  --copper-dark: #5C7A1E;     /* dark leaf green — text accents on paper */
  --copper-soft: #B7DB62;     /* light green — accents on dark sections */
  --green-mid: #7CA52C;       /* display-size green on paper (AA large) */
  --logo-green: #9CC73C;       /* logo accent, used only as a tiny "active" cue */
  --line: rgba(16, 16, 16, .16);
  --line-strong: rgba(16, 16, 16, .55);
  --line-light: rgba(247, 243, 234, .18);
  --text: #232323;
  --text-soft: #4d4a44;
  --text-light: #d9d4c7;
  --text-light-soft: rgba(217, 212, 199, .78);

  /* Type */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Work Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;

  /* Rhythm */
  --wrap: 1180px;
  --wrap-wide: 1340px;
  --pad: clamp(20px, 4.5vw, 48px);
  --sect: clamp(64px, 9vw, 128px);
  --radius: 14px;

  /* Blueprint grid (paper sections) */
  --grid-line: rgba(15, 58, 74, .065);
  --grid-line-bold: rgba(15, 58, 74, .10);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--river); }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Custom scrollbar ---------- */
html { scrollbar-width: thin; scrollbar-color: var(--copper) var(--ink); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--copper), var(--copper-dark)); border: 3px solid var(--ink); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--copper-soft); border-width: 2px; }

/* ---------- Grain overlay ---------- */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: .30;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Focus states ---------- */
:focus-visible { outline: 3px solid var(--copper); outline-offset: 3px; border-radius: 2px; }
.on-dark :focus-visible, .site-footer :focus-visible { outline-color: var(--copper-soft); }

.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 3000;
  background: var(--ink); color: var(--paper);
  padding: 10px 18px; font-family: var(--font-mono); font-size: 13px;
  text-decoration: none; border-radius: 0 0 8px 8px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ---------- Utility ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.wrap--wide { max-width: var(--wrap-wide); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.nowrap { white-space: nowrap; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--copper-dark); margin-bottom: 18px;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--copper); }
.on-dark .kicker { color: var(--copper-soft); }

.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .005em;
  color: var(--ink);
}
.on-dark .h-display { color: var(--paper); }
.sect-title { font-size: clamp(34px, 4.6vw, 56px); }
.sect-lede { max-width: 60ch; color: var(--text-soft); font-size: 17.5px; }
.on-dark .sect-lede { color: var(--text-light-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; font-size: 18px; line-height: 1;
  padding: 16px 28px 15px;
  border: 2px solid transparent; border-radius: 8px;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--copper {
  background: var(--copper); color: #fff;
  box-shadow: 0 3px 0 var(--copper-dark), 0 10px 24px -10px rgba(156, 199, 60, .5);
}
.btn--copper:hover { background: var(--copper-dark); box-shadow: 0 3px 0 #44591a, 0 12px 26px -10px rgba(156, 199, 60, .55); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.on-dark .btn--ghost { border-color: rgba(247,243,234,.4); color: var(--paper); }
.on-dark .btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--paper { background: var(--paper); color: var(--ink); box-shadow: 0 3px 0 rgba(0,0,0,.35); }
.btn--paper:hover { background: #fff; transform: translateY(-2px); }
.btn .btn-sub { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; opacity: .8; margin-top: 3px; }
.btn--tel { flex-direction: column; align-items: flex-start; gap: 2px; }

/* ============================================================
   HEADER — drafting-sheet title block
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.titleblock {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: stretch;
  max-width: var(--wrap-wide);
  margin-inline: auto;
  border-inline: 1px solid var(--line);
}
.tb-cell {
  position: relative;
  display: flex; align-items: center;
  padding: 14px 22px;
  border-left: 1px solid var(--line);
}
.tb-cell:first-child { border-left: none; }
.tb-label {
  position: absolute; top: 5px; left: 10px;
  font-family: var(--font-mono); font-size: 8.5px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(16,16,16,.42);
  pointer-events: none;
}
.tb-logo { padding-block: 10px; }
.tb-logo a { display: flex; align-items: center; text-decoration: none; }
.tb-logo img { width: 58px; height: 58px; display: block; transition: transform .3s ease; }
.tb-logo a:hover img { transform: rotate(18deg); }

.tb-nav { justify-content: center; }
.tb-nav ul { display: flex; gap: clamp(14px, 2.4vw, 34px); list-style: none; margin: 0; padding: 0; }
.tb-nav a {
  position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  padding: 6px 2px;
}
.tb-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 3px; background: var(--copper);
  transition: right .22s ease;
}
.tb-nav a:hover::after, .tb-nav a[aria-current="page"]::after { right: 0; }
.tb-nav a[aria-current="page"] { color: var(--copper-dark); }

.tb-phone { flex-direction: column; align-items: flex-start; justify-content: center; gap: 1px; padding-top: 20px; }
.tb-phone a {
  font-family: var(--font-display); font-weight: 700; font-size: 21px;
  letter-spacing: .04em; color: var(--ink); text-decoration: none;
  white-space: nowrap;
}
.tb-phone a:hover { color: var(--copper-dark); }
.tb-phone .tb-lic {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em;
  color: var(--slate); white-space: nowrap;
}
.tb-lic .lic-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--logo-green); margin-right: 4px;
  box-shadow: 0 0 0 2px rgba(156, 199, 60, .25);
}
.tb-cta { padding: 0; }
.tb-cta .btn {
  height: 100%; border-radius: 0; padding-inline: 30px;
  box-shadow: none;
}
.tb-cta .btn:hover { transform: none; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 10px; margin-left: auto;
}
.nav-toggle .bars { display: block; width: 26px; height: 2px; background: var(--ink); position: relative; transition: background .2s; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 26px; height: 2px; background: var(--ink);
  transition: transform .25s ease, top .25s ease;
}
.nav-toggle .bars::before { top: -8px; }
.nav-toggle .bars::after { top: 8px; }
.nav-open .nav-toggle .bars { background: transparent; }
.nav-open .nav-toggle .bars::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle .bars::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 920px) {
  .titleblock { grid-template-columns: auto 1fr auto; border-inline: none; }
  .tb-logo img { width: 46px; height: 46px; }
  .tb-nav {
    position: fixed; inset: 0; top: 0; z-index: -1;
    background: var(--river-deep);
    display: flex; flex-direction: column; justify-content: center;
    padding: 90px var(--pad) 40px;
    opacity: 0; visibility: hidden; transition: opacity .25s ease;
    border-left: none;
  }
  .nav-open .tb-nav { opacity: 1; visibility: visible; z-index: 950; }
  .tb-nav ul { flex-direction: column; gap: 6px; }
  .tb-nav a { color: var(--paper); font-size: clamp(34px, 9vw, 52px); display: block; padding: 8px 0; }
  .tb-nav li { border-bottom: 1px solid var(--line-light); counter-increment: navnum; display: flex; align-items: baseline; gap: 16px; }
  .tb-nav li::before {
    content: "0" counter(navnum);
    font-family: var(--font-mono); font-size: 13px; color: var(--copper-soft);
  }
  .tb-nav a[aria-current="page"] { color: var(--copper-soft); }
  .tb-nav .nav-drawer-foot { margin-top: 34px; font-family: var(--font-mono); font-size: 12px; color: var(--text-light-soft); letter-spacing: .08em; line-height: 2; }
  .tb-nav .nav-drawer-foot a { font-family: var(--font-mono); font-size: 12px; color: var(--copper-soft); padding: 0; letter-spacing: .08em; }
  .tb-phone { display: none; }
  .tb-cta { display: none; }
  .nav-toggle { display: block; position: relative; z-index: 960; }
  .nav-open .nav-toggle .bars, .nav-open .nav-toggle .bars::before, .nav-open .nav-toggle .bars::after { background: var(--paper); }
  .nav-open .nav-toggle .bars { background: transparent; }
  .tb-label { display: none; }
  .tb-cell { border-left: none; padding: 10px 14px; }
  body.nav-open { overflow: hidden; }
}
.nav-drawer-foot { display: none; }
@media (max-width: 920px) { .nav-drawer-foot { display: block; } }

/* Mobile sticky call bar */
.callbar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 890;
  background: var(--ink);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.28);
}
.callbar .btn { flex: 1; font-size: 16px; padding: 13px 10px 12px; }
@media (max-width: 700px) {
  .callbar { display: flex; }
  body { padding-bottom: 68px; }
}

/* ============================================================
   BLUEPRINT PAPER SECTIONS
   ============================================================ */
.bg-grid {
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--grid-line-bold) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line-bold) 1px, transparent 1px),
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 120px 120px, 120px 120px, 24px 24px, 24px 24px;
}
.bg-paper-warm { background-color: var(--paper-warm); }

/* Blend patterned backgrounds into flat divider colors at section edges */
.edge-fade-bottom, .edge-fade-top { position: relative; }
.edge-fade-bottom::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px;
  background: linear-gradient(to bottom, rgba(247,243,234,0), var(--paper));
  pointer-events: none; z-index: 1;
}
.edge-fade-top::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 90px;
  background: linear-gradient(to top, rgba(247,243,234,0), var(--paper));
  pointer-events: none; z-index: 1;
}
.edge-fade-bottom > .wrap, .edge-fade-top > .wrap { position: relative; z-index: 2; }
.on-dark { color: var(--text-light); }
.bg-river { background-color: var(--river); }
.bg-river-deep { background-color: var(--river-deep); }
.bg-ink { background-color: #141414; }

/* River contour lines for dark sections */
.contour-wrap { position: relative; overflow: hidden; }
.contour-wrap > .wrap { position: relative; z-index: 2; }
.contours {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; opacity: .5;
}
.contours svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ============================================================
   DIVIDERS — each custom, seam-proofed
   ============================================================ */
.divider { position: relative; line-height: 0; z-index: 5; }
.divider svg { display: block; width: 100%; height: auto; }
/* Overlap both neighbors by 2px to kill sub-pixel seams at any zoom */
.divider { margin-top: -2px; margin-bottom: -2px; }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 6vw, 84px) 0 clamp(64px, 8vw, 110px); }
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .85fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-kicker {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .1em;
  color: var(--slate); text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 18px; margin-bottom: 26px; background: rgba(247,243,234,.7);
}
.hero-kicker .lic-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--logo-green); box-shadow: 0 0 0 3px rgba(156,199,60,.22); }
.hero-kicker strong { font-weight: 600; color: var(--ink); }

/* Dimension-line treatment around H1 */
.dim { position: relative; display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--slate); }
.dim--top { margin-bottom: 14px; }
.dim--bottom { margin-top: 18px; }
.dim .dim-line {
  display: flex; align-items: center; gap: 12px;
}
.dim .dim-line::before, .dim .dim-line::after {
  content: ""; flex: 1; height: 1px; background: var(--line-strong);
  position: relative;
}
.dim-tick { position: relative; }
.dim .dim-line::before { box-shadow: -1px -4px 0 -0.5px var(--line-strong) inset; }
/* tick marks via bordered spans */
.dim .tick { width: 1px; height: 10px; background: var(--line-strong); flex: none; }

.hero-h1 {
  font-size: clamp(46px, 6.8vw, 98px);
  line-height: .92;
  letter-spacing: .01em;
}
.hero-h1 .accent { color: var(--copper); }
.hero-h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}
.hero-lede { max-width: 52ch; font-size: clamp(16.5px, 1.5vw, 19px); color: var(--text-soft); margin-top: 22px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; align-items: stretch; }

/* Hero plan-sheet panel */
.plan-panel {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(15,58,74,.03), rgba(15,58,74,.03)),
    var(--paper);
  box-shadow: 10px 10px 0 rgba(15, 58, 74, .12);
  padding: 26px 26px 96px;
}
.plan-panel::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px dashed rgba(15,58,74,.3); border-radius: 8px;
  pointer-events: none;
}
.plan-corner { position: absolute; width: 14px; height: 14px; border-color: var(--copper); border-style: solid; border-width: 0; }
.plan-corner.tl { top: -2px; left: -2px; border-top-width: 4px; border-left-width: 4px; }
.plan-corner.tr { top: -2px; right: -2px; border-top-width: 4px; border-right-width: 4px; }
.plan-corner.bl { bottom: -2px; left: -2px; border-bottom-width: 4px; border-left-width: 4px; }
.plan-corner.br { bottom: -2px; right: -2px; border-bottom-width: 4px; border-right-width: 4px; }
.plan-head {
  display: flex; justify-content: space-between; gap: 10px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--slate);
  border-bottom: 1px solid var(--line); padding-bottom: 10px; margin-bottom: 18px;
}
.plan-logo { display: flex; justify-content: center; padding: 6px 0 2px; }
.plan-logo img { width: min(240px, 58vw); height: auto; filter: drop-shadow(0 14px 22px rgba(16,16,16,.18)); }
.plan-facts { list-style: none; margin: 20px 0 0; padding: 14px 0 0; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.plan-facts li { display: flex; justify-content: space-between; gap: 14px; font-size: 13.5px; }
.plan-facts .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); padding-top: 2px; }
.plan-facts .v { font-weight: 600; color: var(--ink); text-align: right; }
.plan-facts .v a { color: inherit; text-decoration-color: var(--copper); }

/* Stamp seal */
.seal { position: absolute; right: -26px; bottom: -46px; width: 132px; height: 132px; transform: rotate(-12deg); filter: drop-shadow(0 6px 14px rgba(16,16,16,.25)); }
.seal svg { width: 100%; height: 100%; }
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .plan-panel { max-width: 460px; }
  .seal { right: -10px; }
}

/* ============================================================
   TRUST STRIP + STATS (dark river)
   ============================================================ */
.stats { padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 104px); }
.stats-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: clamp(30px, 4vw, 52px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; }
.stat {
  padding: clamp(22px, 3vw, 34px) clamp(18px, 2.4vw, 30px);
  border-left: 1px solid var(--line-light);
  position: relative;
  background: rgba(247,243,234,.02);
}
.stat:first-child { border-left: none; }
.stat .stat-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 3.6vw, 52px); line-height: 1;
  color: var(--paper); letter-spacing: .01em;
  display: block;
}
.stat .stat-num .unit { color: var(--copper-soft); }
.stat .stat-label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--copper-soft); display: block; margin-top: 10px; }
.stat .stat-note { font-size: 13.5px; color: var(--text-light-soft); margin-top: 8px; line-height: 1.5; }
.stat-index { position: absolute; top: 10px; right: 14px; font-family: var(--font-mono); font-size: 10px; color: rgba(247,243,234,.28); }
@media (max-width: 920px) { .stats-grid { grid-template-columns: 1fr 1fr; } .stat:nth-child(3) { border-left: none; } .stat:nth-child(n+3) { border-top: 1px solid var(--line-light); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } .stat { border-left: none !important; } .stat:nth-child(n+2) { border-top: 1px solid var(--line-light); } }

/* ============================================================
   SERVICES (home preview + services page)
   ============================================================ */
.services { padding: var(--sect) 0; position: relative; }
.svc-board {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: clamp(30px, 4vw, 50px);
}
.svc-card {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 240px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none; color: var(--text);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 2px 0 rgba(16,16,16,.9);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 7px 0 var(--copper), 0 20px 34px -18px rgba(16,16,16,.35); }
.svc-card .svc-num {
  position: absolute; top: 14px; left: 18px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; color: var(--copper-dark);
}
.svc-card .svc-glyph { position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; color: var(--slate); opacity: .9; transition: transform .25s ease, color .2s ease; }
.svc-card:hover .svc-glyph { transform: translateY(-3px) rotate(-4deg); color: var(--copper); }
.svc-card h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(22px, 2.2vw, 30px); letter-spacing: .02em; color: var(--ink); margin-bottom: 8px; }
.svc-card p { font-size: 14.5px; color: var(--text-soft); margin: 0; max-width: 42ch; }
.svc-card .svc-go {
  margin-top: 16px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--copper-dark); display: inline-flex; align-items: center; gap: 8px;
}
.svc-go::after { content: "→"; transition: transform .2s ease; }
.svc-card:hover .svc-go::after { transform: translateX(5px); }
.svc-card--feature { grid-column: span 5; grid-row: span 2; min-height: 420px; background: linear-gradient(160deg, rgba(15,58,74,.05), transparent 55%), var(--paper); }
.svc-sketch {
  position: absolute; top: 44px; left: 50%; transform: translateX(-50%);
  width: min(300px, 78%); opacity: .9;
  transition: transform .3s ease;
}
.svc-card--feature:hover .svc-sketch { transform: translateX(-50%) translateY(-4px); }
@media (max-width: 980px) { .svc-sketch { display: none; } .svc-card--feature { min-height: 260px; } }
.svc-card--wide { grid-column: span 7; }
.svc-card--half { grid-column: span 4; }
.svc-card--third { grid-column: span 3; }
@media (max-width: 980px) {
  .svc-board { grid-template-columns: 1fr 1fr; }
  .svc-card, .svc-card--feature, .svc-card--wide, .svc-card--half, .svc-card--third { grid-column: span 1; grid-row: auto; min-height: 210px; }
  .svc-card--feature { grid-column: span 2; min-height: 260px; }
}
@media (max-width: 560px) {
  .svc-board { grid-template-columns: 1fr; }
  .svc-card--feature { grid-column: span 1; }
}

/* Services page detail rows */
.svc-rows { display: grid; gap: 0; margin-top: clamp(28px, 4vw, 44px); counter-reset: svc; }
.svc-row {
  display: grid; grid-template-columns: 110px minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 44px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1.5px solid var(--ink);
  counter-increment: svc;
}
.svc-row:last-child { border-bottom: 1.5px solid var(--ink); }
.svc-row .svc-row-num {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 4.4vw, 64px);
  color: transparent; -webkit-text-stroke: 1.5px var(--slate); line-height: 1;
}
.svc-row .svc-row-num::before { content: "0" counter(svc); }
.svc-row h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(26px, 3vw, 38px); color: var(--ink); }
.svc-row .svc-row-tag { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--copper-dark); display: block; margin: 10px 0 12px; }
.svc-row p { color: var(--text-soft); font-size: 16px; }
.svc-includes { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; align-content: start; }
.svc-includes li { display: flex; gap: 12px; font-size: 15px; padding: 10px 14px; background: rgba(15,58,74,.05); border-radius: 8px; border-left: 3px solid var(--copper); }
.svc-includes li::before { content: "▸"; color: var(--copper-dark); font-size: 13px; padding-top: 2px; }
@media (max-width: 860px) {
  .svc-row { grid-template-columns: 1fr; gap: 14px; }
  .svc-row .svc-row-num { font-size: 34px; }
}

/* ============================================================
   PROCESS — river route timeline
   ============================================================ */
.process { padding: var(--sect) 0; position: relative; overflow: hidden; }
.process-flow { position: relative; margin-top: clamp(36px, 5vw, 64px); }
.river-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 120px; transform: translateX(-50%); pointer-events: none; }
.river-line svg { width: 100%; height: 100%; }
.p-step {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.p-step:last-child { margin-bottom: 0; }
.p-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: 6px 6px 0 rgba(15,58,74,.12);
  max-width: 470px;
  position: relative;
}
.p-step:nth-child(odd) .p-card { grid-column: 1; justify-self: end; margin-right: clamp(50px, 7vw, 90px); }
.p-step:nth-child(even) .p-card { grid-column: 2; justify-self: start; margin-left: clamp(50px, 7vw, 90px); }
.p-num {
  position: absolute; top: -18px; left: 22px;
  font-family: var(--font-mono); font-weight: 600; font-size: 13px; letter-spacing: .1em;
  background: var(--river); color: var(--paper);
  padding: 7px 14px; border-radius: 100px;
  box-shadow: 0 4px 10px rgba(15,58,74,.35);
}
.p-card h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 24px; color: var(--ink); margin: 6px 0 8px; }
.p-card p { font-size: 15px; color: var(--text-soft); margin: 0; }
@media (max-width: 860px) {
  .river-line { left: 26px; transform: none; width: 60px; }
  .p-step { grid-template-columns: 1fr; }
  .p-step:nth-child(odd) .p-card, .p-step:nth-child(even) .p-card {
    grid-column: 1; justify-self: stretch; margin: 0 0 0 64px; max-width: none;
  }
}

/* ============================================================
   OWNER / ABOUT teaser (dark ink)
   ============================================================ */
.owner { padding: var(--sect) 0; position: relative; overflow: hidden; }
.owner-grid { display: grid; grid-template-columns: minmax(280px, .9fr) 1.2fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.owner-plate {
  position: relative;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(26px, 3.4vw, 40px);
  background: linear-gradient(160deg, rgba(15,58,74,.5), rgba(16,16,16,.2));
}
.owner-plate .op-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--copper-soft); }
.owner-plate .op-name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(30px, 3.4vw, 44px); color: var(--paper); margin: 8px 0 4px; }
.owner-plate .op-role { color: var(--text-light-soft); font-size: 15px; margin-bottom: 18px; }
.owner-plate dl { margin: 0; display: grid; gap: 10px; border-top: 1px solid var(--line-light); padding-top: 18px; }
.owner-plate .op-fact { display: flex; justify-content: space-between; gap: 12px; }
.owner-plate dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(217,212,199,.6); }
.owner-plate dd { margin: 0; font-weight: 600; color: var(--paper); font-size: 14px; text-align: right; }
.owner-copy h2 { margin-bottom: 18px; }
.owner-copy p { color: var(--text-light-soft); font-size: 16.5px; max-width: 58ch; }
.owner-sign { display: flex; align-items: center; gap: 16px; margin-top: 26px; }
.owner-sign img { width: 62px; height: 62px; }
.owner-sign .os-txt { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--copper-soft); line-height: 1.7; }
@media (max-width: 860px) { .owner-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--sect) 0; }
.faq-cols { display: grid; grid-template-columns: minmax(260px, .8fr) 1.4fr; gap: clamp(28px, 5vw, 70px); margin-top: 8px; }
.faq-side { position: sticky; top: 120px; align-self: start; }
.faq-side .faq-callout {
  margin-top: 26px; border: 1.5px solid var(--ink); border-radius: var(--radius);
  padding: 22px; background: var(--paper);
  box-shadow: 6px 6px 0 rgba(156,199,60,.3);
}
.faq-callout .fc-t { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 21px; color: var(--ink); }
.faq-callout p { font-size: 14px; color: var(--text-soft); margin: 8px 0 14px; }
.faq-list { display: grid; gap: 12px; }
details.faq-item {
  border: 1.5px solid var(--ink); border-radius: 10px;
  background: var(--paper);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
details.faq-item[open] { box-shadow: 5px 5px 0 rgba(15,58,74,.16); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: 19px; letter-spacing: .03em; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .fq-idx { font-family: var(--font-mono); font-size: 11px; color: var(--copper-dark); letter-spacing: .1em; flex: none; padding-top: 2px; }
.faq-item summary .fq-mark {
  margin-left: auto; flex: none;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 15px; line-height: 1;
  transition: transform .25s ease, background .2s, color .2s;
}
.faq-item[open] summary .fq-mark { transform: rotate(45deg); background: var(--copper); border-color: var(--copper); color: #fff; }
.faq-item .fq-body { padding: 0 20px 20px 20px; color: var(--text-soft); font-size: 15.5px; }
.faq-item .fq-body a { color: var(--copper-dark); font-weight: 600; }
@media (max-width: 860px) { .faq-cols { grid-template-columns: 1fr; } .faq-side { position: static; } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { position: relative; padding: clamp(70px, 9vw, 130px) 0; overflow: hidden; }
.cta-inner { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; }
.cta-banner .h-display { font-size: clamp(38px, 6vw, 76px); max-width: 18ch; }
.cta-banner .cta-sub { color: var(--text-light-soft); max-width: 52ch; margin-top: 16px; font-size: 17px; }
.cta-banner .hero-ctas { justify-content: center; }
.cta-lic { margin-top: 30px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(217,212,199,.55); }

/* ============================================================
   FOOTER — end-of-drawing sheet
   ============================================================ */
.site-footer { position: relative; background: var(--ink); color: var(--text-light); overflow: hidden; }
.foot-marquee {
  border-bottom: 1px solid rgba(247,243,234,.12);
  padding: 18px 0; white-space: nowrap; overflow: hidden;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(20px, 2.4vw, 30px); letter-spacing: .12em;
  color: rgba(247,243,234,.16);
  user-select: none;
}
.foot-marquee .mq-track { display: inline-flex; gap: 3em; padding-right: 3em; animation: mq 36s linear infinite; }
@keyframes mq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .foot-marquee .mq-track { animation: none; } }
.foot-marquee .mq-sep { color: var(--copper); }

.foot-main {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(280px, 1.2fr) 1fr 1fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(48px, 6vw, 80px) 0 clamp(36px, 5vw, 60px);
}
.foot-brand img { width: 108px; height: 108px; margin-bottom: 18px; }
.foot-brand .fb-name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 26px; color: var(--paper); line-height: 1.1; }
.foot-brand .fb-name span { color: var(--copper-soft); }
.foot-brand p { font-size: 14px; color: rgba(217,212,199,.65); margin-top: 12px; max-width: 34ch; }
.foot-h { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--copper-soft); margin-bottom: 16px; display: block; }
.foot-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot-nav a { color: var(--text-light); text-decoration: none; font-size: 15px; }
.foot-nav a:hover { color: var(--copper-soft); text-decoration: underline; text-underline-offset: 4px; }
.foot-contact { font-style: normal; display: grid; gap: 10px; font-size: 15px; }
.foot-contact a { color: var(--paper); text-decoration: none; font-weight: 600; }
.foot-contact a:hover { color: var(--copper-soft); }
.foot-contact .fc-tel { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: .03em; }
.lic-plate {
  border: 1px solid rgba(247,243,234,.2); border-radius: 10px;
  padding: 16px 18px; margin-top: 6px;
  font-family: var(--font-mono); font-size: 12px; line-height: 1.9; letter-spacing: .05em;
  color: rgba(217,212,199,.8);
  background: rgba(15,58,74,.25);
}
.lic-plate .lic-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--logo-green); margin-right: 6px; box-shadow: 0 0 0 2px rgba(156,199,60,.2); }
.lic-plate a { color: var(--copper-soft); }
.foot-bottom {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(247,243,234,.12);
  padding: 20px 0 26px;
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em;
  color: rgba(217,212,199,.5);
}
.foot-bottom a { color: rgba(217,212,199,.7); }
@media (max-width: 980px) { .foot-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-main { grid-template-columns: 1fr; } }

/* ============================================================
   SUBPAGE SHEET HEADERS
   ============================================================ */
.sheet-head { position: relative; padding: clamp(44px, 6vw, 84px) 0 clamp(48px, 7vw, 92px); overflow: hidden; }
.sheet-meta {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 20px;
}
.sheet-meta .sm-sep { color: var(--copper); }
.sheet-title { font-size: clamp(44px, 7vw, 92px); line-height: .95; }
.sheet-lede { max-width: 62ch; font-size: clamp(16.5px, 1.4vw, 18.5px); color: var(--text-soft); margin-top: 20px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.values { padding: var(--sect) 0; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: clamp(28px, 4vw, 46px); }
.value-card {
  position: relative; border: 1.5px solid var(--ink); border-radius: var(--radius);
  background: var(--paper); padding: 26px 26px 24px;
  box-shadow: 0 2px 0 rgba(16,16,16,.85);
  overflow: hidden;
}
.value-card::after {
  content: attr(data-idx);
  position: absolute; right: 10px; bottom: -26px;
  font-family: var(--font-display); font-weight: 700; font-size: 110px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(15,58,74,.14);
  pointer-events: none;
}
.value-card h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 24px; color: var(--ink); margin-bottom: 10px; }
.value-card p { color: var(--text-soft); font-size: 15px; max-width: 46ch; margin: 0; }
@media (max-width: 720px) { .values-grid { grid-template-columns: 1fr; } }

/* Accountability / license panel */
.account { padding: var(--sect) 0; }
.account-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.check-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: var(--text-light); }
.check-list .ck {
  flex: none; width: 26px; height: 26px; margin-top: 2px;
  border-radius: 6px; background: rgba(156,199,60,.14);
  color: var(--logo-green);
  display: grid; place-items: center; font-size: 14px; font-weight: 700;
  border: 1px solid rgba(156,199,60,.4);
}
.lic-doc {
  border: 1px solid var(--line-light); border-radius: var(--radius);
  background: rgba(247,243,234,.03);
  font-family: var(--font-mono); font-size: 13px; line-height: 2.05; letter-spacing: .03em;
  color: var(--text-light);
  padding: clamp(22px, 3vw, 34px);
  position: relative;
}
.lic-doc .ld-row { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px dashed rgba(247,243,234,.14); padding: 4px 0; }
.lic-doc .ld-row:last-of-type { border-bottom: none; }
.lic-doc .ld-k { color: rgba(217,212,199,.55); font-size: 11.5px; text-transform: uppercase; letter-spacing: .1em; padding-top: 3px; }
.lic-doc .ld-v { text-align: right; color: var(--paper); }
.lic-doc .ld-v.ok { color: var(--logo-green); }
.lic-doc .ld-stamp { position: absolute; top: -58px; right: -4px; width: 92px; height: 92px; transform: rotate(9deg); }
.lic-doc { margin-top: 34px; }
.lic-doc .ld-note { margin-top: 16px; font-size: 11.5px; color: rgba(217,212,199,.55); line-height: 1.8; }
.lic-doc .ld-note a { color: var(--copper-soft); }
@media (max-width: 860px) { .account-grid { grid-template-columns: 1fr; } }

/* Service area */
.area { padding: var(--sect) 0; }
.area-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.area-map {
  position: relative; border: 2px solid var(--ink); border-radius: var(--radius);
  background: var(--paper); overflow: hidden;
  box-shadow: 8px 8px 0 rgba(15,58,74,.14);
}
.area-map svg { display: block; width: 100%; height: auto; }
.city-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.city-tag {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .05em;
  border: 1.5px solid var(--ink); border-radius: 100px;
  padding: 7px 16px; background: var(--paper);
  transition: background .15s, color .15s;
}
.city-tag:hover { background: var(--ink); color: var(--paper); }
.city-tag--hq { background: var(--copper); border-color: var(--copper); color: #fff; font-weight: 600; }
.area-note { font-size: 14px; color: var(--text-soft); margin-top: 18px; font-style: italic; }
@media (max-width: 860px) { .area-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-sect { padding: 0 0 var(--sect); }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 4vw, 60px); align-items: start; margin-top: clamp(-40px, -4vw, -24px); position: relative; z-index: 6; }
.quote-sheet {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 rgba(15,58,74,.14);
  overflow: hidden;
}
.qs-head {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: var(--ink); color: var(--paper);
  padding: 16px 24px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
}
.qs-head .qs-no { color: var(--copper-soft); }
.quote-form { padding: clamp(22px, 3.4vw, 36px); display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--slate);
  display: flex; gap: 8px; align-items: baseline;
}
.field label .req { color: var(--copper); }
.field label .opt { color: rgba(66,82,92,.6); font-weight: 400; letter-spacing: .06em; text-transform: none; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line-strong); border-radius: 8px;
  padding: 13px 14px;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(156,199,60,.28);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .err { display: none; font-size: 13px; color: #a02c14; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #a02c14; }
.field.invalid .err { display: block; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.form-note { font-size: 13px; color: var(--text-soft); max-width: 40ch; }
.form-status { grid-column: 1 / -1; display: none; border-radius: 10px; padding: 16px 18px; font-size: 15px; }
.form-status.ok { display: block; background: rgba(156,199,60,.15); border: 1.5px solid var(--logo-green); color: #2e4a06; }
.form-status.bad { display: block; background: rgba(160,44,20,.08); border: 1.5px solid #a02c14; color: #7c2210; }

.contact-side { display: grid; gap: 20px; }
.side-card {
  border: 1.5px solid var(--ink); border-radius: var(--radius);
  padding: 26px; background: var(--paper);
  box-shadow: 0 2px 0 rgba(16,16,16,.85);
  position: relative; overflow: hidden;
}
.side-card--dark { background: var(--river); border-color: var(--river); color: var(--text-light); box-shadow: 0 2px 0 var(--river-deep); }
.side-card .sc-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--copper-dark); display: block; margin-bottom: 10px; }
.side-card--dark .sc-label { color: var(--copper-soft); }
.side-card .sc-tel { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 3.4vw, 40px); letter-spacing: .02em; color: var(--ink); text-decoration: none; display: inline-block; line-height: 1.1; }
.side-card--dark .sc-tel { color: var(--paper); }
.side-card .sc-tel:hover { color: var(--copper-dark); }
.side-card--dark .sc-tel:hover { color: var(--copper-soft); }
.side-card p { font-size: 14.5px; margin-top: 10px; }
.side-card--dark p { color: var(--text-light-soft); }
.sc-seal { position: absolute; right: -20px; bottom: -24px; width: 110px; height: 110px; transform: rotate(-10deg); opacity: .9; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .quote-form { grid-template-columns: 1fr; } }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
/* Reveal styles only apply once JS has tagged <html class="js">,
   so content is never hidden if JavaScript fails or is disabled. */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,.84,.44,1); }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal-d1 { transition-delay: .08s; }
html.js .reveal-d2 { transition-delay: .16s; }
html.js .reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* Print: keep it sane */
@media print {
  .site-header, .callbar, .site-footer .foot-marquee, .divider, body::after { display: none !important; }
}

/* ============================================================
   PHASE 2 — Premium blueprint pass
   Real project photos, logo-green accent, deeper drafting
   language, softer card chrome. Later rules override Phase 1.
   ============================================================ */

:root {
  --green: #9CC73C;
  --green-dark: #6E8F26;
  --green-glow: rgba(156, 199, 60, .25);
  --bp-line: rgba(247, 243, 234, .07);
  --bp-line-bold: rgba(247, 243, 234, .12);
  --card-line: rgba(16, 16, 16, .28);
  --shadow-soft: 0 1px 2px rgba(16,16,16,.08), 0 14px 34px -14px rgba(16,16,16,.28);
  --shadow-lift: 0 2px 4px rgba(16,16,16,.1), 0 24px 48px -16px rgba(16,16,16,.38);
}

/* ---------- True blueprint dark sections ---------- */
.bg-blueprint {
  background-color: var(--river);
  background-image:
    linear-gradient(var(--bp-line-bold) 1px, transparent 1px),
    linear-gradient(90deg, var(--bp-line-bold) 1px, transparent 1px),
    linear-gradient(var(--bp-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--bp-line) 1px, transparent 1px);
  background-size: 140px 140px, 140px 140px, 28px 28px, 28px 28px;
}
.bg-blueprint-deep {
  background-color: var(--river-deep);
  background-image:
    linear-gradient(var(--bp-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--bp-line) 1px, transparent 1px);
  background-size: 34px 34px;
}
/* blueprint edge fades so grids blend into flat divider colors */
.bp-fade-top, .bp-fade-bottom { position: relative; }
.bp-fade-top::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 90px;
  background: linear-gradient(to top, transparent, var(--river));
  pointer-events: none; z-index: 1;
}
.bp-fade-bottom::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px;
  background: linear-gradient(to bottom, transparent, var(--river));
  pointer-events: none; z-index: 1;
}
.bp-fade-top.deep::before { background: linear-gradient(to top, transparent, var(--river-deep)); }
.bp-fade-bottom.deep::after { background: linear-gradient(to bottom, transparent, var(--river-deep)); }
.bp-fade-top > .wrap, .bp-fade-bottom > .wrap { position: relative; z-index: 2; }

/* Drafting crosshair marks for blueprint sections */
.bp-cross {
  position: absolute; width: 22px; height: 22px; pointer-events: none; z-index: 1;
  opacity: .55;
}
.bp-cross::before, .bp-cross::after {
  content: ""; position: absolute; background: var(--green);
}
.bp-cross::before { left: 50%; top: 0; bottom: 0; width: 1px; }
.bp-cross::after { top: 50%; left: 0; right: 0; height: 1px; }
.on-light .bp-cross::before, .on-light .bp-cross::after { background: var(--river); opacity: .5; }

/* ---------- Photo prints (site-photo treatment) ---------- */
.print {
  position: relative;
  background: #fff;
  padding: 10px 10px 12px;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}
.print img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.print figcaption {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--slate);
  padding: 9px 4px 0;
}
.print figcaption .ref { color: var(--green-dark); font-weight: 600; flex: none; }
.print:hover { transform: translateY(-5px) rotate(0deg) !important; box-shadow: var(--shadow-lift); z-index: 5; }
/* survey corner ticks */
.print::before, .print::after {
  content: ""; position: absolute; width: 16px; height: 16px; pointer-events: none;
  border: 2px solid var(--green); z-index: 2;
}
.print::before { top: -5px; left: -5px; border-right: none; border-bottom: none; }
.print::after { bottom: -5px; right: -5px; border-left: none; border-top: none; }
/* tape variant */
.print--tape::before {
  width: 76px; height: 22px; border: none;
  top: -10px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  background: rgba(233, 222, 189, .8);
  box-shadow: 0 1px 3px rgba(16,16,16,.15);
}
.tilt-l { transform: rotate(-1.6deg); }
.tilt-r { transform: rotate(1.4deg); }
.tilt-l2 { transform: rotate(-.8deg); }
.tilt-r2 { transform: rotate(2deg); }

/* ---------- Softer premium card chrome (overrides) ---------- */
.svc-card, .p-card, .value-card, details.faq-item, .side-card, .faq-side .faq-callout {
  border-width: 1px; border-color: var(--card-line);
  box-shadow: var(--shadow-soft);
  border-radius: 16px;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.svc-card:hover .svc-glyph { color: var(--copper); }
details.faq-item[open] { box-shadow: var(--shadow-lift); }
.stat .stat-num .unit { color: var(--green); }

/* ---------- Photo-led service cards ---------- */
.svc-card { padding: 0; overflow: hidden; justify-content: flex-start; }
.svc-card .svc-photo {
  position: relative; width: 100%; aspect-ratio: 16 / 9.5; overflow: hidden;
  border-bottom: 1px solid var(--card-line);
  flex: none;
}
.svc-card .svc-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.svc-card:hover .svc-photo img { transform: scale(1.045); }
.svc-card .svc-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,58,74,.28), transparent 45%);
}
.svc-card .svc-body { padding: 20px 24px 22px; display: flex; flex-direction: column; flex: 1; }
.svc-card .svc-num {
  position: absolute; top: auto; left: 18px; z-index: 3;
  background: var(--paper); border: 1px solid var(--card-line); border-radius: 100px;
  padding: 5px 12px; box-shadow: 0 2px 6px rgba(16,16,16,.18);
}
.svc-card .svc-photo .svc-num { top: 14px; }
.svc-card .svc-glyph { top: auto; right: 20px; bottom: 100%; }
.svc-card .svc-body .svc-glyph { position: absolute; top: -26px; right: 20px; width: 52px; height: 52px; background: var(--paper); border: 1px solid var(--card-line); border-radius: 14px; padding: 10px; box-shadow: 0 4px 12px rgba(16,16,16,.16); color: var(--river); }
.svc-card h3 { margin-top: 6px; }
.svc-card .svc-go { margin-top: auto; padding-top: 14px; }
.svc-card--feature { min-height: 0; }
.svc-card--feature .svc-photo { aspect-ratio: auto; flex: 1; min-height: 300px; }
.svc-card--feature .svc-body { flex: none; }
.svc-sketch { display: none; }

/* ---------- Hero photo panel ---------- */
.plan-panel { padding: 20px 20px 20px; }
.plan-head { margin-bottom: 14px; align-items: center; }
.plan-head .ph-logo { width: 30px; height: 30px; }
.hero-photo { position: relative; border-radius: 8px; overflow: hidden; }
.hero-photo img { display: block; width: 100%; height: auto; }
.hero-photo .hp-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; gap: 10px;
  padding: 26px 14px 10px;
  background: linear-gradient(to top, rgba(16,16,16,.72), transparent);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--paper);
}
.hero-photo .hp-cap .ref { color: var(--green); }
.plan-facts { padding-right: 0; margin-top: 16px; padding-top: 14px; }
.plan-facts li { font-size: 13px; }

/* ---------- Proof wall (gallery) ---------- */
.proof { padding: var(--sect) 0; position: relative; overflow: hidden; }
.proof-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 20px 60px; align-items: end; margin-bottom: clamp(34px, 5vw, 60px); }
.proof-board {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
  align-items: start;
}
.proof-board .print { grid-column: span 4; }
.proof-board .print.pw-5 { grid-column: span 5; }
.proof-board .print.pw-3 { grid-column: span 3; }
.proof-board .print.pw-6 { grid-column: span 6; }
.proof-board .print img { aspect-ratio: 4 / 3; }
.proof-board .print.pt img { aspect-ratio: 3 / 4; }
.proof-board .print.ptt img { aspect-ratio: 3 / 4.6; }
.proof-note {
  grid-column: span 3;
  align-self: center;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; line-height: 2;
  text-transform: uppercase; color: var(--text-light-soft);
  border: 1px dashed rgba(247,243,234,.35); border-radius: 12px;
  padding: 18px;
  position: relative;
}
.proof-note .pn-green { color: var(--green); }
.proof-more { margin-top: clamp(28px, 4vw, 44px); display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
@media (max-width: 980px) {
  .proof-head { grid-template-columns: 1fr; align-items: start; }
  .proof-board { grid-template-columns: repeat(6, 1fr); }
  .proof-board .print, .proof-board .print.pw-5, .proof-board .print.pw-3, .proof-board .print.pw-6 { grid-column: span 3; }
  .proof-note { grid-column: span 6; }
}
@media (max-width: 560px) {
  .proof-board { grid-template-columns: 1fr 1fr; gap: 14px; }
  .proof-board .print, .proof-board .print.pw-5, .proof-board .print.pw-3, .proof-board .print.pw-6 { grid-column: span 1; }
  .proof-board .print.pw-6, .proof-board .print.pw-5 { grid-column: span 2; }
  .proof-note { grid-column: span 2; }
  .tilt-l, .tilt-r, .tilt-l2, .tilt-r2 { transform: none; }
}

/* ---------- WIP strip (about page) ---------- */
.wip { padding: var(--sect) 0; }
.wip-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.4vw, 28px); margin-top: clamp(30px, 4vw, 48px); align-items: start; }
.wip-strip .print img { aspect-ratio: 3 / 3.6; }
.wip-strip .print:nth-child(2) { margin-top: 26px; }
.wip-strip .print:nth-child(4) { margin-top: 34px; }
@media (max-width: 860px) {
  .wip-strip { grid-template-columns: 1fr 1fr; }
  .wip-strip .print:nth-child(n) { margin-top: 0; }
  .wip-strip .print:nth-child(even) { margin-top: 20px; }
}

/* ---------- Services page rows with photos ---------- */
.svc-row { grid-template-columns: 90px minmax(0, 1.05fr) minmax(0, .9fr) minmax(220px, .72fr); }
.svc-row > .svc-row-num { order: 1; }
.svc-row > div { order: 2; }
.svc-row > .svc-includes { order: 3; }
.svc-row > .svc-row-photo { order: 4; }
.svc-row .svc-row-photo { align-self: start; margin-top: 6px; }
.svc-row .svc-row-photo img { aspect-ratio: 4 / 4.4; }
@media (max-width: 1080px) {
  .svc-row { grid-template-columns: 70px minmax(0, 1fr) minmax(0, 1fr); }
  .svc-row .svc-row-photo { grid-column: 2 / -1; justify-self: start; width: min(420px, 100%); }
}
@media (max-width: 860px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row .svc-row-photo { grid-column: 1; width: min(420px, 100%); }
}

/* ---------- CTA banner with photo ---------- */
.cta-banner--photo { background: var(--river-deep); }
.cta-banner--photo .cta-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cta-banner--photo .cta-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-banner--photo .cta-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, var(--river-deep), rgba(10,40,51,.82) 30%, rgba(10,40,51,.86) 70%, var(--river-deep)),
    radial-gradient(ellipse at center, rgba(10,40,51,.2), rgba(10,40,51,.65));
}
.cta-banner--photo .contours { z-index: 1; opacity: .35; }

/* ---------- Green-river accents ---------- */
.river-line svg path:last-child { stroke: var(--green); }
.area-map svg path[stroke-dasharray] { stroke: var(--green-dark); }
.tb-nav a:hover { color: var(--green-dark); }
.on-dark .kicker::before { background: var(--green); }

/* ---------- Section index labels ---------- */
.sect-index {
  display: block;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(66,82,92,.55); margin-bottom: 6px;
}
.on-dark .sect-index { color: rgba(217,212,199,.4); }

/* Larger, tighter section titles */
.sect-title { font-size: clamp(36px, 5vw, 64px); letter-spacing: 0; }

/* Hero pulls slightly wider for presence */
@media (min-width: 1100px) {
  .hero .wrap { max-width: 1260px; }
  .hero-grid { grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr); }
}

/* Seal rides the hero photo corner like a stamp */
.hero-photo { overflow: visible; }
.hero-photo img { border-radius: 8px; }
.hero-photo .seal { right: -14px; bottom: -18px; width: 112px; height: 112px; transform: rotate(-10deg); z-index: 3; }

/* WIP captions stay on one line */
.wip-strip .print figcaption span:first-child { white-space: nowrap; }

/* ============================================================
   PHASE 3 — accent swap: copper -> logo green
   Green surfaces carry INK text (logo pairing), never white.
   ============================================================ */
.btn--copper { color: var(--ink); background: var(--copper); box-shadow: 0 3px 0 var(--green-dark), 0 10px 24px -10px rgba(156,199,60,.45); }
.btn--copper:hover { background: #8ab52f; color: var(--ink); box-shadow: 0 3px 0 #44591a, 0 12px 26px -10px rgba(156,199,60,.5); }
.hero-h1 .accent { color: var(--green-mid); }
.faq-item[open] summary .fq-mark { background: var(--copper); border-color: var(--copper); color: var(--ink); }
.city-tag--hq { background: var(--copper); border-color: var(--copper); color: var(--ink); }
:focus-visible { outline-color: var(--green-dark); }
.on-dark :focus-visible, .site-footer :focus-visible { outline-color: var(--copper); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--copper), var(--green-dark)); }
html { scrollbar-color: var(--copper) var(--ink); }
.p-num { background: var(--river); }
.foot-brand .fb-name span { color: var(--copper); }
.form-status.ok { background: rgba(156,199,60,.15); border-color: var(--green-dark); }

/* ============================================================
   PHASE 4 — hero photo deck (rotating site photos)
   ============================================================ */
.hero-deck {
  position: relative;
  aspect-ratio: 4 / 3.05;
  border-radius: 8px;
}
/* stray prints peeking from under the stack */
.hero-deck::before, .hero-deck::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: #fff; border: 1px solid var(--card-line); border-radius: 8px;
  box-shadow: 0 6px 18px -8px rgba(16,16,16,.3);
}
.hero-deck::before { transform: rotate(2.1deg) translate(7px, 5px); }
.hero-deck::after { transform: rotate(-1.7deg) translate(-6px, 7px); }
.deck-card {
  position: absolute; inset: 0; z-index: 1; margin: 0;
  border-radius: 8px; overflow: hidden;
  background: var(--paper-warm);
  opacity: 0; transform: scale(.955) rotate(-2deg);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.8,.36,1);
  pointer-events: none;
}
.deck-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.deck-card .hp-cap {
  position: absolute; left: 0; right: 0; bottom: 0; margin: 0;
  display: flex; justify-content: space-between; gap: 10px;
  padding: 26px 104px 10px 14px;
  background: linear-gradient(to top, rgba(16,16,16,.72), transparent);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--paper);
}
.deck-card .hp-cap .ref { color: var(--green); }
.deck-card.is-active { opacity: 1; transform: none; z-index: 2; }
.deck-card.is-leaving { opacity: 0; transform: translateX(11%) rotate(4.5deg); z-index: 3; }
.hero-deck .seal { z-index: 6; }

.deck-ui {
  display: flex; align-items: center; gap: 18px;
  margin-top: 14px; padding: 0 116px 0 2px; /* right padding clears the seal */
}
.deck-ui .deck-dots { margin-left: auto; }
.deck-count { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; color: var(--slate); }
.deck-count #deck-now { color: var(--green-dark); font-weight: 600; }
.deck-dots { display: flex; gap: 9px; }
.deck-dot {
  width: 24px; height: 6px; padding: 0;
  border: none; border-radius: 100px; cursor: pointer;
  background: rgba(16,16,16,.16);
  transition: background .25s ease, width .25s ease;
}
.deck-dot:hover { background: rgba(16,16,16,.34); }
.deck-dot.is-active { background: var(--copper); width: 38px; }
@media (prefers-reduced-motion: reduce) {
  .deck-card { transition: opacity .01ms, transform .01ms; }
}

/* Hero trust ticks */
.hero-ticks {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px 26px;
  margin: 22px 0 0; padding: 0;
}
.hero-ticks li {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--slate);
}
.hero-ticks li::before {
  content: "✓";
  display: grid; place-items: center;
  width: 18px; height: 18px; flex: none;
  border-radius: 5px; font-size: 11px; font-weight: 700;
  background: rgba(156,199,60,.18); color: var(--green-dark);
  border: 1px solid rgba(156,199,60,.5);
}

/* Deck at small sizes */
.deck-count { white-space: nowrap; }
@media (max-width: 560px) {
  .hero-deck .seal { width: 86px; height: 86px; right: -6px; bottom: -12px; }
  .deck-ui { padding-right: 84px; }
  .deck-card .hp-cap { padding-right: 14px; }
  .deck-card .hp-cap .ref { display: none; }
  .deck-card .hp-cap span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}

/* ============================================================
   PHASE 5 — sub-page photo heroes, editorial media rows,
   dedicated service pages, drafting flourishes
   ============================================================ */

/* ---------- Photo sheet-head (sub-page heroes) ---------- */
.sheet-head--photo {
  position: relative; overflow: hidden;
  padding: clamp(64px, 8vw, 120px) 0 clamp(64px, 9vw, 130px);
  background: var(--river-deep);
}
.sheet-head--photo .shp-bg { position: absolute; inset: 0; z-index: 0; }
.sheet-head--photo .shp-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sheet-head--photo .shp-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,40,51,.86), rgba(10,40,51,.55) 40%, var(--river-deep) 96%),
    linear-gradient(100deg, rgba(10,40,51,.92) 8%, rgba(10,40,51,.6) 52%, rgba(10,40,51,.3));
}
/* faint blueprint grid over the photo */
.sheet-head--photo .shp-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: .5;
  background-image:
    linear-gradient(rgba(247,243,234,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,243,234,.07) 1px, transparent 1px);
  background-size: 34px 34px;
}
.sheet-head--photo .wrap { position: relative; z-index: 2; }
.sheet-head--photo .sheet-meta { color: rgba(217,212,199,.75); }
.sheet-head--photo .sheet-meta .sm-sep { color: var(--green); }
.sheet-head--photo .sheet-title { color: var(--paper); }
.sheet-head--photo .sheet-title .accent { color: var(--green); }
.sheet-head--photo .sheet-lede { color: rgba(217,212,199,.9); }
.sheet-head--photo .bp-cross { z-index: 2; }
.shp-tag {
  position: absolute; right: var(--pad); bottom: 26px; z-index: 2;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(217,212,199,.65);
  border: 1px solid rgba(247,243,234,.25); border-radius: 100px;
  padding: 6px 14px;
  background: rgba(10,40,51,.5); backdrop-filter: blur(3px);
}
.shp-tag .ref { color: var(--green); }
@media (max-width: 700px) { .shp-tag { display: none; } }

/* ---------- Editorial media rows (services index) ---------- */
.media-rows { display: grid; gap: clamp(56px, 8vw, 110px); margin-top: clamp(36px, 5vw, 64px); }
.media-row {
  display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  gap: clamp(28px, 4.5vw, 70px); align-items: center;
}
.media-row:nth-child(even) .mr-photo { order: 2; }
.mr-photo { position: relative; }
.mr-photo .print img { aspect-ratio: 4 / 3.4; }
.mr-photo--tall .print img { aspect-ratio: 4 / 4.5; }
.mr-body { position: relative; }
.mr-num {
  position: absolute; top: -34px; left: -10px; z-index: 0;
  font-family: var(--font-display); font-weight: 700; line-height: 1;
  font-size: clamp(90px, 10vw, 150px);
  color: transparent; -webkit-text-stroke: 1.5px rgba(15,58,74,.16);
  pointer-events: none; user-select: none;
}
.mr-body h2 { position: relative; font-size: clamp(30px, 3.6vw, 46px); }
.mr-body .svc-row-tag { position: relative; }
.mr-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; margin: 18px 0 24px; padding: 0; }
.mr-chips li {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
  background: rgba(15,58,74,.06); border: 1px solid rgba(15,58,74,.18);
  border-radius: 100px; padding: 7px 14px; color: var(--text-soft);
}
.mr-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.mr-more {
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green-dark);
}
@media (max-width: 860px) {
  .media-row { grid-template-columns: 1fr; }
  .media-row:nth-child(even) .mr-photo { order: 0; }
  .mr-photo { max-width: 520px; }
  .mr-num { font-size: 84px; top: -26px; }
}

/* ---------- Service page: work section with photo collage ---------- */
.svc-work { padding: var(--sect) 0; position: relative; }
.svc-work-grid {
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(32px, 5vw, 76px); align-items: start;
}
.svc-collage { position: relative; padding-bottom: 10px; }
.svc-collage .print--main { position: relative; z-index: 1; width: 84%; }
.svc-collage .print--main img { aspect-ratio: 4 / 4.3; }
.svc-collage .print--over {
  position: absolute; right: -8px; top: 32%; z-index: 2; width: 50%;
}
.svc-collage .print--over img { aspect-ratio: 4 / 3.1; }
.svc-checks { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.svc-checks li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; color: var(--text); }
.svc-checks .ck {
  flex: none; width: 24px; height: 24px; margin-top: 1px;
  border-radius: 6px; background: rgba(156,199,60,.16);
  color: var(--green-dark); border: 1px solid rgba(156,199,60,.5);
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
}
@media (max-width: 860px) {
  .svc-work-grid { grid-template-columns: 1fr; }
  .svc-collage { max-width: 520px; }
}

/* Drafting ruler edge for spec sections */
.ruler-left { position: relative; }
.ruler-left::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 26px;
  background:
    repeating-linear-gradient(to bottom, rgba(15,58,74,.35) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(to bottom, rgba(15,58,74,.18) 0 1px, transparent 1px 16px);
  background-position: right top;
  background-size: 14px 100%, 8px 100%;
  background-repeat: no-repeat, no-repeat;
  border-right: 1px solid rgba(15,58,74,.3);
  pointer-events: none;
}
@media (max-width: 1100px) { .ruler-left::before { display: none; } }

/* Service page: 3-step mini process */
.mini-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(28px, 4vw, 44px); }
.mini-step {
  position: relative; background: var(--paper);
  border: 1px solid var(--card-line); border-radius: 16px;
  padding: 26px 24px 24px; box-shadow: var(--shadow-soft);
}
.mini-step .ms-num {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .14em;
  color: var(--green-dark); display: block; margin-bottom: 10px;
}
.mini-step h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 22px; color: var(--ink); margin-bottom: 8px; }
.mini-step p { font-size: 14.5px; color: var(--text-soft); margin: 0; }
.mini-step::after {
  content: "→"; position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  font-size: 18px; color: var(--green-dark); z-index: 2;
}
.mini-step:last-child::after { content: none; }
@media (max-width: 780px) {
  .mini-steps { grid-template-columns: 1fr; }
  .mini-step::after { content: "↓"; right: auto; left: 50%; top: auto; bottom: -20px; transform: translateX(-50%); }
}

/* Service page: other services cross-links */
.xlinks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: clamp(26px, 4vw, 40px); }
.xlink {
  display: flex; flex-direction: column; gap: 6px;
  border: 1px solid rgba(247,243,234,.22); border-radius: 12px;
  padding: 18px 18px 16px; text-decoration: none;
  background: rgba(247,243,234,.04);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.xlink:hover { background: rgba(247,243,234,.1); transform: translateY(-3px); border-color: var(--green); }
.xlink .xl-num { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; color: var(--green); }
.xlink .xl-name { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 19px; letter-spacing: .03em; color: var(--paper); line-height: 1.15; }
.xlink .xl-go { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; color: rgba(217,212,199,.6); margin-top: auto; }
@media (max-width: 900px) { .xlinks { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .xlinks { grid-template-columns: 1fr; } }

/* About page: bigger job-site prints + owner photo */
.wip-strip .print img { aspect-ratio: 3 / 3.4; }
.owner-shot { position: relative; margin-top: 26px; }
.owner-shot .print img { aspect-ratio: 16 / 9.5; }

/* Full-width field band (about) */
.field-band { padding: clamp(40px, 6vw, 70px) 0; }
.field-band .print img { aspect-ratio: 21 / 8.5; }
@media (max-width: 700px) { .field-band .print img { aspect-ratio: 4 / 3; } }

/* Contact sidebar print larger */
.contact-side .print img { aspect-ratio: 4 / 3; }
.contact-side .print { max-width: none !important; }

/* ============================================================
   PHASE 6 — commanding header logo + sleek modern footer
   ============================================================ */

/* Header logo: bigger badge that breaks the title-block line */
.tb-logo { padding-block: 6px; }
.tb-logo img {
  width: 88px; height: 88px;
  margin: -4px 0 -30px;
  filter: drop-shadow(0 8px 16px rgba(16,16,16,.28));
  position: relative; z-index: 5;
}
.tb-cell.tb-logo { overflow: visible; padding-right: 26px; }
@media (max-width: 920px) {
  .tb-logo img { width: 64px; height: 64px; margin: -2px 0 -16px; }
}

/* ---------- Footer, redrawn ---------- */
.site-footer { border-top: 3px solid var(--copper); }
.foot-marquee { padding: 14px 0; font-size: clamp(16px, 1.8vw, 22px); color: rgba(247,243,234,.13); border-bottom: 1px solid rgba(247,243,234,.09); }
.foot-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(0, .7fr) minmax(0, .95fr);
  gap: clamp(36px, 5vw, 90px);
  padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
}
.foot-id { display: flex; flex-direction: column; align-items: flex-start; }
.foot-id .fi-mark { display: flex; align-items: center; gap: 20px; margin-bottom: 18px; }
.foot-id .fi-mark img { width: 128px; height: 128px; filter: drop-shadow(0 10px 24px rgba(0,0,0,.5)); }
.foot-id .fi-name {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(26px, 2.6vw, 34px); line-height: .95; color: var(--paper);
}
.foot-id .fi-name span { color: var(--copper); }
.foot-blurb { font-size: 14.5px; color: rgba(217,212,199,.6); max-width: 36ch; margin: 0 0 26px; }
.foot-tel {
  font-family: var(--font-display); font-weight: 700; letter-spacing: .02em;
  font-size: clamp(34px, 3.6vw, 48px); line-height: 1;
  color: var(--paper); text-decoration: none;
  transition: color .2s ease;
}
.foot-tel:hover { color: var(--copper); }
.foot-tel-sub {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--copper); margin-top: 10px;
}
.foot-col .foot-h {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(217,212,199,.5); margin-bottom: 20px;
}
.foot-col .foot-h::before { content: ""; width: 18px; height: 2px; background: var(--copper); }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.foot-col a {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(217,212,199,.85); text-decoration: none;
  font-size: 15.5px; padding: 5px 0;
  transition: color .18s ease, transform .18s ease;
}
.foot-col a::before {
  content: "→"; font-size: 12px; color: var(--copper);
  opacity: 0; margin-left: -18px; transition: opacity .18s ease, margin .18s ease;
}
.foot-col a:hover { color: var(--paper); transform: translateX(2px); }
.foot-col a:hover::before { opacity: 1; margin-left: 0; }
.foot-spec {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 26px;
  border-top: 1px solid rgba(247,243,234,.12);
  border-bottom: 1px solid rgba(247,243,234,.12);
  padding: 16px 0;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(217,212,199,.7);
}
.foot-spec .lic-dot { flex: none; }
.foot-spec .fs-sep { color: rgba(247,243,234,.25); }
.foot-spec a { color: var(--copper); text-decoration: none; margin-left: auto; }
.foot-spec a:hover { text-decoration: underline; text-underline-offset: 4px; }
.site-footer .foot-bottom {
  border-top: none;
  padding: 22px 0 30px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(217,212,199,.4);
}
@media (max-width: 980px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-id { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; gap: 34px; }
  .foot-spec a { margin-left: 0; }
  .foot-id .fi-mark img { width: 104px; height: 104px; }
}

/* ============================================================
   PHASE 7 — black header bar, white text
   ============================================================ */
.site-header {
  background: var(--ink);
  border-bottom: 3px solid var(--copper);
}
.titleblock { border-inline: 1px solid rgba(247,243,234,.1); }
.tb-cell { border-left: 1px solid rgba(247,243,234,.12); }
.tb-label { color: rgba(247,243,234,.35); }
.tb-nav a { color: var(--paper); }
.tb-nav a:hover { color: var(--copper); }
.tb-nav a[aria-current="page"] { color: var(--copper); }
.tb-phone a { color: var(--paper); }
.tb-phone a:hover { color: var(--copper); }
.tb-phone .tb-lic { color: rgba(217,212,199,.65); }
.nav-toggle .bars, .nav-toggle .bars::before, .nav-toggle .bars::after { background: var(--paper); }
.nav-open .nav-toggle .bars { background: transparent; }
.tb-logo img { filter: drop-shadow(0 8px 16px rgba(0,0,0,.55)); }
.site-header :focus-visible { outline-color: var(--copper); }
/* CTA cell reads as part of the black bar */
.tb-cta .btn { box-shadow: none; }

/* PHASE 8 — clean header: no cell rules, no microlabels */
.titleblock { border-inline: none; }
.tb-cell { border-left: none; }

/* ============================================================
   PHASE 9 — horizontal wordmark logo (blade + LONE RIVER CONSTRUCTION)
   Replaces the square badge; carries the company name, so the
   header/footer text wordmarks are dropped. Sized by height,
   width auto, no overhang or rotate.
   ============================================================ */
.tb-cell.tb-logo { overflow: visible; padding-block: 6px; padding-right: 26px; }
.tb-logo a { align-items: center; }
.tb-logo img {
  /* Explicit W+H at the artwork's native 1000:478 ratio, plus
     aspect-ratio + object-fit as a belt-and-braces guarantee that
     no earlier square-badge rule can ever distort it. */
  width: 218px; height: 104px;
  max-width: none;
  aspect-ratio: 1000 / 478;
  object-fit: contain;
  margin: -6px 0 -34px;                 /* commanding: breaks the header baseline */
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.5));
  transition: transform .3s ease, filter .3s ease;
  position: relative; z-index: 5;
}
.tb-logo a:hover img { transform: translateY(-2px); filter: drop-shadow(0 12px 22px rgba(0,0,0,.6)); }
@media (max-width: 1100px) {
  .tb-logo img { width: 176px; height: 84px; margin: -4px 0 -24px; }
}
@media (max-width: 920px) {
  .tb-logo img { width: 130px; height: 62px; margin: 0; }
  .tb-cell.tb-logo { padding-right: 14px; }
}

/* Footer: wide logo stands in for the old 128px badge + text lockup */
.foot-id .fi-mark { gap: 0; margin-bottom: 22px; }
.foot-id .fi-mark img {
  width: clamp(220px, 24vw, 300px); height: auto;
  aspect-ratio: 1000 / 478;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.55));
}
@media (max-width: 560px) {
  .foot-id .fi-mark img { width: min(78vw, 280px); height: auto; }
}
