@charset "utf-8";
/* ==========================================================================
   Earlybird Junk Removal and Cleanup — Schenectady, NY
   Design system. Palette derived from the Earlybird oval: brand yellow,
   ink black, hard-hat orange, warm dawn paper.
   Native scroll only. No animation libraries. Motion = CSS + one observer.
   ========================================================================== */

/* --------------------------------------------------------------- 1. FONTS */
@font-face {
  font-family: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url(/fonts/bigshoulders-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url(/fonts/bigshoulders-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/fonts/hanken-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/fonts/hanken-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------- 2. TOKENS */
:root {
  /* brand — sampled from the Earlybird oval */
  --yel:      #F5E63C;
  --yel-hi:   #FFF27E;
  --yel-dim:  #D8C927;
  --org:      #E7822F;   /* hard-hat orange — fills, icons on dark, accents */
  --org-hi:   #FF9A45;
  --org-tx:   #96490C;   /* the same orange darkened for TEXT on paper (AA) */

  /* ink + paper */
  --ink:      #14120F;
  --ink-2:    #1F1C18;
  --ink-3:    #2C2823;
  --paper:    #F7F2E6;
  --paper-2:  #EFE7D4;
  --paper-3:  #E4DAC2;

  /* text */
  --tx:       #14120F;
  --tx-mid:   #55503F;
  --tx-soft:  #645E4D;
  --tx-inv:   #FBF8F0;
  --tx-inv-2: #C9C2B0;

  /* lines */
  --line:     #DCD2B9;
  --line-2:   #C8BC9E;
  --line-inv: rgba(251,248,240,.15);

  /* type */
  --disp: 'Big Shoulders Display', 'Oswald', 'Arial Narrow', system-ui, sans-serif;
  --body: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* rhythm */
  --wrap: 1240px;
  --gut: 22px;
  --pad-sec: clamp(64px, 8vw, 128px);
  --r-sm: 6px;
  --r: 12px;
  --r-lg: 20px;

  /* depth */
  --sh-1: 0 1px 2px rgba(20,18,15,.06), 0 4px 14px rgba(20,18,15,.06);
  --sh-2: 0 2px 6px rgba(20,18,15,.08), 0 16px 40px rgba(20,18,15,.10);
  --sh-3: 0 3px 10px rgba(20,18,15,.10), 0 30px 70px rgba(20,18,15,.16);

  --ease: cubic-bezier(.22,.61,.36,1);
  --hdr-h: 74px;
}

/* --------------------------------------------------------------- 3. RESET */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-h) + 18px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--tx);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
/* `clip` contains the full-bleed sections without creating a scroll container
   — `overflow-x:hidden` on <body> silently breaks position:sticky (the quote
   aside on the service pages) in most engines. */
@supports (overflow: clip) { body { overflow-x: clip; } }
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; border: 0; }
h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
strong, b { font-weight: 700; }
::selection { background: var(--yel); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--org-tx);
  outline-offset: 3px;
  border-radius: 3px;
}
.on-dark :focus-visible, .hdr :focus-visible, .hero :focus-visible,
.band :focus-visible, .scene :focus-visible, .ft :focus-visible,
.sheet :focus-visible, .dock :focus-visible, .phero :focus-visible {
  outline-color: var(--yel);
}

.skip {
  position: fixed; top: 10px; left: 10px; z-index: 300;
  transform: translateY(-160%);
  background: var(--yel); color: var(--ink);
  font-family: var(--disp); font-weight: 800; font-size: 18px;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 12px 20px; border-radius: var(--r-sm);
  transition: transform .18s var(--ease);
}
.skip:focus { transform: translateY(0); }

/* --------------------------------------------------------- 4. TYPE SCALE */
.h1, .hero-h1, .h2, .h3, .h4, .giant, .big {
  font-family: var(--disp);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.005em;
  text-wrap: balance;
}
.hero-h1 { font-size: clamp(3.4rem, 12.5vw, 8.4rem); font-weight: 900; letter-spacing: -.015em; }
.h1       { font-size: clamp(2.7rem, 7.6vw, 5.6rem); font-weight: 900; }
.giant    { font-size: clamp(3rem, 9.6vw, 7.6rem); font-weight: 900; letter-spacing: -.012em; }
.h2       { font-size: clamp(2.25rem, 5.4vw, 4.1rem); }
.big      { font-size: clamp(1.9rem, 4.4vw, 3.1rem); }
.h3       { font-size: clamp(1.35rem, 2.1vw, 1.72rem); line-height: 1.02; letter-spacing: .002em; }
.h4       { font-size: 1.06rem; line-height: 1.1; letter-spacing: .06em; text-transform: uppercase; font-weight: 800; }

.hl   { color: var(--org-tx); }
.hl-o { color: var(--yel); }
.on-ink-block .hl, .scene .hl, .band .hl, .cta .hl, .phero .hl, .hero .hl, .lost .hl { color: var(--yel); }

.kick {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--org-tx);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.kick::before {
  content: ""; width: 30px; height: 3px; flex: none;
  background: var(--org-tx); border-radius: 2px;
}
.center .kick { justify-content: center; }
.scene .kick, .band .kick, .cta .kick, .phero .kick { color: var(--yel); }
.scene .kick::before, .band .kick::before, .cta .kick::before, .phero .kick::before { background: var(--yel); }

.lede {
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.58;
  color: var(--tx-mid);
  max-width: 64ch;
  text-wrap: pretty;
}
.sml { font-size: .92rem; line-height: 1.55; color: var(--tx-soft); }
.scene .lede, .band .lede, .cta .lede, .phero .lede, .hero .lede { color: var(--tx-inv-2); }
.scene .sml, .band .sml, .cta .sml { color: rgba(251,248,240,.6); }

