/* ============================================================
   Cox Bin Cleaning — Ashburn, VA
   Type: Archivo Black (display) + Barlow (body)
   Palette: utility navy / working blue / sanitized green / steel
   ============================================================ */

/* === 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 {
  --ink:        #0B1D29;
  --navy:       #122C3D;
  --navy-2:     #1A3D53;
  --blue:       #1C6E96;
  --blue-lt:    #2F93C2;
  --green:      #1F8B52;
  --green-lt:   #3CBF74;
  --green-glow: #55D98C;
  --steel:      #D8E2E9;
  --steel-2:    #C2D2DD;
  --bone:       #F3F7F9;
  --white:      #FFFFFF;
  --muted:      #5E7789;
  --muted-lt:   #9FB6C4;

  --nav-h: 68px;

  --wrap: 1180px;
  --pad: clamp(1.1rem, 4vw, 2.75rem);

  --r: 8px;
  --r-lg: 14px;

  --shadow-hard: 5px 5px 0 var(--ink);
  --shadow-soft: 0 18px 40px -18px rgba(11, 29, 41, .45);

  --f-display: "Archivo Black", "Arial Black", sans-serif;
  --f-body: "Barlow", system-ui, sans-serif;
}

/* ---------- base ---------- */

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.62;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; }

img, svg { display: block; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.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;
}

/* industrial hazard band — the "hardy" signature */
.stripe {
  height: 9px;
  background: repeating-linear-gradient(
    135deg,
    var(--green) 0 15px,
    var(--navy) 15px 30px
  );
}

.eyebrow {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
}
.eyebrow.on-dark { color: var(--green-glow); }

.sec-head { max-width: 46ch; }
.sec-head h2 {
  font-size: clamp(1.85rem, 4.4vw, 3rem);
  margin-top: .55rem;
}
.sec-head p {
  margin-top: 1rem;
  font-size: 1.075rem;
  color: var(--muted);
}
.on-dark .sec-head p, .sec-head p.on-dark { color: var(--muted-lt); }

section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  padding: .95rem 1.6rem;
  border-radius: var(--r);
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
  text-align: center;
}

.btn-primary {
  background: var(--green-lt);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

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

.btn-ghost.on-dark { color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost.on-dark:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn-sm { padding: .68rem 1.15rem; font-size: .92rem; box-shadow: 3px 3px 0 var(--ink); }
.btn-sm:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--ink);
  border-bottom: 2px solid var(--ink);
}

.nav-bar {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--white);
  margin-right: auto;
  flex-shrink: 0;
}
.brand svg { width: 26px; height: 26px; flex-shrink: 0; }
.brand-name {
  font-family: var(--f-display);
  font-size: clamp(.95rem, 2.4vw, 1.12rem);
  letter-spacing: .01em;
  line-height: 1;
}
.brand-name em {
  font-style: normal;
  color: var(--green-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
  /* Never let the link row compress. Its <a>s are white-space: nowrap, so a
     shrunk row does not reflow — the text overruns each <li> and the labels
     silently overlap, which no assertion can see. Refusing to shrink turns
     that into real horizontal overflow, which the `overflow` check DOES catch. */
  flex-shrink: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--steel);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); border-color: var(--green-lt); }

.nav-cta {
  background: var(--green-lt);
  color: var(--ink);
  border: 2px solid var(--green-lt);
  border-radius: var(--r);
  padding: .58rem 1.05rem;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color .15s ease;
}
.nav-cta:hover { background: var(--green-glow); border-color: var(--green-glow); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--r);
  padding: .45rem .6rem;
  cursor: pointer;
  color: var(--white);
}
.nav-toggle svg { width: 20px; height: 20px; }

/* 1120, not 900: measured, the desktop nav row (brand 233 + links 431 +
   phone 153 + CTA 129 + gaps + padding) needs ~1106px. Below that it squeezed
   and the labels overlapped. Hand over to the toggle menu before that happens. */
