/* ===== Big & Little — flattened tokens (fonts loaded via <link> in HTML) ===== */
/* =============================================================
   Big & Little Junk Removal — Color tokens
   Pulled directly from the logo: olive shield, khaki ground,
   cream type, clay rust accents. No pure white, no pure black.
   ============================================================= */

:root {
  /* ---------- BASE: Creams (page bg, type on dark) ---------- */
  --cream:        #f5eddb;  /* default light bg / type on dark hero */
  --cream-soft:   #faf5e8;  /* lightest, slightly warmer body bg */
  --cream-deep:   #ece2c9;  /* alt section bg, sits below cream */

  /* ---------- BASE: Olives (type, shields, footer) ---------- */
  --olive-ink:    #1f2114;  /* primary body type, footer bg */
  --olive-deep:   #2c3020;  /* headings, dark surfaces */
  --olive:        #4a5034;  /* secondary type, paragraph color on cream */
  --olive-mid:    #6c724e;  /* tertiary / meta labels */
  --khaki:        #8c8454;  /* secondary warm, logo background */

  /* ---------- BASE: Clay (the one rust accent) ---------- */
  --clay:         #b04a1f;  /* CTAs, links, eyebrows, stars */
  --clay-deep:    #8e3a16;  /* hover / pressed accent */

  /* ---------- BASE: Lines / dividers ---------- */
  --line:         rgba(31, 33, 20, 0.12);
  --line-strong:  rgba(31, 33, 20, 0.22);

  /* ---------------------------------------------------------------
     SEMANTIC ALIASES — prefer these in components so swaps are local.
     --------------------------------------------------------------- */
  --bg:            var(--cream-soft);
  --bg-alt:        var(--cream-deep);
  --bg-dark:       var(--olive-ink);

  --fg:            var(--olive-ink);   /* body */
  --fg-strong:     var(--olive-deep);  /* headings */
  --fg-muted:      var(--olive);       /* secondary copy */
  --fg-subtle:     var(--olive-mid);   /* eyebrows, meta */
  --fg-on-dark:    var(--cream);       /* type over olive / photo */

  --accent:        var(--clay);
  --accent-strong: var(--clay-deep);
  --link:          var(--clay-deep);
  --link-hover:    var(--clay);

  --surface:       var(--cream-soft);  /* default card */
  --surface-alt:   var(--cream);       /* card on section--alt */

  /* Semantic success tint (contact form banner) */
  --success-bg:    rgba(106, 130, 70, 0.12);
  --success-fg:    #3d5526;
  --success-line:  rgba(106, 130, 70, 0.35);
}

/* =============================================================
   Big & Little Junk Removal — Typography tokens
   Fraunces 700 display (tight) + Inter 400/500/600 body.
   Wide-tracked uppercase clay eyebrows above section heads.
   ============================================================= */

:root {
  /* ---------- Families ---------- */
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
                Roboto, Helvetica, Arial, sans-serif;
  /* No mono typeface in the brand. If code UI ever appears, fall back
     to the system monospace stack — never introduce a third face. */
  --font-mono:  ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* ---------- Display / headings (Fraunces 700) ---------- */
  --h1-size:  clamp(2.4rem, 6vw, 4.6rem);
  --h1-line:  1.04;   /* @kind other */
  --h1-track: -0.02em;

  --h2-size:  clamp(2rem, 4vw, 3rem);
  --h2-line:  1.1;    /* @kind other */
  --h2-track: -0.01em;

  --h3-size:  1.3rem;
  --h3-line:  1.2;    /* @kind other */
  --h3-track: -0.01em;

  /* ---------- Body / UI (Inter) ---------- */
  --body-size:  17px;     /* base 17px / 1.65 */
  --body-line:  1.65;     /* @kind other */
  --lede-size:  1.08rem;  /* section sub-headlines, --fg-muted */
  --small-size: 0.92rem;
  --meta-size:  0.82rem;

  /* ---------- Eyebrows / overlines (Inter 600, clay, wide) ---------- */
  --eyebrow-size:  0.78rem;
  --eyebrow-track: 0.18em;

  /* ---------- Weights ---------- */
  --weight-body:    400;
  --weight-medium:  500;  /* emphasis / nav links */
  --weight-semi:    600;  /* labels, buttons, eyebrows */
  --weight-bold:    700;  /* display, rare in body */
  --weight-black:   900;  /* wordmark lockup only */
}