/* ------------------------------------------------------------ 5. LAYOUT */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
  padding-inline: max(var(--gut), env(safe-area-inset-left));
}
.sec   { padding-block: var(--pad-sec); }
.sec-t { padding-top: var(--pad-sec); }
.sec-b { padding-bottom: var(--pad-sec); }
.paper { background: var(--paper-2); }
.sec-head { max-width: 74ch; margin-bottom: clamp(38px, 4.4vw, 64px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .lede { margin-inline: auto; }
.sec-head .lede { margin-top: 20px; }

/* ---------------------------------------------------------- 6. BUTTONS */
.btn {
  --bh: 52px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--bh);
  padding: 0 26px;
  font-family: var(--disp);
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: .045em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: transform .22s var(--ease), background-color .22s var(--ease),
              color .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
  will-change: transform;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { --bh: 46px; padding: 0 20px; font-size: 1.04rem; }
.btn-lg { --bh: 60px; padding: 0 32px; font-size: 1.28rem; }
.btn-blk { display: flex; width: 100%; }

.btn-y {
  background: var(--yel); color: var(--ink);
  box-shadow: 0 2px 0 var(--yel-dim), 0 10px 26px rgba(245,230,60,.24);
}
.btn-y:hover { background: var(--yel-hi); box-shadow: 0 2px 0 var(--yel-dim), 0 16px 34px rgba(245,230,60,.34); }

.btn-ink { background: var(--ink); color: var(--tx-inv); }
.btn-ink:hover { background: var(--ink-3); box-shadow: 0 14px 32px rgba(20,18,15,.28); }

/* Outline button. Light-section colouring is the default; every dark surface
   re-states it below so the two never fight on specificity. */
.btn-line { border-color: currentColor; color: var(--ink); background: transparent; }
.btn-line:hover { background: var(--ink); color: var(--tx-inv); border-color: var(--ink); }
.hero .btn-line, .phero .btn-line, .scene .btn-line, .band .btn-line, .cta .btn-line,
.load .btn-line, .aside .btn-line, .sheet .btn-line, .dock .btn-line, .lost .btn-line {
  color: var(--tx-inv);
  background: rgba(251,248,240,.03);
}
.hero .btn-line:hover, .phero .btn-line:hover, .scene .btn-line:hover, .band .btn-line:hover,
.cta .btn-line:hover, .load .btn-line:hover, .aside .btn-line:hover, .sheet .btn-line:hover,
.dock .btn-line:hover, .lost .btn-line:hover {
  background: var(--tx-inv); color: var(--ink); border-color: var(--tx-inv);
}

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.center .btn-row, .cta-in .btn-row, .band-in .btn-row, .hero-cta { justify-content: center; }

/* ----------------------------------------------------------- 7. HEADER */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 120;
  height: var(--hdr-h);
  display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: transform .34s var(--ease), background-color .3s var(--ease),
              border-color .3s var(--ease), backdrop-filter .3s var(--ease);
}
.hdr::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,18,15,.72), rgba(20,18,15,0));
  transition: opacity .3s var(--ease);
}
.hdr.stuck {
  background: rgba(20,18,15,.94);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--line-inv);
}
.hdr.stuck::before { opacity: 0; }
.hdr.hide { transform: translateY(-102%); }
.hdr-in { display: flex; align-items: center; gap: 20px; }

.brand { display: flex; align-items: center; gap: 11px; flex: none; margin-right: auto; }
.brand-chick {
  width: auto; height: 42px;
  filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff)
          drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff);
}
.brand-t { display: grid; line-height: 1; }
.brand-t b {
  font-family: var(--disp); font-weight: 900;
  font-size: 1.62rem; letter-spacing: .008em;
  color: var(--yel); text-transform: uppercase;
}
.brand-t span {
  font-size: .655rem; letter-spacing: .21em; text-transform: uppercase;
  font-weight: 600; color: var(--tx-inv-2); margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 3px; }
.nav a {
  position: relative;
  padding: 9px 13px;
  font-size: .87rem; font-weight: 600; letter-spacing: .015em;
  color: var(--tx-inv-2);
  border-radius: 8px;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px;
  background: var(--yel); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .26s var(--ease);
}
.nav a:hover { color: var(--tx-inv); }
.nav a:hover::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--yel); }
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.hdr-right { display: flex; align-items: center; gap: 10px; flex: none; }
.burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line-inv);
  color: var(--tx-inv);
  transition: background-color .2s var(--ease);
}
.burger:hover { background: rgba(251,248,240,.1); }
.burger svg { width: 24px; height: 24px; }

/* mobile sheet */
.sheet {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--hdr-h) + 20px) var(--gut) calc(28px + env(safe-area-inset-bottom));
  overflow-y: auto;
  visibility: hidden; opacity: 0;
  transition: opacity .28s var(--ease), visibility .28s;
}
.sheet.open { visibility: visible; opacity: 1; }
.sheet nav { display: grid; gap: 2px; border-top: 1px solid var(--line-inv); }
.sheet nav a {
  display: flex; align-items: baseline; gap: 12px;
  padding: 17px 4px;
  border-bottom: 1px solid var(--line-inv);
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(1.85rem, 8vw, 2.6rem); line-height: 1;
  text-transform: uppercase; letter-spacing: .01em;
  color: var(--tx-inv);
  opacity: 0; transform: translateY(14px);
}
.sheet.open nav a { animation: sheetIn .42s var(--ease) forwards; }
.sheet nav a small {
  font-family: var(--body); font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; color: var(--org); margin-left: auto;
}
.sheet nav a:hover, .sheet nav a:focus-visible { color: var(--yel); }
@keyframes sheetIn { to { opacity: 1; transform: none; } }
.sheet.open nav a:nth-child(1) { animation-delay: .04s }
.sheet.open nav a:nth-child(2) { animation-delay: .08s }
.sheet.open nav a:nth-child(3) { animation-delay: .12s }
.sheet.open nav a:nth-child(4) { animation-delay: .16s }
.sheet.open nav a:nth-child(5) { animation-delay: .20s }
.sheet.open nav a:nth-child(6) { animation-delay: .24s }
.sheet.open nav a:nth-child(7) { animation-delay: .28s }
.sheet.open nav a:nth-child(8) { animation-delay: .32s }
.sheet-foot { display: grid; gap: 12px; margin-top: 30px; }
.sheet-foot .btn { width: 100%; }
.sheet-foot .sml { text-align: center; color: var(--tx-inv-2); }