@media (max-width: 1120px) {
  :root { --nav-h: 60px; }

  /* brand is the only flexible item — the CTA and toggle must never compress */
  .nav-bar { gap: .6rem; }
  .brand { flex-shrink: 1; min-width: 0; }

  .nav-toggle { display: block; order: 3; padding: .38rem .5rem; }
  .nav-toggle svg { width: 18px; height: 18px; }

  .nav-links {
    display: none;               /* actually hidden, not just [hidden] */
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-bottom: 2px solid var(--navy-2);
    padding: .4rem var(--pad) 1.1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: .85rem 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }
  .nav-links a:hover { border-color: rgba(255,255,255,.09); }
  .nav-cta { font-size: .85rem; padding: .5rem .85rem; }
}

@media (max-width: 560px) {
  /* wordmark drops to a two-line lockup so the CTA + toggle always fit */
  .brand svg { width: 22px; height: 22px; }
  .brand-name {
    font-size: .8rem;
    line-height: 1.05;
    white-space: normal;
    max-width: 6rem;
  }
  .nav-cta { font-size: .8rem; padding: .48rem .75rem; }
}

@media (max-width: 380px) {
  .brand-name { font-size: .74rem; max-width: 5.4rem; }
  .nav-cta { font-size: .75rem; padding: .45rem .62rem; }
}

/* ---------- hero ---------- */

.hero {
  container-type: inline-size;      /* children size in cqi */
  position: relative;
  background:
    radial-gradient(900px 520px at 88% 8%, rgba(63, 191, 116, .13), transparent 62%),
    radial-gradient(760px 480px at 8% 96%, rgba(47, 147, 194, .16), transparent 60%),
    var(--bone);
  padding-block: 0;
  border-bottom: 2px solid var(--ink);
  overflow-x: clip;                 /* scoped: contains the decorative watermark */
}

/* Fine diagonal hatch across the whole hero — gives the open space a worked,
   technical grain instead of flat gradient. Uniform on purpose: a single large
   motif here just reads as a smudge behind the headline. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(11, 29, 41, .05) 0 1px,
    transparent 1px 10px
  );
}

.hero-inner { position: relative; z-index: 1; }

.hero-inner {
  /* the fold is below the nav AND the 9px .stripe band, and .hero carries a 2px
     bottom border — all three come off the height or the hero clips the fold */
  min-height: calc(100svh - var(--nav-h) - 12px);
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: clamp(1.6rem, 4cqi, 3.4rem);
  padding-block: clamp(1.5rem, 4cqi, 3rem);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(.7rem, 1.5cqi, 1.15rem);
  min-width: 0;
}

.hero h1 {
  font-size: clamp(2.1rem, 7.6cqi, 4.5rem);
  letter-spacing: -.025em;
}
.hero h1 .hl {
  color: var(--green);
  position: relative;
  white-space: nowrap;
}

.hero-sub {
  font-size: clamp(1rem, 1.75cqi, 1.2rem);
  color: var(--muted);
  max-width: 34ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: .25rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .8rem;
  margin-top: .3rem;
  font-size: clamp(.8rem, 1.25cqi, .9rem);
  font-weight: 600;
  color: var(--navy);
}
.hero-proof span { display: inline-flex; align-items: center; gap: .38rem; }
.hero-proof svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }
.hero-proof .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--steel-2); padding: 0;
}

/* hero price card */
.price-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  min-width: 0;
}
.price-card-top {
  background: var(--navy);
  color: var(--white);
  padding: .8rem 1.15rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .6rem;
}
.price-card-top strong {
  font-family: var(--f-display);
  font-size: clamp(.9rem, 1.5cqi, 1.02rem);
  letter-spacing: .01em;
}
.price-card-top span {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-glow);
}
.price-rows { padding: .35rem 1.15rem; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(.55rem, 1.1cqi, .8rem) 0;
  border-bottom: 1px solid var(--steel);
}
.price-row:last-child { border-bottom: 0; }
.price-row dt {
  font-weight: 600;
  font-size: clamp(.88rem, 1.35cqi, .98rem);
  margin: 0;
}
.price-row dd {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2.5cqi, 1.75rem);
  color: var(--ink);
  line-height: 1;
}
.price-row.is-lead dd { color: var(--green); }
.price-note {
  background: var(--bone);
  border-top: 2px solid var(--ink);
  padding: .7rem 1.15rem;
  font-size: clamp(.76rem, 1.2cqi, .85rem);
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-content: center;
    gap: clamp(1.15rem, 4cqi, 1.75rem);
  }
  .hero h1 { font-size: clamp(2rem, 10.5cqi, 3.1rem); }
  .hero-sub { font-size: clamp(.95rem, 3.8cqi, 1.06rem); max-width: 42ch; }
  .hero-actions { gap: .6rem; }
  .hero-actions .btn { flex: 1 1 12rem; }
  .price-card { box-shadow: 4px 4px 0 var(--ink); }
  .price-row { padding: clamp(.4rem, 1.6cqi, .6rem) 0; }
  .price-row dd { font-size: clamp(1.1rem, 5cqi, 1.5rem); }
}

