/* ============================================================
   MATT'S MOWS — Burke, VA
   "Fresh Cut": deep turf greens, mowing-stripe texture as the
   ownable device, wide Archivo for display, rust for the
   small-engine side of the business.
   ============================================================ */

/* === defensive base — injected by harden_css.py; do not hand-edit === */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { scroll-padding-top: calc(var(--nav-h, 72px) + 1rem); }
img, svg, video, iframe, canvas, table { display: block; max-width: 100%; }
p, li, h1, h2, h3, h4, blockquote, td, dd, dt { overflow-wrap: anywhere; }
form[style*="min-height"] { align-content: center; }
/* === end defensive base === */

:root {
  /* Turf */
  --ink:       #0C1210;
  --turf:      #14301E;
  --turf-2:    #1B3D27;
  --turf-3:    #245033;
  --field:     #2F7A4B;

  /* Fresh cut */
  --cut:       #C6E870;
  --cut-deep:  #A6CD4A;
  --cut-dim:   #7E9B45;

  /* Workshop (small engine repair) */
  --rust:      #C4552F;
  --rust-soft: #E07C4F;

  /* Paper */
  --cream:     #F5F2E8;
  --cream-2:   #EBE6D6;
  --cream-3:   #DDD7C3;
  --stone:     #6C7367;
  --stone-2:   #8B9184;

  --nav-h: 72px;

  --display: 'Archivo', 'Helvetica Neue', sans-serif;
  --body: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;

  --wrap: 1200px;
  --r: 4px;
  --r-lg: 10px;

  --shadow: 0 1px 2px rgba(12,18,16,.05), 0 12px 28px -14px rgba(12,18,16,.22);
  --shadow-lg: 0 2px 4px rgba(12,18,16,.06), 0 30px 60px -28px rgba(12,18,16,.34);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Paper grain — sits above backgrounds, under content. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: .30;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 116%;
  letter-spacing: -.022em;
  line-height: 1.0;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.6rem);
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

/* Parked off the TOP, never off the side — a horizontal offset here
   would widen the document and read as a sideways-scrolling page. */
.skip {
  position: fixed;
  left: .6rem;
  top: -6rem;
  z-index: 200;
  background: var(--cut);
  color: var(--ink);
  padding: .8rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--r);
  transition: top .18s ease;
}
.skip:focus { top: .6rem; }

:focus-visible {
  outline: 3px solid var(--cut-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Shared bits ───────────────────────────────────────────── */

.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 104%;
  font-size: .72rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--cut);
  margin: 0;
}
.eyebrow--dark { color: var(--field); }

.dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .42;
  vertical-align: middle;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.55rem;
  border: 2px solid transparent;
  border-radius: var(--r);
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 106%;
  font-size: .93rem;
  letter-spacing: .012em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s cubic-bezier(.2,.8,.3,1),
              background-color .18s ease,
              border-color .18s ease,
              color .18s ease,
              box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--accent {
  background: var(--cut);
  color: var(--ink);
  border-color: var(--cut);
  box-shadow: 0 10px 22px -12px rgba(166,205,74,.85);
}
.btn--accent:hover { background: var(--cut-deep); border-color: var(--cut-deep); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,242,232,.30);
}
.btn--ghost:hover { border-color: var(--cut); color: var(--cut); }

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,242,232,.34);
}
.btn--ghost-light:hover { border-color: var(--cut); color: var(--cut); }

.btn--dark {
  background: var(--turf);
  color: var(--cream);
  border-color: var(--turf);
}
.btn--dark:hover { background: var(--turf-2); border-color: var(--turf-2); }

.btn--sm { padding: .68rem 1.15rem; font-size: .84rem; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }

/* ══════════════════ NAV ══════════════════ */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(12,18,16,.92);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid rgba(198,232,112,.16);
  color: var(--cream);
}

.nav__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.6rem);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .68rem;
  text-decoration: none;
  flex-shrink: 0;
}
/* display:block matters — outside the nav's flex row this span is inline,
   where `width` is ignored and the SVG balloons to fill the footer. */