/* ------------------------------------------------------- 8. BRAND MARK */
.mark {
  position: relative;
  display: inline-block;
  width: min(430px, 86vw);
  margin-bottom: clamp(20px, 3vw, 30px);
}
.mark-oval {
  position: relative;
  display: grid;
  place-content: center;
  gap: 4px;
  padding: clamp(20px, 4.4vw, 30px) clamp(30px, 8vw, 54px) clamp(19px, 4.2vw, 28px);
  text-align: center;
  background: var(--yel);
  border-radius: 50%;
  box-shadow: 0 0 0 5px #FFF9E2, 0 0 0 12px var(--ink), 0 24px 60px rgba(0,0,0,.42);
}
.mark-name {
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(2.4rem, 9.4vw, 3.5rem); line-height: .88;
  letter-spacing: -.008em; text-transform: uppercase; color: var(--ink);
  transform: skewX(-7deg);
}
.mark-strap {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(.94rem, 3.1vw, 1.14rem); line-height: 1.06;
  letter-spacing: .085em; text-transform: uppercase; color: var(--ink);
}
.mark-city {
  font-size: clamp(.5rem, 1.75vw, .62rem);
  letter-spacing: .17em; text-transform: uppercase;
  font-weight: 700; color: rgba(20,18,15,.66); margin-top: 3px;
}
.mark-chick {
  position: absolute;
  right: -2%; bottom: -9%;
  width: auto; height: clamp(78px, 20vw, 104px);
  filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff)
          drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff)
          drop-shadow(0 8px 14px rgba(0,0,0,.4));
}

/* -------------------------------------------------------------- 9. HERO */
.hero {
  position: relative;
  min-height: 640px;
  min-height: 100svh;
  display: grid; align-items: center;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media picture {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}
.hero-media img {
  animation: kenburns 34s ease-in-out infinite alternate;
  transform-origin: 52% 58%;
}
@keyframes kenburns {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to   { transform: scale(1.17) translate3d(-1.6%, -1.4%, 0); }
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(78% 58% at 50% 46%, rgba(231,130,47,.16), transparent 68%),
    linear-gradient(180deg, rgba(20,18,15,.80) 0%, rgba(20,18,15,.42) 26%, rgba(20,18,15,.56) 62%, rgba(20,18,15,.94) 100%);
}
.hero-scrim::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(112% 76% at 50% 42%, transparent 26%, rgba(20,18,15,.62) 100%);
}
.hero-in {
  position: relative; z-index: 2;
  width: 100%; max-width: 920px;
  margin-inline: auto;
  padding: calc(var(--hdr-h) + clamp(44px, 7vh, 78px)) max(var(--gut), env(safe-area-inset-left)) clamp(54px, 9vh, 96px);
  text-align: center;
  color: var(--tx-inv);
}
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 17px 8px 13px;
  border: 1px solid rgba(251,248,240,.3);
  border-radius: 999px;
  background: rgba(20,18,15,.42);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--tx-inv);
  margin-bottom: 22px;
}
.pill svg { width: 15px; height: 15px; color: var(--yel); }
.hero-h1 { text-shadow: 0 4px 40px rgba(0,0,0,.42); }
.hero-sub {
  margin: 22px auto 0;
  max-width: 43ch;
  font-size: clamp(1.06rem, 2.15vw, 1.32rem);
  line-height: 1.5;
  color: rgba(251,248,240,.9);
  text-wrap: pretty;
}
.hero-cta { margin-top: 32px; }
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 24px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(251,248,240,.16);
}
.hero-trust li {
  display: flex; align-items: center; gap: 8px;
  font-size: .83rem; font-weight: 600; letter-spacing: .045em; text-transform: uppercase;
  color: rgba(251,248,240,.82);
}
.hero-trust svg { width: 15px; height: 15px; color: var(--yel); flex: none; }

/* -------------------------------------------------------------- 10. TAPE */
.tape {
  background: var(--yel);
  border-block: 3px solid var(--ink);
  overflow: hidden;
  padding-block: 11px;
}
.tape-track {
  display: flex; width: max-content;
  animation: tape 46s linear infinite;
}
.tape-track b {
  display: inline-flex; align-items: center; gap: 20px;
  padding-right: 20px;
  font-family: var(--disp); font-weight: 800;
  font-size: 1.32rem; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink); white-space: nowrap;
}
.tape-track i { font-style: normal; color: rgba(20,18,15,.4); }
@keyframes tape { to { transform: translate3d(-50%, 0, 0); } }