/* =============================================================
   Big & Little Junk Removal — Spacing, shape, elevation, motion
   Generous rhythm. Pill buttons, 14px cards, olive-tinted shadows.
   ============================================================= */

:root {
  /* ---------- Layout ---------- */
  --container: 1180px;     /* max content width */
  --gutter:    24px;       /* page side padding */
  --section-y: clamp(64px, 9vw, 120px); /* @kind spacing */

  /* ---------- Spacing scale (4px base) ---------- */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* ---------- Corner radii ---------- */
  --radius-sm:   6px;    /* form inputs, small chips, success banner */
  --radius:      14px;   /* cards, icon tiles, gallery items */
  --radius-lg:   22px;   /* form container, hero logo */
  --radius-pill: 999px;  /* buttons, nav CTA — always fully rounded */

  /* ---------- Shadows (olive-ink tinted, never pure black) ---------- */
  --shadow-sm: 0 1px 2px rgba(31, 33, 20, 0.06), 0 1px 3px rgba(31, 33, 20, 0.08);
  --shadow-md: 0 8px 24px rgba(31, 33, 20, 0.10), 0 2px 6px rgba(31, 33, 20, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 33, 20, 0.20), 0 6px 12px rgba(31, 33, 20, 0.10);

  /* ---------- Motion (restrained, never bouncy) ---------- */
  --ease:   cubic-bezier(.2, .7, .2, 1); /* @kind other */
  --t-fast: 150ms; /* @kind other */
  --t-med:  250ms; /* @kind other */
  --t-slow: 600ms; /* @kind other */
}

/* =============================================================
   Big & Little Junk Removal — Base element styles
   Drop styles.css into a prototype and plain HTML is already
   on-brand without any extra classes.
   ============================================================= */

html {
  color: var(--fg);
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--body-size);
  line-height: var(--body-line);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: var(--weight-bold);
  color: var(--fg-strong);
  margin: 0;
}
h1 { font-size: var(--h1-size); line-height: var(--h1-line); letter-spacing: var(--h1-track); }
h2 { font-size: var(--h2-size); line-height: var(--h2-line); letter-spacing: var(--h2-track); }
h3 { font-size: var(--h3-size); line-height: var(--h3-line); letter-spacing: var(--h3-track); }

p { margin: 0; }

a {
  color: var(--link);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--t-fast) var(--ease);
}
a:hover { color: var(--link-hover); }

small, .meta {
  font-size: var(--meta-size);
  color: var(--fg-subtle);
}

img { max-width: 100%; display: block; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* The load-bearing eyebrow / overline pattern — above every section head. */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--weight-semi);
  font-size: var(--eyebrow-size);
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--accent-strong);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ===== components ===== */
/* =============================================================
   Big & Little Junk Removal — Component classes
   Styling for the reusable React primitives (components/**).
   Components reference these via className; tokens come from
   the token files. Shipped to consumers via styles.css.
   ============================================================= */

/* ---------------------------------------------------------------
   Button — always fully pill-rounded. Primary clay, ghost over photo.
   --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-weight: var(--weight-semi);
  font-size: 1rem;
  line-height: 1;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-med) var(--ease),
              color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }            /* no press-shrink */
.btn[disabled] { opacity: 0.6; cursor: default; transform: none; }

.btn--primary {
  background: var(--clay);
  color: var(--cream-soft);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { background: var(--clay-deep); color: var(--cream-soft); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 237, 219, 0.6);
}
.btn--ghost:hover { background: rgba(245, 237, 219, 0.12); color: var(--cream); border-color: var(--cream); }

/* Solid olive ghost, for use on cream surfaces (not over photo) */
.btn--outline {
  background: transparent;
  color: var(--olive-deep);
  border-color: var(--line-strong);
}
.btn--outline:hover { background: rgba(31, 33, 20, 0.05); border-color: var(--olive-deep); color: var(--olive-deep); }

.btn--lg { font-size: clamp(1.1rem, 2vw, 1.4rem); padding: 18px 28px; }
.btn--block { width: 100%; justify-content: center; padding: 16px 22px; }