.brand__mark { display: block; width: 34px; flex-shrink: 0; }
.brand__mark svg { width: 100%; height: auto; }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 118%;
  font-size: 1.06rem;
  letter-spacing: -.012em;
  color: var(--cream);
}
.brand__sub {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cut-dim);
  margin-top: .26rem;
  font-weight: 600;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.1vw, 1.9rem);
}
.nav__links a {
  text-decoration: none;
  font-size: .89rem;
  font-weight: 500;
  color: rgba(245,242,232,.80);
  position: relative;
  padding-block: .3rem;
  transition: color .18s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--cut);
  transition: right .26s cubic-bezier(.2,.8,.3,1);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { right: 0; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
}
.nav__tel {
  text-decoration: none;
  font-size: .87rem;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
}
.nav__tel:hover { color: var(--cut); }

.burger {
  display: none;
  width: 42px; height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(245,242,232,.24);
  border-radius: var(--r);
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 19px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .24s ease, opacity .18s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hidden by default with display, not just [hidden] — a class that
   sets display would otherwise win over the attribute. */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .2rem;
  padding: .9rem clamp(1.15rem, 4vw, 2.6rem) 1.4rem;
  background: var(--ink);
  border-top: 1px solid rgba(198,232,112,.14);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  padding: .78rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(245,242,232,.88);
  border-bottom: 1px solid rgba(245,242,232,.08);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu__tel { color: var(--cut) !important; }
.mobile-menu .btn { margin-top: .8rem; justify-content: center; }

/* ══════════════════ HERO ══════════════════ */

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  background: var(--turf);
  color: var(--cream);
  overflow-x: clip;
  container-type: inline-size;
  padding-block: clamp(1.6rem, 4cqi, 4.5rem);
  isolation: isolate;
}

.hero__stripes {
  position: absolute;
  inset: -10% -20%;
  z-index: 0;
  background: repeating-linear-gradient(
    98deg,
    rgba(255,255,255,.038) 0 38px,
    rgba(0,0,0,.055) 38px 76px
  );
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 96%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 96%);
}

.hero__glow {
  position: absolute;
  z-index: 0;
  top: -28%;
  right: -12%;
  width: min(62rem, 92%);
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%,
    rgba(198,232,112,.20) 0%,
    rgba(47,122,75,.16) 34%,
    transparent 66%);
  filter: blur(14px);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(0, .58fr);
  gap: clamp(1.5rem, 4cqi, 3.4rem);
  align-items: center;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(.85rem, 2.1cqi, 1.5rem);
  min-width: 0;
}

.hero__title {
  font-size: clamp(2.05rem, 8.4cqi, 5.4rem);
  line-height: .94;
  letter-spacing: -.032em;
  font-stretch: 120%;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  text-wrap: nowrap;
}
.hero__title span { display: block; }
.hero__title-accent {
  color: var(--cut);
  position: relative;
  width: fit-content;
}
.hero__title-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -.06em;
  width: 100%;
  height: .075em;
  background: var(--cut);
  opacity: .34;
  border-radius: 2px;
}

.hero__lede {
  font-size: clamp(.98rem, 1.42cqi, 1.16rem);
  line-height: 1.58;
  color: rgba(245,242,232,.80);
  max-width: 42ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .72rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .72rem;
  font-size: clamp(.79rem, 1.08cqi, .89rem);
  color: rgba(245,242,232,.62);
  padding-top: .1rem;
}
.hero__proof b { color: var(--cut); font-weight: 700; }

.hero__card {
  position: relative;
  min-width: 0;
  background: linear-gradient(160deg, rgba(36,80,51,.94), rgba(20,48,30,.94));
  border: 1px solid rgba(198,232,112,.24);
  border-radius: var(--r-lg);
  padding: clamp(1.1rem, 2.3cqi, 1.7rem);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    98deg,
    rgba(198,232,112,.055) 0 14px,
    transparent 14px 28px);
  pointer-events: none;
}
.hero__card-label {
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 104%;
  font-size: .69rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cut-dim);
}
.hero__card-price {
  position: relative;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 122%;
  font-size: clamp(2.4rem, 5.4cqi, 3.5rem);
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--cut);
  margin-top: .35rem;
  display: flex;
  align-items: baseline;
  gap: .4rem;
}
.hero__card-price span {
  font-size: .28em;
  font-weight: 600;
  font-stretch: 100%;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,242,232,.55);
}
.hero__card-list {
  position: relative;
  list-style: none;
  margin: .9rem 0 0;
  padding: .85rem 0 0;
  border-top: 1px solid rgba(198,232,112,.18);
  display: flex;
  flex-direction: column;
  gap: .42rem;
  font-size: .85rem;
  color: rgba(245,242,232,.78);
}
.hero__card-list li {
  padding-left: 1.15rem;
  position: relative;
  line-height: 1.4;
}
.hero__card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .52em;
  width: 11px; height: 2px;
  border-radius: 2px;
  background: var(--cut);
}