/* ------------------------------------------------------------ 11. FAMILY */
.fam {
  display: grid; gap: 2px;
  grid-template-columns: repeat(3, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.fam > div {
  background: var(--paper);
  padding: clamp(26px, 3.2vw, 40px);
  transition: background-color .3s var(--ease);
}
.fam > div:hover { background: var(--paper-2); }
.fn {
  display: block;
  font-family: var(--disp); font-weight: 900; font-size: 3.1rem; line-height: .8;
  color: transparent;
  -webkit-text-stroke: 2px var(--line-2);
  margin-bottom: 20px;
}
.fam h3 { margin-bottom: 11px; }
.fam p { color: var(--tx-mid); font-size: .97rem; }

/* ------------------------------------------------------------ 12. SCENES */
.scene {
  position: relative;
  min-height: 560px;
  display: grid; align-items: center;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
  color: var(--tx-inv);
}
.scene-bg { position: absolute; inset: 0; z-index: 0; }
.scene-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.scene::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(94deg, rgba(20,18,15,.95) 0%, rgba(20,18,15,.86) 34%, rgba(20,18,15,.42) 62%, rgba(20,18,15,.2) 100%);
}
.scene.right::after {
  background: linear-gradient(266deg, rgba(20,18,15,.95) 0%, rgba(20,18,15,.86) 34%, rgba(20,18,15,.42) 62%, rgba(20,18,15,.2) 100%);
}
.scene-in {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(64px, 8vw, 108px) max(var(--gut), env(safe-area-inset-left));
}
.scene-col { max-width: 30rem; }
.scene.right .scene-in { display: flex; justify-content: flex-end; }
.s-num {
  display: block;
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(4.4rem, 9vw, 7.4rem); line-height: .74;
  color: transparent;
  -webkit-text-stroke: 2px rgba(245,230,60,.45);
  margin-bottom: 14px;
}
.s-kick {
  display: inline-block;
  font-family: var(--disp); font-weight: 800;
  font-size: .96rem; letter-spacing: .19em; text-transform: uppercase;
  color: var(--yel);
  margin-bottom: 14px;
}
.s-p { margin-top: 20px; color: rgba(251,248,240,.82); font-size: 1.04rem; max-width: 46ch; }
.s-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.s-chips li {
  padding: 7px 15px;
  border: 1px solid rgba(251,248,240,.26);
  border-radius: 999px;
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  color: rgba(251,248,240,.9);
  background: rgba(251,248,240,.05);
}
.scene .btn-row { margin-top: 30px; }

/* -------------------------------------- 13. SIGNATURE — SIZE UP THE LOAD */
.load {
  background:
    radial-gradient(70% 100% at 85% 0%, rgba(231,130,47,.10), transparent 62%),
    var(--ink);
  color: var(--tx-inv);
  overflow: hidden;
}
.load .kick { color: var(--yel); }
.load .kick::before { background: var(--yel); }
.load .lede { color: rgba(251,248,240,.78); }
.load .h2 { color: var(--tx-inv); }
.load .hl { color: var(--yel); }
.load-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: start;
}
.lchips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.lchip {
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 44px;
  padding: 8px 17px 8px 13px;
  border: 1px solid rgba(251,248,240,.24);
  border-radius: 999px;
  background: rgba(251,248,240,.05);
  font-size: .89rem; font-weight: 600; letter-spacing: .01em;
  color: rgba(251,248,240,.9);
  transition: background-color .2s var(--ease), border-color .2s var(--ease),
              color .2s var(--ease), transform .2s var(--ease);
}
.lchip i {
  width: 16px; height: 16px; flex: none;
  border: 2px solid rgba(251,248,240,.4);
  border-radius: 5px;
  position: relative;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.lchip i::after {
  content: ""; position: absolute; inset: 0;
  background: no-repeat center/9px 9px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314120F' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  opacity: 0; transition: opacity .16s var(--ease);
}
.lchip:hover { border-color: rgba(245,230,60,.55); transform: translateY(-1px); }
.lchip[aria-pressed="true"] {
  background: var(--yel); border-color: var(--yel); color: var(--ink); font-weight: 700;
}
.lchip[aria-pressed="true"] i { background: var(--ink); border-color: var(--ink); }
.lchip[aria-pressed="true"] i::after { opacity: 1; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5E63C' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); }
.lreset {
  margin-top: 20px;
  font-size: .84rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(251,248,240,.55);
  border-bottom: 1px solid rgba(251,248,240,.3);
  padding-bottom: 3px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.lreset:hover { color: var(--yel); border-color: var(--yel); }

.rig {
  background: rgba(251,248,240,.035);
  border: 1px solid rgba(251,248,240,.13);
  border-radius: var(--r-lg);
  padding: 18px 16px 8px;
}
.rig svg { width: 100%; height: auto; }
.rig .fill {
  transform-box: fill-box;
  transform-origin: bottom;
  transform: scaleY(var(--f, 0));
  transition: transform .55s var(--ease);
}
.rig .fill-top {
  transform: translate(0, calc(40px - var(--f, 0) * 176px));
  transition: transform .55s var(--ease);
}
.gauge {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 6px 20px;
  margin-top: 22px;
  padding: 20px 22px;
  background: rgba(251,248,240,.05);
  border: 1px solid rgba(251,248,240,.13);
  border-radius: var(--r);
}
.gpct {
  font-family: var(--disp); font-weight: 900;
  font-size: 3.5rem; line-height: .85; color: var(--yel);
  font-variant-numeric: tabular-nums;
}
.gpct small { font-size: 1.3rem; margin-left: 2px; }
.gauge > div:nth-child(2) { display: grid; gap: 3px; }
.gauge b { font-family: var(--disp); font-weight: 800; font-size: 1.3rem; line-height: 1; text-transform: uppercase; letter-spacing: .03em; }
.gauge span { font-size: .87rem; color: rgba(251,248,240,.66); line-height: 1.4; }
.gbar { grid-column: 1 / -1; height: 6px; border-radius: 3px; background: rgba(251,248,240,.14); overflow: hidden; margin-top: 6px; }
.gbar i { display: block; height: 100%; width: 0%; border-radius: 3px; background: linear-gradient(90deg, var(--yel), var(--org)); transition: width .55s var(--ease); }
.load .btn-row { margin-top: 22px; }
.load .sml { margin-top: 16px; color: rgba(251,248,240,.5); max-width: 52ch; }

/* -------------------------------------------------------- 14. NUMBER COLS */
.cols {
  display: grid; gap: 2px;
  grid-template-columns: repeat(3, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  counter-reset: c;
}
.cols > li { background: var(--paper); padding: clamp(28px, 3.4vw, 44px); }
.paper .cols { background: var(--line-2); border-color: var(--line-2); }
.paper .cols > li { background: var(--paper-2); }
.cn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink); color: var(--yel);
  font-family: var(--disp); font-weight: 800; font-size: 1.25rem; letter-spacing: .02em;
  margin-bottom: 20px;
}
.cols h3 { margin-bottom: 11px; }
.cols p { color: var(--tx-mid); font-size: .97rem; }

.cols.on-ink { background: var(--ink-3); border-color: var(--ink-3); }
.cols.on-ink > li { background: var(--ink); color: var(--tx-inv); }
.cols.on-ink .cn { background: var(--yel); color: var(--ink); }
.cols.on-ink p { color: rgba(251,248,240,.72); }

.why-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 22px;
  margin-top: clamp(34px, 4vw, 52px);
  padding-top: clamp(30px, 3.4vw, 44px);
  border-top: 2px solid var(--line-2);
}
.why-foot .big { color: var(--tx); }

/* -------------------------------------------------------------- 15. BAND */
.band {
  position: relative;
  display: grid; align-items: center;
  min-height: 520px;
  background: var(--ink);
  color: var(--tx-inv);
  overflow: hidden;
  isolation: isolate;
}
.band-media { position: absolute; inset: 0; z-index: 0; }
.band-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; }
.band-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(70% 60% at 50% 44%, rgba(231,130,47,.20), transparent 70%),
    linear-gradient(180deg, rgba(20,18,15,.72), rgba(20,18,15,.55) 45%, rgba(20,18,15,.9));
}
.band-in {
  position: relative; z-index: 2;
  text-align: center;
  padding-block: clamp(72px, 9vw, 116px);
}
.band-in .kick { justify-content: center; }
.band-in .sub {
  margin: 22px auto 0; max-width: 52ch;
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  color: rgba(251,248,240,.84);
  text-wrap: pretty;
}
.band-in .btn-row { margin-top: 32px; }