/* ---------------------------------------------------------------
   Service card — olive icon tile + Fraunces title + olive copy.
   --------------------------------------------------------------- */
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--olive-deep);
  color: var(--cream);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 30px; height: 30px; }
.service-card h3 { color: var(--olive-deep); margin-bottom: 10px; }
.service-card p  { color: var(--olive); margin: 0; }

/* ---------------------------------------------------------------
   Review card — clay stars + Fraunces pull-quote + cite footer.
   --------------------------------------------------------------- */
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review-card__stars { display: flex; gap: 4px; color: var(--clay); }
.review-card__stars svg { width: 20px; height: 20px; }
.review-card blockquote { margin: 0; }
.review-card blockquote p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--olive-deep);
  font-weight: 500;
  margin: 0;
}
.review-card footer { margin-top: auto; display: flex; flex-direction: column; }
.review-card cite { font-style: normal; font-weight: var(--weight-semi); color: var(--olive-deep); font-size: 0.95rem; }
.review-card footer span { font-size: var(--meta-size); color: var(--olive-mid); margin-top: 2px; }

/* ---------------------------------------------------------------
   Form field — label + input/textarea. Clay focus glow.
   --------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 0.82rem; font-weight: var(--weight-semi); color: var(--olive-deep); }
.field__optional { font-weight: 400; color: var(--olive-mid); }
.field input,
.field textarea {
  font: inherit;
  color: var(--olive-ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(176, 74, 31, 0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------------------------------------------------------------
   Section head — eyebrow + title + lede stack (centered).
   --------------------------------------------------------------- */
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head__title { color: var(--olive-deep); }
.section-head__lede { margin-top: 16px; color: var(--olive); font-size: var(--lede-size); }

/* ===== refined home/case-study styles ===== */
/* ============================================================
   Refined Workwear — Direction A
   Stays on the cream/olive/clay palette. Sharpens it: stamped
   numeric service marks, before/after slider gallery, illustrated
   Monroe County map, 3-step inline quote form.
   ============================================================ */