/* Striped rule between hero and the page body. */
.rule-strip {
  height: 12px;
  background: repeating-linear-gradient(
    98deg,
    var(--turf) 0 22px,
    var(--field) 22px 44px);
  border-bottom: 1px solid var(--cream-3);
}

/* ══════════════════ SECTIONS ══════════════════ */

.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--cream { background: var(--cream); }

.sec-head { max-width: 44rem; margin-bottom: clamp(2.3rem, 5vw, 3.6rem); }
.sec-title {
  font-size: clamp(1.85rem, 4.6vw, 3.3rem);
  line-height: 1.02;
  margin-top: .85rem;
}
.sec-title--light { color: var(--cream); }
.sec-lede {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--stone);
  max-width: 40rem;
  line-height: 1.66;
}

/* ── Service cards ─────────────────────────────────────────── */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--field);
  box-shadow: var(--shadow);
  transition: transform .24s cubic-bezier(.2,.8,.3,1), box-shadow .24s ease, border-color .24s ease;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    98deg,
    currentColor 0 16px,
    color-mix(in srgb, currentColor 45%, transparent) 16px 32px);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, currentColor 40%, var(--cream-3));
}
.card--rust { color: var(--rust); }
.card--free { color: var(--turf-3); }

.card__tag {
  position: absolute;
  top: 1.15rem; right: 1.15rem;
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 102%;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--cut);
  color: var(--ink);
  padding: .3rem .55rem;
  border-radius: 3px;
}

.card__top { margin-bottom: 1rem; }
.card__icon {
  width: 34px; height: 34px;
  color: inherit;
  margin-bottom: 1.15rem;
}
.card__title {
  font-size: clamp(1.18rem, 1.9vw, 1.42rem);
  line-height: 1.12;
  color: var(--ink);
}
/* Only the tagged card needs to keep clear of the badge. */
.card:has(.card__tag) .card__title { padding-right: 3.5rem; }
.card__price {
  margin-top: .6rem;
  font-family: var(--display);
  font-weight: 500;
  font-stretch: 104%;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--stone);
}
.card__price b {
  font-weight: 800;
  font-stretch: 118%;
  font-size: 1.5rem;
  letter-spacing: -.02em;
  color: inherit;
  text-transform: none;
}
.card--rust .card__price b { color: var(--rust); }
.card--free .card__price b { color: var(--turf-3); }
.card .card__price b { color: var(--field); }

.card__body {
  color: var(--stone);
  font-size: .96rem;
  line-height: 1.66;
}

.ticks {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 1.25rem 0 0;
  border-top: 1px dashed var(--cream-3);
  display: flex;
  flex-direction: column;
  gap: .55rem;
  font-size: .9rem;
  color: var(--ink);
  font-weight: 500;
}
.ticks li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.4;
}
.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5em;
  width: 13px; height: 3px;
  border-radius: 2px;
  background: var(--field);
}
.ticks--rust li::before { background: var(--rust); }
.ticks--free li::before { background: var(--turf-3); }

.card__cta {
  margin-top: auto;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 106%;
  font-size: .89rem;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.card__cta span { transition: transform .22s cubic-bezier(.2,.8,.3,1); }
.card__cta:hover span { transform: translateX(5px); }

/* ── Stats ─────────────────────────────────────────────────── */

.stats {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(2.8rem, 6vw, 4.6rem);
  overflow-x: clip;
}
.stats__stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    98deg,
    rgba(255,255,255,.028) 0 40px,
    transparent 40px 80px);
}
.stats__wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  gap: clamp(1.6rem, 3vw, 2.4rem);
}
.stat { min-width: 0; }
.stat__num {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 122%;
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--cut);
}
.stat__label {
  margin-top: .7rem;
  font-size: .87rem;
  line-height: 1.44;
  color: rgba(245,242,232,.64);
}

/* ── Steps ─────────────────────────────────────────────────── */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: clamp(1.4rem, 2.6vw, 2.2rem);
  counter-reset: step;
}
.step {
  min-width: 0;
  padding-top: 1.5rem;
  border-top: 3px solid var(--field);
  position: relative;
}
.step:nth-child(2) { border-top-color: color-mix(in srgb, var(--field) 78%, var(--cream)); }
.step:nth-child(3) { border-top-color: color-mix(in srgb, var(--field) 56%, var(--cream)); }
.step:nth-child(4) { border-top-color: color-mix(in srgb, var(--field) 34%, var(--cream)); }
.step__n {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 118%;
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--field);
}
.step__title {
  margin-top: .5rem;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.14;
}
.step p {
  margin-top: .7rem;
  color: var(--stone);
  font-size: .94rem;
  line-height: 1.64;
}