/* ----------------------------------------------------------- 16. GALLERY */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(78vw, 350px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  margin-inline: calc(var(--gut) * -1);
  padding-inline: var(--gut);
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
  overscroll-behavior-x: contain;
}
.rail::-webkit-scrollbar { height: 8px; }
.rail::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
.rail::-webkit-scrollbar-track { background: transparent; }
.rail figure {
  position: relative;
  scroll-snap-align: start;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--sh-1);
}
.rail img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .6s var(--ease);
}
.rail figure:hover img { transform: scale(1.05); }
.rail figcaption {
  position: absolute; inset: auto 0 0 0;
  display: grid; gap: 3px;
  padding: 42px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(20,18,15,.9) 58%);
  color: var(--tx-inv);
  font-size: .96rem; font-weight: 600;
}
.rail figcaption span {
  font-family: var(--disp); font-weight: 800;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--yel);
}
.rail-hint {
  display: flex; align-items: center; gap: 9px;
  margin-top: 16px;
  font-size: .82rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--tx-soft);
}
.rail-hint svg { width: 17px; height: 17px; }

/* ------------------------------------------------------- 17. TAKE / LEAVE */
.take {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}
.take > div {
  padding: clamp(28px, 3.4vw, 42px);
  border-radius: var(--r-lg);
  background: var(--ink);
  color: var(--tx-inv);
}
.take > div h3 { color: var(--yel); margin-bottom: 22px; }
.take > div.no { background: var(--paper-2); color: var(--tx); border: 1px solid var(--line); }
.paper .take > div.no { background: var(--paper); border-color: var(--line-2); }
.take > div.no h3 { color: var(--tx); }
.take ul { display: grid; gap: 11px; }
.take li {
  position: relative;
  padding-left: 32px;
  font-size: .98rem;
  color: rgba(251,248,240,.86);
}
.take .no li { color: var(--tx-mid); }
.take li::before {
  content: ""; position: absolute; left: 0; top: .34em;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--yel) no-repeat center/11px 11px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314120F' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}
.take .no li::before {
  background: var(--paper-3) no-repeat center/10px 10px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314120F' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
}
.take .no .sml { margin-top: 20px; }

/* -------------------------------------------------------------- 18. AREA */
.area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 4.4vw, 66px);
  align-items: center;
}
.towns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.towns li {
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--paper);
  font-size: .89rem; font-weight: 600;
  color: var(--tx-mid);
}
.towns li.home { background: var(--yel); border-color: var(--ink); color: var(--ink); font-weight: 700; }
.map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--paper-2);
  box-shadow: var(--sh-2);
}
.map iframe { width: 100%; height: clamp(320px, 42vw, 440px); border: 0; filter: saturate(.72) contrast(1.02); }
.map-pin {
  position: absolute; z-index: 2; left: 14px; top: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--ink); color: var(--tx-inv);
  font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  box-shadow: var(--sh-2);
}
.map-pin svg { width: 14px; height: 14px; color: var(--yel); }

.counties { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.counties > div { background: var(--paper); padding: clamp(24px, 2.6vw, 34px); }
.counties h3 { margin-bottom: 16px; padding-bottom: 14px; border-bottom: 2px solid var(--yel); }
.counties ul { display: grid; gap: 7px; }
.counties li { font-size: .96rem; color: var(--tx-mid); padding-left: 16px; position: relative; }
.counties li::before { content: ""; position: absolute; left: 0; top: .64em; width: 6px; height: 6px; border-radius: 50%; background: var(--org-tx); }

/* --------------------------------------------------------------- 19. FAQ */
.faq { display: grid; gap: 2px; max-width: 900px; margin-inline: auto; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.faq details { background: var(--paper); }
.paper .faq { background: var(--line-2); border-color: var(--line-2); }
.paper .faq details { background: var(--paper-2); }
.faq summary {
  display: flex; align-items: center; gap: 18px;
  padding: 22px clamp(20px, 2.6vw, 30px);
  cursor: pointer;
  list-style: none;
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(1.16rem, 2vw, 1.42rem); line-height: 1.14;
  color: var(--tx);
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--org-tx); }
.faq-ic {
  margin-left: auto; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ink); color: var(--yel);
  transition: transform .3s var(--ease), background-color .2s var(--ease);
}
.faq-ic svg { width: 16px; height: 16px; }
.faq details[open] .faq-ic { transform: rotate(135deg); color: var(--org-hi); }
.faq-a { padding: 0 clamp(20px, 2.6vw, 30px) 24px; }
.faq-a p { color: var(--tx-mid); max-width: 72ch; }