@media (max-width: 560px) {
  .hero-inner { gap: .8rem; padding-block: .8rem; }
  .hero-copy { gap: .5rem; }
  .hero h1 { font-size: clamp(1.75rem, 9.4cqi, 2.45rem); }
  .hero-sub { font-size: .94rem; line-height: 1.45; }
  .hero-actions { gap: .5rem; margin-top: .1rem; }
  .hero-actions .btn { flex: 1 1 100%; padding: .74rem 1.2rem; }
  /* the bullet separators strand themselves at the end of a wrapped line */
  .hero-proof { margin-top: .1rem; gap: .25rem 1rem; }
  .hero-proof .dot { display: none; }
  .price-card-top { padding: .55rem .9rem; }
  .price-rows { padding: .1rem .9rem; }
  .price-row { padding: .42rem 0; }
  .price-note { padding: .5rem .9rem; line-height: 1.4; }
}

/* ---------- dark band (the problem) ---------- */

.band-dark {
  background:
    linear-gradient(180deg, var(--ink), var(--navy)),
    var(--ink);
  color: var(--white);
  position: relative;
}
.band-dark h2, .band-dark h3 { color: var(--white); }

.grit::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}
.band-dark > .wrap { position: relative; z-index: 1; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.6rem;
}
.problem-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.13);
  border-left: 4px solid var(--green-lt);
  border-radius: var(--r);
  padding: 1.5rem 1.4rem;
  min-width: 0;
}
.problem-card svg { width: 28px; height: 28px; color: var(--green-glow); margin-bottom: .95rem; }
.problem-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.problem-card p { color: var(--muted-lt); font-size: .97rem; }

/* ---------- services ---------- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 2.8rem;
}
.svc-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  box-shadow: var(--shadow-hard);
  min-width: 0;
}
.svc-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--green-glow);
  border-radius: var(--r);
  margin-bottom: .35rem;
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: 1.22rem; }
.svc-card p { color: var(--muted); font-size: .98rem; }
.svc-card .svc-tag {
  margin-top: auto;
  padding-top: .9rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ---------- how it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2.8rem;
  counter-reset: step;
}
.step { min-width: 0; }
.step-num {
  counter-increment: step;
  font-family: var(--f-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--blue);
  display: block;
  margin-bottom: .7rem;
}
.step-num::before { content: "0" counter(step); }
.step h3 { font-size: 1.15rem; margin-bottom: .45rem; }
.step p { color: var(--muted); font-size: .98rem; }

/* ---------- pricing ---------- */

.pricing { background: var(--white); border-block: 2px solid var(--ink); }

.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 2.8rem;
  align-items: stretch;
}
.tier {
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background: var(--bone);
  min-width: 0;
}
.tier.is-featured {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-hard);
}
.tier.is-featured h3 { color: var(--white); }
.tier-label {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.tier.is-featured .tier-label { color: var(--green-glow); }
.tier h3 { font-size: 1.3rem; }
.tier .amount {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 6vw, 3.5rem);
  line-height: 1;
  margin-top: .3rem;
  color: var(--ink);
}
.tier.is-featured .amount { color: var(--green-glow); }
.tier p { color: var(--muted); font-size: .95rem; margin-top: .35rem; }
.tier.is-featured p { color: var(--muted-lt); }
.tier .tier-foot { margin-top: auto; padding-top: 1.3rem; }

.price-strip {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--bone);
  border: 2px dashed var(--steel-2);
  border-radius: var(--r-lg);
  padding: 1.2rem 1.4rem;
}
.price-strip p { color: var(--muted); font-size: .97rem; }
.price-strip strong { color: var(--ink); }

/* The 3-up grids stay 3-up on tablet and go straight to one column below it.
   Letting auto-fit choose leaves 3 cards in a 2-col track at ~768px — a hole
   beside the third one, most obvious on the pricing tiers. */