/* Direction A override: recolor the clay/rust accent to army green */
:root {
  --clay:      #555f33;  /* army green accent — CTAs, links, eyebrows, icons, stars */
  --clay-deep: #3f471f;  /* hover / pressed accent */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-sans); font-size: 17px; line-height: 1.65; color: var(--olive-ink); background: var(--cream-soft); }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; margin: 0; color: var(--olive-deep); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0; }
a  { color: var(--clay-deep); text-underline-offset: 3px; }
a:hover { color: var(--clay); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section   { padding: clamp(64px, 9vw, 120px) 0; }
.section--alt { background: var(--cream-deep); }
.section__head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section__head--center { text-align: center; }
.section__title { color: var(--olive-deep); }
.section__lede  { margin-top: 16px; color: var(--olive); font-size: 1.08rem; }
.eyebrow { font-family: var(--font-sans); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay-deep); margin: 0 0 12px; }

/* Hand-stamped detail: monospace work-order number, used as eyebrow accents */
.stamp {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-mid);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.stamp::before { content: ""; width: 6px; height: 6px; background: var(--clay); border-radius: 2px; transform: rotate(45deg); }

/* ---------------- Buttons ---------------- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; font-family: var(--font-sans); font-weight: 600; font-size: 1rem; line-height: 1; border-radius: 999px; border: 1.5px solid transparent; text-decoration: none; cursor: pointer; transition: transform .15s, background .2s, color .2s, box-shadow .2s, border-color .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--clay); color: var(--cream-soft); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--clay-deep); color: var(--cream-soft); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(245,237,219,0.6); }
.btn--ghost:hover { background: rgba(245,237,219,0.12); color: var(--cream); border-color: var(--cream); }
.btn--outline { background: transparent; color: var(--olive-deep); border-color: var(--olive-deep); }
.btn--outline:hover { background: var(--olive-deep); color: var(--cream-soft); }
.btn--block { width: 100%; justify-content: center; padding: 16px 22px; }
.btn--lg { padding: 18px 28px; font-size: 1.15rem; }

/* ---------------- Nav (mirror of UI kit) ---------------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; color: var(--cream); transition: background .25s, box-shadow .25s; }
.nav.is-stuck { background: rgba(28,30,18,0.96); box-shadow: var(--shadow-sm); backdrop-filter: saturate(140%) blur(6px); }
.nav__inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: 24px; padding: 16px 24px; }
.nav__brand { display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; margin-right: auto; }
.nav__mark { width: 32px; height: 32px; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-text strong { font-family: var(--font-serif); font-weight: 900; font-size: 1.05rem; }
.nav__brand-text em { font-style: normal; font-family: var(--font-serif); font-weight: 900; font-size: 1.05rem; opacity: 1; margin-top: 2px; }
.nav__brand-loc { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.78; margin-top: 3px; }
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__links a { color: inherit; text-decoration: none; font-weight: 500; font-size: 0.95rem; padding: 6px 2px; border-bottom: 2px solid transparent; transition: border-color .15s; }
.nav__links a:hover, .nav__links a.is-current { border-bottom-color: var(--clay); }
.nav__cta { display: inline-flex; align-items: center; gap: 8px; background: var(--clay); color: var(--cream-soft); text-decoration: none; font-weight: 600; padding: 10px 18px; border-radius: 999px; font-size: 0.92rem; white-space: nowrap; }
.nav__cta:hover { background: var(--clay-deep); color: var(--cream-soft); }
@media (max-width: 760px) { .nav__links { display: none; } .nav__cta span { display: none; } .nav__cta { padding: 10px 12px; } }

/* ---------------- Hero ---------------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; color: var(--cream); overflow: hidden; padding: 140px 24px 80px; }
.hero__media { position: absolute; inset: 0; background-image: url("assets/img/hero.jpg"); background-size: cover; background-position: center 60%; transform: scale(1.04); }
.hero__scrim { position: absolute; inset: 0; background:
  linear-gradient(95deg, rgba(20,22,12,0.85) 0%, rgba(20,22,12,0.55) 55%, rgba(20,22,12,0.4) 100%),
  linear-gradient(180deg, rgba(20,22,12,0.3) 0%, rgba(20,22,12,0.0) 30%, rgba(20,22,12,0.7) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 720px; }
.hero__tagline { font-family: var(--font-sans); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.28em; color: var(--cream); margin-bottom: 22px; opacity: 0.92; }
.hero__headline { font-family: var(--font-serif); font-weight: 700; font-size: clamp(2.4rem, 5.6vw, 4.4rem); line-height: 1.08; letter-spacing: -0.025em; color: var(--cream-soft); text-shadow: 0 2px 24px rgba(0,0,0,0.35); margin: 0; }
.hero__sub { margin: 22px 0 0; max-width: 560px; font-size: 1.1rem; color: rgba(245,237,219,0.92); line-height: 1.6; }
.hero__ctas { margin-top: 32px; display: inline-flex; flex-wrap: wrap; gap: 14px; }
.hero__meta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 20px 32px; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,237,219,0.75); }
.hero__meta b { color: var(--cream); font-weight: 600; margin-right: 6px; }

/* Hero side detail — work order stamp */
.hero__stamp {
  position: absolute; right: 32px; top: 130px; z-index: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px; line-height: 1.5;
  color: rgba(245,237,219,0.72);
  text-transform: uppercase; letter-spacing: 0.14em;
  text-align: right;
  border-right: 2px solid var(--clay);
  padding-right: 14px;
}
.hero__stamp b { display: block; color: var(--cream); font-weight: 600; }
@media (max-width: 760px) { .hero__stamp { display: none; } }

/* ---------------- Services — numbered tiles ---------------- */
.service-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card {
  background: var(--cream-soft);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 32px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: background .2s;
  position: relative;
}
.service-card:hover { background: var(--cream); }
.service-card__icon {
  color: var(--clay);
  width: 56px; height: 56px;
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 { color: var(--olive-deep); margin-bottom: 8px; }
.service-card p  { color: var(--olive); font-size: 0.96rem; max-width: 30ch; }
.section--alt .service-card { background: var(--cream); }
.section--alt .service-card:hover { background: var(--cream-soft); }

/* ---------------- Case study previews ---------------- */
.cases { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 20px; }
.case {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  background: var(--olive-deep);
  aspect-ratio: 4 / 3;
  color: var(--cream);
}
.case--feature { grid-row: span 2; aspect-ratio: auto; min-height: 100%; }
.case img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.case:hover img { transform: scale(1.04); }
.case__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,22,12,0) 40%, rgba(20,22,12,0.85) 100%); }
.case__meta { position: absolute; inset: auto 0 0 0; padding: 20px 22px; color: var(--cream); }
.case__tag { display: inline-flex; align-items: center; gap: 8px; font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); margin-bottom: 8px; }
.case__tag b { background: var(--clay); color: var(--cream-soft); padding: 3px 8px; border-radius: 4px; font-weight: 600; }
.case__title { font-family: var(--font-serif); font-weight: 700; font-size: 1.4rem; line-height: 1.15; letter-spacing: -0.01em; }
.case--feature .case__title { font-size: 1.85rem; }
@media (max-width: 880px) {
  .cases { grid-template-columns: 1fr 1fr; }
  .case--feature { grid-row: span 1; grid-column: span 2; aspect-ratio: 16/9; }
}