/* ── Haul-away ─────────────────────────────────────────────── */

.haul {
  position: relative;
  background: var(--turf);
  color: var(--cream);
  padding-block: clamp(4rem, 9vw, 7rem);
  overflow-x: clip;
}
.haul__stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    98deg,
    rgba(255,255,255,.032) 0 44px,
    rgba(0,0,0,.05) 44px 88px);
  -webkit-mask-image: linear-gradient(to left, #000 0%, transparent 78%);
  mask-image: linear-gradient(to left, #000 0%, transparent 78%);
}
.haul__wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.haul__lede {
  margin-top: 1.25rem;
  color: rgba(245,242,232,.76);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.7;
  max-width: 46ch;
}
.haul .sec-title { margin-top: .9rem; }
.haul__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .72rem;
  margin-top: 1.8rem;
}
.haul__list {
  list-style: none;
  margin: 0;
  padding: clamp(1.4rem, 2.6vw, 2rem);
  background: rgba(12,18,16,.42);
  border: 1px solid rgba(198,232,112,.2);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: .1rem;
  min-width: 0;
}
.haul__list li {
  padding: .78rem 0 .78rem 1.6rem;
  position: relative;
  font-size: .96rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(245,242,232,.09);
  line-height: 1.4;
}
.haul__list li:last-child { border-bottom: 0; }
.haul__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.28em;
  width: 13px; height: 3px;
  border-radius: 2px;
  background: var(--cut);
}

/* ── About ─────────────────────────────────────────────────── */

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.2rem);
  align-items: start;
}
.about__copy p {
  margin-top: 1.2rem;
  color: var(--stone);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.72;
  max-width: 46ch;
}
.about__copy .sec-title { margin-top: .9rem; }
.about__sign {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 108%;
  color: var(--field) !important;
  font-size: .95rem !important;
  letter-spacing: .02em;
}

.quote {
  margin: 0;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--turf);
  color: var(--cream);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-width: 0;
}
.quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    98deg,
    rgba(198,232,112,.05) 0 18px,
    transparent 18px 36px);
}
.quote blockquote {
  position: relative;
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-stretch: 108%;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  line-height: 1.3;
  letter-spacing: -.015em;
  color: var(--cream);
}
.quote figcaption {
  position: relative;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(198,232,112,.2);
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.quote__who {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 110%;
  color: var(--cut);
  font-size: .96rem;
}
.quote__role {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,242,232,.52);
}

/* ── Gallery (dormant until real photos land) ──────────────── */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1rem;
}
.shot { margin: 0; border-radius: var(--r-lg); overflow: hidden; background: var(--cream-2); }
.shot img { width: 100%; height: 100%; object-fit: cover; }

/* ── Final CTA ─────────────────────────────────────────────── */

.cta {
  position: relative;
  background: var(--field);
  color: var(--cream);
  padding-block: clamp(4rem, 9vw, 7rem);
  overflow-x: clip;
  text-align: center;
}
.cta__stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    98deg,
    rgba(255,255,255,.055) 0 46px,
    rgba(0,0,0,.07) 46px 92px);
}
.cta__wrap { position: relative; }
.cta__title {
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  line-height: 1.02;
  margin-top: .9rem;
  color: var(--cream);
}
.cta__lede {
  margin: 1.2rem auto 0;
  max-width: 34rem;
  color: rgba(245,242,232,.86);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.66;
}
.cta__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
}
.cta .btn--ghost-light { border-color: rgba(245,242,232,.5); }
.cta__fine {
  margin-top: 1.4rem;
  font-size: .85rem;
  color: rgba(245,242,232,.7);
}

/* ── Footer ────────────────────────────────────────────────── */