/* --------------------------------------------------------------- 20. CTA */
.cta {
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(231,130,47,.16), transparent 66%),
    var(--ink);
  color: var(--tx-inv);
}
.cta-in {
  text-align: center;
  padding-block: clamp(66px, 8.5vw, 116px);
}
.cta-in > p { margin: 20px auto 0; max-width: 56ch; color: rgba(251,248,240,.76); text-wrap: pretty; }
.cta .h2 { color: var(--tx-inv); }
.tel {
  display: inline-block;
  margin-top: 30px;
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(2.6rem, 8vw, 5rem); line-height: .9;
  letter-spacing: -.01em;
  color: var(--yel);
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.tel:hover { color: var(--yel-hi); transform: translateY(-2px); }
.cta-in .btn-row { margin-top: 30px; }
.cta .btn-ink { background: rgba(251,248,240,.09); color: var(--tx-inv); border-color: rgba(251,248,240,.2); }
.cta .btn-ink:hover { background: var(--tx-inv); color: var(--ink); }

/* ------------------------------------------------------ 21. CONTACT/FORM */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(38px, 5vw, 76px);
  align-items: start;
}
.cx { display: grid; gap: 2px; margin-top: 32px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.cx > * {
  display: flex; align-items: flex-start; gap: 15px;
  padding: 20px 22px;
  background: var(--paper);
  transition: background-color .22s var(--ease);
}
.cx a:hover { background: var(--paper-2); }
.cx svg { width: 21px; height: 21px; flex: none; color: var(--org-tx); margin-top: 3px; }
.cx > * > span { display: grid; gap: 2px; }
.cx b { font-family: var(--disp); font-weight: 800; font-size: 1.28rem; line-height: 1.1; letter-spacing: .01em; }
.cx span span { font-size: .9rem; color: var(--tx-mid); line-height: 1.45; }

.form {
  display: grid; gap: 18px;
  padding: clamp(26px, 3.2vw, 40px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
}
.paper .form { background: var(--paper); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fld { display: grid; gap: 7px; }
.fld label {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--tx-mid);
}
.fld label em { font-style: normal; font-weight: 500; text-transform: none; letter-spacing: .02em; color: var(--tx-soft); }
.fld input, .fld select, .fld textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  background: #FFFDF7;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  font-size: 16px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.fld textarea { min-height: 128px; resize: vertical; line-height: 1.55; }
.fld select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355503F' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px 17px;
  padding-right: 42px;
}
.fld input::placeholder, .fld textarea::placeholder { color: #7F7767; }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none;
  border-color: var(--org-tx);
  box-shadow: 0 0 0 3px rgba(150,73,12,.24);
  background: #fff;
}
.fld input:focus-visible, .fld select:focus-visible, .fld textarea:focus-visible { outline: none; }
.hint { font-size: .82rem; color: #B4453A; display: none; }
.fld.bad input, .fld.bad select, .fld.bad textarea { border-color: #B4453A; background: #FFF6F4; }
.fld.bad .hint { display: block; }
.hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.f-msg {
  padding: 15px 18px;
  border-radius: var(--r-sm);
  font-size: .95rem;
  background: var(--paper-2);
  border-left: 4px solid var(--org-tx);
  line-height: 1.5;
}
/* Stays in the accessibility tree while empty (display:none would drop the
   live region, and a status announced from a removed node is never read). */
.f-msg:empty {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.f-msg.ok { background: #F0F6E9; border-left-color: #5A8A2E; }
.f-msg.err { background: #FFF3EE; border-left-color: #B4453A; }
.f-msg a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.f-note { font-size: .89rem; color: var(--tx-soft); text-align: center; }
.f-note a { font-weight: 700; color: var(--tx); text-decoration: underline; text-underline-offset: 3px; }

/* ---------------------------------------------------- 22. PAGE HERO (sub) */
.phero {
  position: relative;
  display: grid; align-items: end;
  min-height: 500px;
  background: var(--ink);
  color: var(--tx-inv);
  overflow: hidden;
  isolation: isolate;
}
.phero-media { position: absolute; inset: 0; z-index: 0; }
.phero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%;
  animation: kenburns 40s ease-in-out infinite alternate;
}
.phero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(80% 60% at 30% 40%, rgba(231,130,47,.14), transparent 70%),
    linear-gradient(180deg, rgba(20,18,15,.86) 0%, rgba(20,18,15,.5) 38%, rgba(20,18,15,.92) 100%);
}
.phero .wrap { position: relative; z-index: 2; }
.phero-in { padding: calc(var(--hdr-h) + 72px) 0 clamp(52px, 6vw, 80px); max-width: 46rem; }
.phero .lede { margin-top: 20px; }
.phero .btn-row { margin-top: 30px; }
.crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px;
  margin-bottom: 22px;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(251,248,240,.62);
}
.crumb a { transition: color .18s var(--ease); }
.crumb a:hover { color: var(--yel); }
.crumb i { font-style: normal; color: rgba(251,248,240,.34); }
.crumb span { color: var(--yel); }

/* ------------------------------------------------------ 23. SERVICE PAGE */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(36px, 4.4vw, 68px);
  align-items: start;
}
.prose > p { margin-top: 18px; color: var(--tx-mid); font-size: 1.05rem; max-width: 66ch; }
.prose .h2 { margin-bottom: 6px; }
.ticks { display: grid; gap: 12px; margin-top: 30px; }
.ticks li { position: relative; padding-left: 34px; font-size: 1rem; font-weight: 500; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .28em;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--ink) no-repeat center/12px 12px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5E63C' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 38px; }
.duo figure { border-radius: var(--r); overflow: hidden; background: var(--ink); }
.duo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s var(--ease); }
.duo figure:hover img { transform: scale(1.04); }
.duo figcaption { padding: 14px 16px; font-size: .87rem; color: var(--tx-inv-2); line-height: 1.45; }

.aside {
  position: sticky; top: calc(var(--hdr-h) + 20px);
  display: grid; gap: 14px;
  padding: clamp(26px, 3vw, 36px);
  background: var(--ink);
  color: var(--tx-inv);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
}
.aside h3 { color: var(--yel); }
.aside > p { color: rgba(251,248,240,.76); font-size: .98rem; }
.aside .ph {
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(2rem, 3.6vw, 2.7rem); line-height: 1;
  letter-spacing: -.005em; color: var(--tx-inv);
  transition: color .2s var(--ease);
}
.aside .ph:hover { color: var(--yel); }
.aside .btn { width: 100%; }
.aside-list { display: grid; gap: 10px; margin-top: 6px; padding-top: 20px; border-top: 1px solid var(--line-inv); }
.aside-list li { position: relative; padding-left: 26px; font-size: .9rem; color: rgba(251,248,240,.74); }
.aside-list li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--yel) no-repeat center/9px 9px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314120F' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

.inc { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; }
.inc li { background: var(--paper-2); padding: 24px 26px; font-size: .96rem; color: var(--tx-mid); line-height: 1.55; }
.inc b { display: block; font-family: var(--disp); font-weight: 800; font-size: 1.28rem; line-height: 1.1; color: var(--tx); margin-bottom: 6px; letter-spacing: .01em; }

/* --------------------------------------------------- 24. SERVICES CARDS */
.svc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.svc-card {
  position: relative;
  display: block;
  min-height: 380px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
  box-shadow: var(--sh-1);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}