/* ---------------- Before / After slider ---------------- */
.ba {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--olive-deep);
  user-select: none;
  touch-action: none;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after-wrap { position: absolute; inset: 0; clip-path: inset(0 0 0 50%); transition: clip-path .05s linear; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--cream); transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 0 1px rgba(20,22,12,0.4), 0 0 18px rgba(20,22,12,0.4); }
.ba__handle-dot { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 999px; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--olive-deep); font-weight: 700; box-shadow: var(--shadow-md); }
.ba__label { position: absolute; top: 14px; padding: 6px 12px; border-radius: 4px; background: rgba(20,22,12,0.78); color: var(--cream); font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; backdrop-filter: blur(4px); }
.ba__label--before { left: 14px; }
.ba__label--after  { right: 14px; }
.ba__caption { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; font-family: ui-monospace, monospace; font-size: 12px; color: var(--olive-mid); letter-spacing: 0.06em; text-transform: uppercase; }
.ba__caption b { color: var(--olive-deep); font-weight: 600; }

/* ---------------- Service area map ---------------- */
.map-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
@media (max-width: 880px) { .map-wrap { grid-template-columns: 1fr; } }
.map {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  position: relative;
}
.map svg { width: 100%; height: auto; display: block; }
.map__legend { position: absolute; left: 24px; bottom: 24px; display: flex; flex-direction: column; gap: 6px; font-family: ui-monospace, monospace; font-size: 11px; color: var(--olive-mid); letter-spacing: 0.06em; text-transform: uppercase; }
.map__legend span { display: inline-flex; align-items: center; gap: 8px; }
.map__legend i { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }
.area-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; }
.area-list li { font-family: var(--font-sans); color: var(--olive-deep); font-size: 0.96rem; padding-left: 16px; position: relative; }
.area-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; background: var(--clay); border-radius: 2px; transform: rotate(45deg); }

/* ---------------- Multi-step quote form ---------------- */
.quote-form { background: var(--cream-soft); border: 1px solid var(--line); border-radius: 22px; padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow-md); }
.steps { display: flex; gap: 10px; margin-bottom: 28px; align-items: center; }
.step-dot { width: 28px; height: 28px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-family: ui-monospace, monospace; font-size: 12px; font-weight: 600; background: var(--cream-deep); color: var(--olive-mid); border: 1.5px solid var(--line); }
.step-dot.is-active { background: var(--clay); color: var(--cream-soft); border-color: var(--clay); }
.step-dot.is-done   { background: var(--olive-deep); color: var(--cream-soft); border-color: var(--olive-deep); }
.step-rail { height: 1.5px; flex: 1; background: var(--line); }
.step-rail.is-done { background: var(--olive-deep); }
.step-label { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive-mid); margin-bottom: 6px; }
.step { display: none; }
.step.is-active { display: block; }
.step h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--olive-deep); margin-bottom: 8px; }
.step__hint { color: var(--olive); margin-bottom: 20px; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--olive-deep); }
.field__opt { font-weight: 400; color: var(--olive-mid); }
.field input, .field textarea, .field select { font: inherit; color: var(--olive-ink); background: #fff; border: 1.5px solid var(--line); border-radius: 6px; padding: 12px 14px; width: 100%; transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 4px rgba(85,95,51,0.18); }
.field textarea { resize: vertical; min-height: 110px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 9px 14px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; color: var(--olive-deep); font-weight: 500; font-size: 0.92rem; cursor: pointer; transition: background .15s, border-color .15s, color .15s; }
.chip:hover { border-color: var(--olive-mid); }
.chip.is-on { background: var(--olive-deep); color: var(--cream-soft); border-color: var(--olive-deep); }

.step__nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 24px; }
.step__back { background: transparent; border: none; color: var(--olive); font-weight: 500; cursor: pointer; padding: 8px 0; font-family: inherit; font-size: 0.95rem; }
.step__back:hover { color: var(--olive-deep); }
.step__back[disabled] { opacity: 0; pointer-events: none; }