.foot {
  background: var(--ink);
  color: rgba(245,242,232,.7);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  font-size: .92rem;
}
.foot__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: clamp(2.4rem, 5vw, 3.4rem);
}
.foot__brand { min-width: 0; }
.brand__mark--foot { width: 38px; margin-bottom: 1rem; }
.foot__name {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 118%;
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: -.015em;
}
.foot__tag { margin-top: .55rem; line-height: 1.6; font-size: .89rem; }
.foot__col { min-width: 0; display: flex; flex-direction: column; gap: .55rem; }
.foot__col h3 {
  font-size: .7rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--cut-dim);
  font-stretch: 104%;
  font-weight: 700;
  margin-bottom: .35rem;
}
.foot__col a {
  text-decoration: none;
  font-size: .91rem;
  transition: color .18s ease;
}
.foot__col a:hover { color: var(--cut); }
.foot__note { font-size: .89rem; line-height: 1.6; }

.foot__bar {
  border-top: 1px solid rgba(245,242,232,.1);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem;
  font-size: .82rem;
  color: rgba(245,242,232,.5);
}
.foot__bar a { text-decoration: none; }
.foot__bar a:hover { color: var(--cut); }

/* ══════════════════ CONTACT PAGE ══════════════════ */

.page-head {
  position: relative;
  background: var(--turf);
  color: var(--cream);
  padding-block: clamp(3rem, 7vw, 5.2rem);
  overflow-x: clip;
}
.page-head__stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    98deg,
    rgba(255,255,255,.035) 0 40px,
    rgba(0,0,0,.05) 40px 80px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
}
/* Left-aligned on the same gutter as every other section — a centred
   block here would read as a different page. */
.page-head__wrap { position: relative; }
.page-head .sec-title { margin-top: .85rem; }
.page-head__lede {
  margin-top: 1.15rem;
  color: rgba(245,242,232,.78);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.66;
  max-width: 42ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: start;
}

.form-card {
  background: #fff;
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
  min-width: 0;
}
.form-card__title { font-size: clamp(1.35rem, 2.4vw, 1.75rem); line-height: 1.1; }
.form-card__lede {
  margin-top: .75rem;
  color: var(--stone);
  font-size: .96rem;
  line-height: 1.62;
}

#estimate-form {
  display: grid;
  gap: 1.05rem;
  margin-top: 1.7rem;
}
.field { display: flex; flex-direction: column; gap: .42rem; min-width: 0; }
.field--row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  gap: 1.05rem;
  min-width: 0;
}
.field label {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 104%;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--field);
}
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--cream-3);
  border-radius: var(--r);
  padding: .82rem .9rem;
  width: 100%;
  min-width: 0;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 8.5rem; resize: vertical; line-height: 1.55; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--field);
  box-shadow: 0 0 0 3px rgba(47,122,75,.16);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--stone-2); }

.turnstile-box { min-height: 66px; }

#estimate-form .btn { width: 100%; }
#estimate-form .btn:disabled { opacity: 1; transform: none; }

.form-fine {
  font-size: .8rem;
  color: var(--stone);
  line-height: 1.55;
  text-align: center;
}

.form-status {
  border-radius: var(--r);
  padding: 1rem 1.1rem;
  font-size: .95rem;
  line-height: 1.6;
}
.form-status--ok {
  background: color-mix(in srgb, var(--cut) 26%, var(--cream));
  border: 1.5px solid var(--cut-deep);
  color: var(--turf);
}
.form-status--err {
  background: color-mix(in srgb, var(--rust) 12%, var(--cream));
  border: 1.5px solid var(--rust);
  color: #7A2F14;
}
.form-status a { font-weight: 700; }

.reach { display: flex; flex-direction: column; gap: 1rem; min-width: 0; }
.reach__card {
  background: var(--turf);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  position: relative;
  overflow: hidden;
}
.reach__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    98deg,
    rgba(198,232,112,.05) 0 16px,
    transparent 16px 32px);
}
.reach__card > * { position: relative; }
.reach__label {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 104%;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cut-dim);
}
.reach__big {
  display: block;
  margin-top: .55rem;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 116%;
  font-size: clamp(1.35rem, 3vw, 1.72rem);
  letter-spacing: -.02em;
  color: var(--cut);
  text-decoration: none;
  line-height: 1.1;
}
.reach__big:hover { color: var(--cream); }
.reach__note {
  margin-top: .7rem;
  font-size: .88rem;
  color: rgba(245,242,232,.68);
  line-height: 1.55;
}

.reach__plain {
  background: #fff;
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  box-shadow: var(--shadow);
}
.reach__plain h3 {
  font-size: 1.08rem;
  line-height: 1.14;
  color: var(--ink);
}
.reach__plain ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .93rem;
  color: var(--stone);
}
.reach__plain li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}
.reach__plain li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .58em;
  width: 13px; height: 3px;
  border-radius: 2px;
  background: var(--field);
}