.svc-card img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.svc-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,18,15,.28) 0%, rgba(20,18,15,.62) 46%, rgba(20,18,15,.95) 100%);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.svc-card:hover img { transform: scale(1.06); }
.cnum {
  position: absolute; z-index: 3; top: 22px; left: 26px;
  font-family: var(--disp); font-weight: 900; font-size: 3.4rem; line-height: .8;
  color: transparent; -webkit-text-stroke: 2px rgba(245,230,60,.6);
}
.svc-card .in {
  position: absolute; z-index: 3; inset: auto 0 0 0;
  display: grid; gap: 10px;
  padding: 28px clamp(22px, 2.6vw, 32px) 26px;
  color: var(--tx-inv);
}
.svc-card .in p { font-size: .96rem; color: rgba(251,248,240,.82); max-width: 42ch; }
.go {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 6px;
  font-family: var(--disp); font-weight: 800;
  font-size: .96rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--yel);
}
.go svg { width: 17px; height: 17px; transition: transform .26s var(--ease); }
.svc-card:hover .go svg { transform: translateX(5px); }

/* ------------------------------------------------------------- 25. FOOTER */
.ft {
  background: var(--ink);
  color: var(--tx-inv-2);
  padding-top: clamp(56px, 6.4vw, 92px);
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
  font-size: .95rem;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.25fr;
  gap: clamp(30px, 3.6vw, 56px);
  padding-bottom: clamp(38px, 4.4vw, 60px);
}
.ft .brand { margin-right: 0; margin-bottom: 20px; }
.ft-about { color: var(--tx-inv-2); max-width: 42ch; line-height: 1.6; }
.ft-about b { color: var(--tx-inv); font-weight: 600; }
.ft-fam {
  display: flex; align-items: center; gap: 13px;
  margin-top: 22px; padding: 14px 16px;
  border: 1px solid var(--line-inv); border-radius: var(--r);
  background: rgba(251,248,240,.04);
  font-size: .87rem; line-height: 1.5;
}
.ft-fam img { width: auto; height: 40px; flex: none; filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff) drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff); }
.ft-fam a { color: var(--yel); text-decoration: underline; text-underline-offset: 3px; }
.ft .h4 { color: var(--tx-inv); margin-bottom: 20px; }
.ft-links { display: grid; gap: 11px; }
.ft-links a { transition: color .18s var(--ease); }
.ft-links a:hover { color: var(--yel); }
.ft-contact { display: grid; gap: 15px; }
.ft-contact > * { display: flex; align-items: flex-start; gap: 11px; line-height: 1.5; }
.ft-contact svg { width: 18px; height: 18px; flex: none; color: var(--org); margin-top: 3px; }
.ft-contact a:hover { color: var(--yel); }
.ft-phone {
  display: block !important;
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(2rem, 3.4vw, 2.6rem); line-height: 1;
  color: var(--yel); letter-spacing: -.005em;
}
.ft-phone:hover { color: var(--yel-hi); }
.ft-bot {
  display: flex; flex-wrap: wrap; gap: 12px 30px;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid var(--line-inv);
  font-size: .8rem;
  color: rgba(251,248,240,.5);
}

/* --------------------------------------------------------- 26. MOBILE DOCK */
.dock {
  position: fixed; z-index: 110;
  left: 0; right: 0; bottom: 0;
  display: none;
  gap: 10px;
  padding: 10px max(12px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom));
  background: rgba(20,18,15,.96);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-inv);
  transform: translateY(102%);
  transition: transform .34s var(--ease);
}
.dock.up { transform: translateY(0); }
.dock .btn { flex: 1 1 0; min-width: 0; --bh: 50px; padding: 0 12px; font-size: 1.04rem; }
.dock .btn span { overflow: hidden; text-overflow: ellipsis; }

/* --------------------------------------------------------------- 27. 404 */
.lost {
  min-height: 78vh;
  display: grid; place-content: center;
  text-align: center;
  background: var(--ink);
  color: var(--tx-inv);
  padding: calc(var(--hdr-h) + 80px) 0 100px;
}
.lost .code {
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(7rem, 26vw, 17rem); line-height: .8;
  color: transparent; -webkit-text-stroke: 2px rgba(245,230,60,.3);
  margin-bottom: 6px;
}
.lost .lede { margin: 20px auto 0; max-width: 52ch; }
.lost .btn-row { margin-top: 32px; justify-content: center; }

/* ---------------------------------------------------------- 28. REVEALS
   Both classes are set synchronously in <head> (no flash of un-revealed
   content), and the same inline script strips .rv-ready after 4s if
   /js/site.js never booted — so a missing script can never leave the page
   blank. site.js adds .in as sections enter the viewport. */