/* ---------------- Reviews ---------------- */
.review-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* Reviews carousel */
.review-carousel { position: relative; }
.review-track {
  list-style: none; margin: 0; padding: 4px 2px 6px;
  display: flex; gap: 24px; align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.review-track::-webkit-scrollbar { display: none; }
.review-track:active { cursor: grabbing; }
.review-track > .review-card { flex: 0 0 clamp(280px, 31%, 360px); scroll-snap-align: start; }
.review-arrow {
  position: absolute; top: 42%; transform: translateY(-50%);
  z-index: 2; width: 46px; height: 46px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); color: var(--olive-deep);
  border: 1px solid var(--line); cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background .15s, color .15s, opacity .15s, border-color .15s;
}
.review-arrow:hover { background: var(--clay); color: var(--cream-soft); border-color: var(--clay); }
.review-arrow--prev { left: -6px; }
.review-arrow--next { right: -6px; }
.review-arrow[disabled] { opacity: 0; pointer-events: none; }
.review-dots { display: flex; justify-content: center; gap: 9px; margin-top: 26px; }
.review-dots button {
  width: 8px; height: 8px; padding: 0; border: none; border-radius: 999px;
  background: var(--line); cursor: pointer; transition: background .15s, transform .15s;
}
.review-dots button.is-active { background: var(--clay); transform: scale(1.35); }
@media (max-width: 760px) {
  .review-arrow { display: none; }
  .review-track > .review-card { flex-basis: 85%; }
}
.review-card { background: var(--cream-soft); border: 1px solid var(--line); border-radius: 14px; padding: 32px 30px; display: flex; flex-direction: column; gap: 18px; }
.section--alt .review-card { background: var(--cream); }
.review-card__stars { display: flex; gap: 4px; color: var(--clay); }
.review-card__stars svg { width: 20px; height: 20px; }
.review-card blockquote { margin: 0; }
.review-card blockquote p { font-family: var(--font-serif); font-size: 1.25rem; line-height: 1.4; color: var(--olive-deep); font-weight: 500; margin: 0; }
.review-card footer { margin-top: auto; display: flex; flex-direction: column; }
.review-card cite { font-style: normal; font-weight: 600; color: var(--olive-deep); font-size: 0.95rem; }
.review-card footer span { font-size: 0.82rem; color: var(--olive-mid); margin-top: 2px; }

/* ---------------- Footer ---------------- */
.footer { background: var(--olive-ink); color: var(--cream); padding: 56px 0 40px; }
.footer__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.footer__brand { display: flex; flex-direction: column; gap: 4px; }
.footer__brand strong { font-family: var(--font-serif); font-size: 1.2rem; }
.footer__brand span { opacity: 0.7; font-size: 0.9rem; }
.footer__cols { display: flex; flex-direction: column; gap: 6px; text-align: right; }
.footer__cols a, .footer__cols span { color: var(--cream); text-decoration: none; opacity: 0.85; font-size: 0.95rem; }
.footer__legal { grid-column: 1 / -1; border-top: 1px solid rgba(245,237,219,0.12); padding-top: 24px; margin-top: 16px; font-size: 0.82rem; opacity: 0.6; }

/* ---------------- Sticky mobile Call CTA ---------------- */
.mobile-call {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  background: var(--clay);
  color: var(--cream-soft);
  text-decoration: none;
  border-radius: 999px;
  padding: 16px 22px;
  font-weight: 600;
  font-size: 1.05rem;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 760px) { .mobile-call { display: inline-flex; } body { padding-bottom: 80px; } }