@media (max-width: 700px) {
  .problem-grid,
  .svc-grid,
  .steps,
  .tiers { grid-template-columns: 1fr; }
}

/* ---------- founder ---------- */

.founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: start;
}
.founder-mark {
  width: 78px; height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-lt);
  border: 2px solid var(--ink);
  font-family: var(--f-display);
  font-size: 1.65rem;
  color: var(--ink);
  flex-shrink: 0;
}
.founder blockquote {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -.015em;
}
.founder cite {
  display: block;
  margin-top: 1.1rem;
  font-style: normal;
  font-size: .92rem;
  font-weight: 600;
  color: var(--muted);
}
.founder cite b { color: var(--ink); font-weight: 700; }
.founder .founder-note {
  margin-top: 1.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--steel);
  color: var(--muted);
  font-size: 1rem;
  max-width: 56ch;
}

@media (max-width: 640px) {
  .founder { grid-template-columns: 1fr; }
  .founder-mark { width: 62px; height: 62px; font-size: 1.35rem; }
}

/* ---------- service area ---------- */

.area-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.6rem;
}
.chip {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: .45rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}
.chip.is-home {
  background: var(--green-lt);
}
.area-note {
  margin-top: 1.5rem;
  font-size: .95rem;
  color: var(--muted);
}
@media (max-width: 860px) {
  .area-wrap { grid-template-columns: 1fr; }
}

/* ---------- gallery (photo-ready placeholder) ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}
.gallery-grid img,
.gallery-grid picture { width: 100%; height: auto; border-radius: var(--r); }

/* ---------- CTA band ---------- */

.cta-band { text-align: center; }
.cta-band h2 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  max-width: 20ch;
  margin-inline: auto;
}
.cta-band p {
  margin-top: 1.1rem;
  color: var(--muted-lt);
  font-size: 1.08rem;
  max-width: 48ch;
  margin-inline: auto;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ---------- footer ---------- */

.footer {
  background: var(--ink);
  color: var(--muted-lt);
  padding-block: 3rem 2rem;
  font-size: .93rem;
}
.footer-top {
  display: grid;
  /* Contact carries the email, the longest string in the footer — give it a
     wider share or overflow-wrap: anywhere snaps it to "…@gmail.c / om". */
  grid-template-columns: 1.4fr 1fr 1.3fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.footer .brand { margin-right: 0; margin-bottom: .9rem; }
.footer h4 {
  font-family: var(--f-body);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 .9rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer a { color: var(--muted-lt); text-decoration: none; }
.footer a:hover { color: var(--green-glow); }
.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .86rem;
}
/* 900, not 720: at tablet the 4-column footer squeezes Contact under the
   email's width and it breaks mid-address. Two columns from here down. */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col-brand { grid-column: 1 / -1; }
  /* 4 columns leaves the last one alone in a half-width track, where the longer
     town pairings wrap mid-phrase against empty space. Give it the full row. */
  .footer-top > div:last-child { grid-column: 1 / -1; }
}

/* ---------- contact page ---------- */

.page-head {
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(2.6rem, 6vw, 4.2rem);
  position: relative;
}
.page-head h1 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  margin-top: .6rem;
  color: var(--white);
}
.page-head p {
  margin-top: 1rem;
  color: var(--muted-lt);
  font-size: 1.08rem;
  max-width: 50ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-hard);
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
  min-width: 0;
}
.form-card > h2 { font-size: clamp(1.4rem, 3vw, 1.85rem); }
.form-card > .form-intro {
  margin-top: .7rem;
  margin-bottom: 1.7rem;
  color: var(--muted);
  font-size: .98rem;
}

#estimate-form {
  display: grid;
  gap: 1.05rem;
}
.field { display: grid; gap: .4rem; min-width: 0; }
.field label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
}
.field input,
.field textarea,
.field select {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bone);
  border: 2px solid var(--steel-2);
  border-radius: var(--r);
  padding: .8rem .95rem;
  width: 100%;
  min-width: 0;
  transition: border-color .15s ease, background-color .15s ease;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.05rem;
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
}

#estimate-form button[type="submit"] { width: 100%; }
#estimate-form button[disabled] {
  background: var(--green);
  color: var(--white);
  opacity: 1;
  transform: none;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: default;
}