/* ══════════════════ SCROLL REVEAL (below the fold only) ═══ */

.rise {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.8,.3,1), transform .7s cubic-bezier(.2,.8,.3,1);
}
.rise.is-in { opacity: 1; transform: none; }

/* ══════════════════ RESPONSIVE ══════════════════ */

@media (max-width: 1080px) {
  .nav__tel { display: none; }
}

@media (max-width: 960px) {
  .haul__wrap,
  .about,
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .foot__wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Tablet: keep the grids even rather than leaving a lone orphan cell. */
@media (min-width: 561px) and (max-width: 960px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards > :last-child { grid-column: 1 / -1; }
  .stats__wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .burger { display: flex; }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.1rem, 3.4cqi, 2rem);
  }
  .hero__title { font-size: clamp(2.05rem, 10.4cqi, 4.2rem); }
  .hero__lede { font-size: clamp(.95rem, 3.5cqi, 1.06rem); }
  .hero__card { padding: 1.05rem 1.15rem; }
  .hero__card-price { font-size: clamp(2rem, 9cqi, 2.6rem); margin-top: .25rem; }
  .hero__card-list {
    margin-top: .7rem;
    padding-top: .7rem;
    gap: .3rem;
    font-size: .81rem;
  }
}

@media (max-width: 560px) {
  body { font-size: 16px; }

  /* Brand + CTA + burger must all fit one bar at 390px. */
  .nav__inner { gap: .6rem; }
  .brand { gap: .55rem; }
  .brand__mark { width: 30px; }
  .brand__name { font-size: .95rem; }
  .brand__sub { font-size: .58rem; letter-spacing: .16em; }
  .nav__cta { gap: .5rem; }
  .btn--sm { padding: .58rem .8rem; font-size: .78rem; }
  .burger { width: 38px; height: 34px; }

  .hero { padding-block: 1.3rem; }
  .hero__copy { gap: .78rem; }
  .hero__title { font-size: clamp(1.95rem, 11.6cqi, 3.2rem); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }

  /* Two proof items fit one line here; a third leaves a dangling
     separator at the end of the wrap. */
  .hero__proof { gap: .3rem .55rem; font-size: .76rem; }
  .hero__proof > :nth-child(4),
  .hero__proof > :nth-child(5) { display: none; }

  .foot__wrap { grid-template-columns: minmax(0, 1fr); }

  .cta__actions { flex-direction: column; align-items: stretch; }
  .cta__actions .btn { width: 100%; }
  .haul__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .rise { opacity: 1; transform: none; }
}

/* === site credit (injected by credit_footer.py); do not hand-edit === */
.site-credit {
  margin: 2.25rem 0 0;
  padding-inline: 1.25rem;
  font-size: .73rem;
  line-height: 1.5;
  letter-spacing: .06em;
  text-align: center;
  opacity: .65;
}
.site-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(128, 128, 128, .5);
  border-bottom: 1px solid color-mix(in srgb, currentColor 45%, transparent);
  transition: border-bottom-color .25s ease;
}
.site-credit a:hover,
.site-credit a:focus-visible { border-bottom-color: currentColor; }
@media (prefers-reduced-motion: reduce) {
  .site-credit a { transition: none; }
}

/* Shares the footer's own copyright row: sits opposite it rather than adding a
   third line under the page. The parent is reached with :has() so no client
   class name has to be guessed, and the rule cannot fire on a footer that has
   no inline credit in it. */
.site-credit--inline {
  margin: 0;
  padding: 0;
  text-align: right;
}
footer :has(> .site-credit--inline) {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .35rem 1.5rem;
}
/* === end site credit === */

/* === nav toggle right — injected by nav_toggle_right.py; do not hand-edit ===
   Below this breakpoint the desktop links are hidden, and any rule keyed off
   them (`.links + .cta { margin-left: 0 }` and friends) keeps matching because
   display:none leaves the element in the DOM. That silently cancels the push
   that puts the hamburger in the corner. Give it back.

   !important on purpose: the whole failure mode is another rule winning this
   exact property, and that rule may outrank this one on specificity.
   margin-inline-start rather than margin-left so the toggle sits at the END of
   the bar, which stays correct if the page is ever served RTL. */
@media (max-width: 900px) {
  .nav__inner > .nav__cta { margin-inline-start: auto !important; }
}
/* === end nav toggle right === */