/* ---------------- Mobile: stop side-to-side scrolling ---------------- */
@media (max-width: 760px) {
  /* Safety net: never allow horizontal scroll on phones */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* Quote section is a two-column grid via inline style — collapse it on phones
     so the big phone number & email no longer spill past the screen edge */
  #quote > .container { grid-template-columns: 1fr !important; }

  /* Keep the large phone number from overflowing a narrow column */
  .contact-big { font-size: 1.7rem !important; }

  /* Long email/URL strings wrap instead of pushing the page wide */
  #quote a[href^="mailto:"] { word-break: break-word; overflow-wrap: anywhere; }

  /* Footer: stack into one full-width column so the email fits on a single line */
  .footer__inner { grid-template-columns: 1fr; gap: 20px; }
  .footer__cols { text-align: left; }
  .footer__cols a { white-space: nowrap; }
}

/* ---------------- Case study page ---------------- */
.cs-hero {
  position: relative;
  padding: 160px 0 60px;
  background: var(--olive-ink);
  color: var(--cream);
  overflow: hidden;
}
.cs-hero__bg { position: absolute; inset: 0; opacity: 0.4; background-size: cover; background-position: center; filter: grayscale(0.2); }
.cs-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,22,12,0.6) 0%, rgba(20,22,12,0.95) 100%); }
.cs-hero__inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.cs-hero__crumb { display: inline-flex; align-items: center; gap: 8px; color: rgba(245,237,219,0.78); text-decoration: none; font-size: 0.92rem; margin-bottom: 28px; }
.cs-hero__crumb:hover { color: var(--cream); }
.cs-hero__tag { display: inline-flex; align-items: center; gap: 8px; font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,237,219,0.85); margin-bottom: 16px; }
.cs-hero__tag b { background: var(--clay); color: var(--cream-soft); padding: 4px 10px; border-radius: 4px; font-weight: 600; }
.cs-hero h1 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1.04; letter-spacing: -0.02em; color: var(--cream-soft); max-width: 800px; }
.cs-hero__sub { margin-top: 18px; max-width: 620px; font-size: 1.1rem; color: rgba(245,237,219,0.85); line-height: 1.6; }

.cs-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin-top: 56px; }
@media (max-width: 760px) { .cs-facts { grid-template-columns: 1fr 1fr; } }
.cs-fact { background: var(--cream-soft); padding: 24px 22px; }
.cs-fact__lbl { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive-mid); margin-bottom: 8px; }
.cs-fact__val { font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem; color: var(--olive-deep); letter-spacing: -0.01em; }

.cs-prose { max-width: 720px; margin: 0 auto; }
.cs-prose h2 { font-size: 2rem; margin-bottom: 16px; }
.cs-prose p { color: var(--olive-ink); font-size: 1.08rem; line-height: 1.7; margin-bottom: 16px; }
.cs-prose p + p { margin-top: 0; }
.cs-pullquote {
  font-family: var(--font-serif); font-weight: 500; font-size: 1.6rem;
  color: var(--olive-deep); line-height: 1.35; letter-spacing: -0.01em;
  border-left: 3px solid var(--clay); padding: 4px 0 4px 20px;
  margin: 32px 0;
}

.cs-photos { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 240px 240px; gap: 14px; }
.cs-photos figure { margin: 0; border-radius: 14px; overflow: hidden; }
.cs-photos img { width: 100%; height: 100%; object-fit: cover; }
.cs-photos figure:first-child { grid-row: span 2; }
@media (max-width: 760px) { .cs-photos { grid-template-columns: 1fr; grid-template-rows: 220px 200px 200px; } .cs-photos figure:first-child { grid-row: span 1; } }

.cs-cta { background: var(--olive-deep); color: var(--cream); border-radius: 22px; padding: clamp(36px, 5vw, 56px); display: grid; grid-template-columns: 2fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 760px) { .cs-cta { grid-template-columns: 1fr; } }
.cs-cta h2 { color: var(--cream-soft); font-size: 2rem; }
.cs-cta p  { margin-top: 12px; color: rgba(245,237,219,0.85); max-width: 480px; }
.cs-cta__actions { display: flex; flex-direction: column; gap: 12px; }