.form-status {
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: var(--r);
  border: 2px solid var(--ink);
  font-size: .98rem;
  line-height: 1.5;
}
.form-status.is-ok { background: #E4F6EC; border-color: var(--green); }
.form-status.is-ok strong { display: block; font-family: var(--f-display); font-size: 1.15rem; margin-bottom: .3rem; color: var(--green); }
.form-status.is-err { background: #FCEDED; border-color: #B3392F; }

.form-fine {
  margin-top: 1rem;
  font-size: .84rem;
  color: var(--muted);
}

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

.aside-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.4rem;
  min-width: 0;
}
.aside-card + .aside-card { margin-top: 1.2rem; }
.aside-card h3 { font-size: 1.1rem; margin-bottom: .85rem; }
.aside-card ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: .6rem;
  font-size: .96rem;
  color: var(--muted);
}
.aside-card li { display: flex; gap: .6rem; align-items: flex-start; }
.aside-card li svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; margin-top: .28rem; }
.aside-card .mini-price {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--steel);
  font-size: .96rem;
}
.aside-card .mini-price:last-child { border-bottom: 0; }
.aside-card .mini-price b { font-family: var(--f-display); }

/* ---------- contact details (phone / email) ---------- */

/* desktop-only tap-to-call in the nav; on mobile the same details live inside
   the toggled menu as .nav-only-mobile items, so nothing competes for the bar */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  color: var(--white);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  flex-shrink: 0;
  padding: .5rem .8rem;
  border: 2px solid rgba(255,255,255,.22);
  border-radius: var(--r);
  transition: border-color .15s ease, color .15s ease;
}
.nav-phone svg { width: 15px; height: 15px; color: var(--green-glow); }
.nav-phone:hover { border-color: var(--green-lt); color: var(--green-glow); }

.nav-only-mobile { display: none; }

@media (max-width: 1120px) {
  .nav-phone { display: none; }
  .nav-only-mobile { display: block; }
  .nav-only-mobile a { color: var(--green-glow); font-weight: 700; }
}

.proof-tel {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--steel-2);
  transition: color .15s ease, border-color .15s ease;
}
.proof-tel:hover { color: var(--green); border-color: var(--green); }

/* "Talk to Nick" strip */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.4rem;
}
.reach-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.3rem;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-hard);
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
  transition: transform .16s ease, box-shadow .16s ease;
}
.reach-card:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.reach-card.is-cta { background: var(--navy); color: var(--white); }

.reach-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--green-glow);
  border-radius: var(--r);
}
.reach-card.is-cta .reach-icon { background: var(--green-lt); color: var(--ink); }
.reach-icon svg { width: 22px; height: 22px; }

.reach-body { display: grid; gap: .18rem; min-width: 0; }
.reach-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--blue);
}
.reach-card.is-cta .reach-label { color: var(--green-glow); }
.reach-value {
  font-family: var(--f-display);
  font-size: clamp(.95rem, 1.5vw, 1.12rem);
  line-height: 1.15;
  letter-spacing: -.01em;
  overflow-wrap: anywhere;
}

@media (max-width: 860px) {
  .reach-grid { grid-template-columns: 1fr; }
}

/* contact page — dark header links */
.head-reach {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.6rem;
  margin-top: 1.5rem;
}
.head-reach a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: .12rem;
  overflow-wrap: anywhere;
  transition: color .15s ease, border-color .15s ease;
}
.head-reach a svg { width: 17px; height: 17px; color: var(--green-glow); flex-shrink: 0; }
.head-reach a:hover { color: var(--green-glow); border-color: var(--green-glow); }

/* contact page — aside "reach direct" card */
.aside-card.is-reach { background: var(--navy); color: var(--white); }
.aside-card.is-reach h3 { color: var(--white); }
.reach-line {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .7rem 0;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.reach-line:last-child { border-bottom: 0; }
.reach-line svg { width: 20px; height: 20px; color: var(--green-glow); flex-shrink: 0; }
.reach-line span { display: grid; gap: .1rem; min-width: 0; font-weight: 700; overflow-wrap: anywhere; }
.reach-line small {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green-glow);
}
.reach-line:hover span { color: var(--green-glow); }

/* ---------- scroll reveal (below the fold only) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .btn:active { transform: none; }
}

html { scroll-behavior: smooth; }

/* === 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 === */