.js.rv-ready .rv {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.js.rv-ready .rv.rv-d1 { transition-delay: .12s; }
.js.rv-ready .rv.in { opacity: 1; transform: none; }

/* ------------------------------------------- 28b. PHOTO FOCAL POINTS -----
   Every photograph is placed with object-fit:cover, so the visible crop is
   set here rather than baked into the file. These values follow the subject
   in each source frame — without them the default centre crop cuts heads,
   appliances and door frames in half. */
img[src*="sc-junk"]      { object-position: 50% 71%; }
img[src*="sc-cleanout"]  { object-position: 50% 40%; }
img[src*="band-sunrise"] { object-position: 50% 46%; }
img[src*="story.jpg"]    { object-position: 55% 50%; }
img[src*="gal-1.jpg"]    { object-position: 36% 48%; }
img[src*="gal-2.jpg"]    { object-position: 34% 50%; }
img[src*="gal-5.jpg"]    { object-position: 50% 55%; }
img[src*="gal-7.jpg"]    { object-position: 42% 50%; }
img[src*="gal-8.jpg"]    { object-position: 50% 55%; }
img[src*="ph-services"]  { object-position: 50% 45%; }

/* ------------------------------------------------------- 29. BREAKPOINTS */
@media (max-width: 1080px) {
  .nav a { padding: 9px 9px; font-size: .82rem; }
  .ft-grid { grid-template-columns: 1.5fr 1fr 1.3fr; }
  .ft-grid > div:nth-child(3) { display: none; }
}

@media (max-width: 940px) {
  :root { --hdr-h: 66px; }
  .nav { display: none; }
  .burger { display: inline-flex; }
  .hdr-right .btn-sm { display: none; }
  .dock { display: flex; }
  /* clear the sticky call dock without leaving a pale strip under the footer */
  .ft { padding-bottom: calc(98px + env(safe-area-inset-bottom)); }

  .load-grid, .contact, .split, .area, .take { grid-template-columns: 1fr; }
  .svc-cards { grid-template-columns: 1fr; }
  .svc-card { min-height: 320px; }
  .fam, .cols { grid-template-columns: 1fr; }
  .aside { position: static; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .ft-grid > div:nth-child(3) { display: block; }
  .ft-grid > div:first-child { grid-column: 1 / -1; }
  .scene { min-height: 480px; }
  .scene-col { max-width: none; }
  .scene.right .scene-in { display: block; }
  .scene::after, .scene.right::after {
    background: linear-gradient(180deg, rgba(20,18,15,.72) 0%, rgba(20,18,15,.86) 55%, rgba(20,18,15,.95) 100%);
  }
}

@media (max-width: 700px) {
  :root { --gut: 18px; --pad-sec: clamp(52px, 13vw, 74px); }
  body { font-size: 16.5px; }

  /* --- mobile economy: the phone gets the highlight reel ---------------- */
  .hide-sm { display: none !important; }

  .hero { min-height: 92svh; }
  .hero-media img { object-position: 52% 52%; }
  .hero-in { padding-top: calc(var(--hdr-h) + 34px); padding-bottom: 46px; }
  .hero-sub { font-size: 1.04rem; max-width: 30ch; }
  .hero-cta { margin-top: 26px; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { gap: 8px 16px; margin-top: 26px; padding-top: 20px; }
  .hero-trust li { font-size: .72rem; }
  .hero-trust li:nth-child(n+4) { display: none; }

  .tape-track b { font-size: 1.06rem; gap: 14px; padding-right: 14px; }

  .scene { min-height: 0; }
  .scene-in { padding-block: 54px; }
  .s-num { font-size: 3.6rem; margin-bottom: 8px; }
  .s-p { margin-top: 14px; font-size: .99rem; }
  .s-chips { margin-top: 16px; gap: 6px; }
  .s-chips li { font-size: .77rem; padding: 6px 12px; }
  .s-chips li:nth-child(n+4) { display: none; }
  .scene .btn-row { margin-top: 22px; }
  .scene .btn { width: 100%; }

  .fam > div { padding: 22px; }
  .fn { font-size: 2.4rem; margin-bottom: 12px; }

  .load-grid { gap: 30px; }
  .lchips { margin-top: 22px; gap: 7px; }
  .lchip { font-size: .84rem; padding: 7px 14px 7px 11px; }
  .rig { padding: 12px 10px 4px; }
  .gauge { padding: 16px 18px; gap: 4px 14px; }
  .gpct { font-size: 2.8rem; }
  .load .btn { width: 100%; }

  .cols > li { padding: 24px 22px; }
  .cn { width: 40px; height: 40px; font-size: 1.1rem; margin-bottom: 14px; }

  .band { min-height: 0; }
  .band-in { padding-block: 62px; }
  .band-in .btn { width: 100%; }

  .rail { grid-auto-columns: 74vw; }
  .take > div { padding: 24px 22px; }
  .towns { gap: 6px; }
  .towns li { font-size: .82rem; padding: 7px 13px; }
  .towns li:nth-child(n+11) { display: none; }

  .faq summary { padding: 18px 20px; gap: 14px; font-size: 1.1rem; }
  .faq-a { padding: 0 20px 20px; }

  .cta-in { padding-block: 60px; }
  .cta-in .btn { width: 100%; }
  .tel { margin-top: 22px; }

  .contact { gap: 34px; }
  .f-row { grid-template-columns: 1fr; gap: 16px; }
  .form { padding: 22px 20px; gap: 16px; }
  .cx { margin-top: 24px; }
  .cx > * { padding: 17px 18px; }

  .phero { min-height: 0; }
  .phero-in { padding: calc(var(--hdr-h) + 54px) 0 46px; }
  .phero .btn { width: 100%; }
  .crumb { font-size: .7rem; margin-bottom: 16px; }

  .duo { grid-template-columns: 1fr; }
  .aside { padding: 24px 22px; }
  .inc li { padding: 20px 22px; }
  .counties > div { padding: 22px; }

  .ft { padding-top: 52px; }
  .ft-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .ft-bot { font-size: .74rem; }
  .ft-bot span:last-child { display: none; }

  .why-foot { flex-direction: column; align-items: flex-start; }
  .why-foot .btn { width: 100%; }
  .sec-head { margin-bottom: 30px; }
}

@media (max-width: 420px) {
  .brand-t b { font-size: 1.42rem; }
  .brand-t span { font-size: .58rem; letter-spacing: .17em; }
  .brand-chick { height: 36px; }
  .btn-lg { --bh: 56px; font-size: 1.16rem; padding: 0 22px; }
  .dock .btn { font-size: .96rem; letter-spacing: .03em; }

  /* keep the whole hero inside one screen on a small phone */
  .mark { width: min(340px, 80vw); margin-bottom: 16px; }
  .mark-name { font-size: 2.1rem; }
  .hero-in { padding-top: calc(var(--hdr-h) + 26px); padding-bottom: 38px; }
  .pill { margin-bottom: 16px; font-size: .68rem; padding: 7px 14px 7px 11px; }
  .hero-sub { margin-top: 16px; font-size: .99rem; }
  .hero-cta { margin-top: 22px; }
  .hero-trust { margin-top: 22px; padding-top: 18px; }
  .hero-trust li:nth-child(n+3) { display: none; }
}

/* ------------------------------------------------- 30. MOTION PREFERENCES */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero-media img, .phero-media img { animation: none; transform: scale(1.04); }
  .tape-track { animation: none; }
  .js.rv-ready .rv { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------- 31. PRINT */
@media print {
  .hdr, .sheet, .dock, .tape, .rail-hint, .map, .skip { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .hero, .scene, .band, .cta, .load, .phero, .ft { background: #fff !important; color: #000 !important; }
  .hero-media, .scene-bg, .band-media, .phero-media, .hero-scrim, .band-scrim, .phero-scrim { display: none !important; }
  a[href^="tel:"]::after { content: " (" attr(href) ")"; }
}


/* 2026-09-20 Calendly booking */
.hdr-right{gap:10px}
.bk-nav{white-space:nowrap;background:rgba(10,10,10,.62);color:#fff;border-color:rgba(255,255,255,.55);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px)}
.bk-nav:hover{background:rgba(10,10,10,.85);border-color:#fff}
@media (max-width:760px){.bk-nav{display:none}}
.bk-contact{margin-bottom:18px}
