/* ==========================================================================
   Soil Poisoning Certificate — a division of Propserve
   Brand: Propserve lime #a1db3b
   ========================================================================== */

:root {
  /* Brand — sampled directly from the supplied Propserve logo.
     Green #a1db3b and grey #595959 are the exact logo values; every other
     step is the same hue at a different lightness, so nothing drifts. */
  --green:        #a1db3b;   /* brand green — fills, buttons, accents        */
  --green-600:    #7fb224;   /* button hover                                 */
  --green-700:    #4f7114;   /* icon strokes, ticks                          */
  --green-ink:    #587c18;   /* green TEXT on white — 4.9:1, passes AA       */
  --green-800:    #3d580e;
  --green-300:    #c5ea86;
  --green-wash-2: #e6f6ca;   /* chip / eyebrow background                    */
  --green-wash:   #f6fceb;   /* section tint                                 */

  /* Neutrals — true greys anchored on the logo's #595959, no blue tint */
  --ink-900: #1c1c1c;   /* headings                17.0:1 on white */
  --ink-800: #2e2e2e;
  --ink-700: #454545;
  --ink-600: #595959;   /* body copy — the logo grey  7.0:1 */
  --ink-500: #6f6f6f;   /* secondary copy             5.0:1 */
  --ink-400: #999999;
  --ink-300: #c4c4c4;
  --ink-200: #e2e2e2;   /* borders */
  --ink-100: #efefef;
  --ink-50:  #f8f8f8;   /* section wash */

  --btn-ink: #1e2b08;   /* label on green — 9.1:1 */

  --wa: #25d366;
  --wa-dark: #128c7e;

  --white: #ffffff;
  --amber-wash: #fdf6e7;
  --amber-ink: #6b4a00;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(28, 28, 28, .05), 0 2px 6px rgba(28, 28, 28, .04);
  --shadow: 0 4px 12px rgba(28, 28, 28, .06), 0 12px 28px rgba(28, 28, 28, .05);
  --shadow-lg: 0 10px 24px rgba(28, 28, 28, .08), 0 28px 60px rgba(28, 28, 28, .09);

  --maxw: 1180px;
  --pad: clamp(1rem, 4vw, 2rem);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
          'Helvetica Neue', Arial, sans-serif;
}

/* --------------------------------------------------------------- reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--green-ink); text-decoration-thickness: 1px; text-underline-offset: 2px; }
h1, h2, h3, h4 { color: var(--ink-900); line-height: 1.18; margin: 0 0 .6em; letter-spacing: -.02em; }
h1 { font-size: clamp(1.95rem, 4.4vw, 3rem); font-weight: 800; letter-spacing: -.028em; }
h2 { font-size: clamp(1.55rem, 3.4vw, 2.35rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .45em; }
:focus-visible { outline: 3px solid var(--green-700); outline-offset: 2px; border-radius: 4px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink-900); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* -------------------------------------------------------------- layout --- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.section--wash { background: var(--ink-50); }
.section--green { background: var(--green-wash); }
.section--dark { background: var(--ink-900); color: var(--ink-200); }
.section--dark h2, .section--dark h3 { color: #fff; }

.lede { font-size: 1.12rem; color: var(--ink-500); max-width: 62ch; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green-ink); background: var(--green-wash-2);
  padding: .35rem .8rem; border-radius: 999px; margin-bottom: 1rem;
}

.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius);
  padding: clamp(1.25rem, 2.5vw, 1.9rem); box-shadow: var(--shadow-sm);
}
.card h3 { margin-top: 0; }
.card > :last-child { margin-bottom: 0; }
.card--green { border-color: var(--green); background: var(--green-wash); }

/* -------------------------------------------------------------- header --- */
.topbar {
  background: var(--ink-900); color: var(--ink-200);
  font-size: .84rem; padding: .5rem 0;
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; align-items: center; justify-content: center; }
.topbar a { color: var(--green); text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
.topbar span { display: inline-flex; align-items: center; gap: .4rem; }

.site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.94);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--ink-200);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 1rem; min-height: 74px;
}

/* Brand lockup: keyword-first wordmark, Propserve as the endorsing parent.
   Deliberate — someone who searched "soil poisoning certificate" must see that
   phrase first or they bounce, which also costs Ads Quality Score. */
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand__mark { width: 40px; height: 40px; flex: 0 0 40px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand__name { font-weight: 800; font-size: 1.09rem; color: var(--ink-900); letter-spacing: -.02em; white-space: nowrap; }
.brand__parent { font-size: .7rem; font-weight: 600; color: var(--ink-500); letter-spacing: .02em; white-space: nowrap; }
.brand__parent b { color: var(--green-ink); font-weight: 700; }

.nav { display: flex; align-items: center; gap: .2rem; }
.nav a {
  color: var(--ink-700); text-decoration: none; font-weight: 600; font-size: .93rem;
  padding: .5rem .7rem; border-radius: 8px;
}
.nav a:hover { background: var(--ink-100); color: var(--ink-900); }
.nav a[aria-current="page"] { color: var(--green-ink); background: var(--green-wash); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--ink-200);
  border-radius: 9px; padding: .5rem .6rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink-800); margin: 4px 0; border-radius: 2px; }

@media (max-width: 1080px) {
  .nav-toggle { display: block; order: 3; }
  .nav {
    order: 4; flex-basis: 100%; flex-direction: column; align-items: stretch;
    gap: 0; padding-bottom: .8rem; display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: .7rem .6rem; border-bottom: 1px solid var(--ink-100); border-radius: 0; }
  .site-header .wrap { flex-wrap: wrap; }
  /* Specificity note: the base `.btn` rule is defined later in this file and
     also sets `display`, so a bare `.header-cta` selector loses on source
     order. Qualifying it wins on specificity instead. */
  .site-header .header-cta { display: none; }
}

@media (max-width: 520px) {
  .brand__mark { width: 36px; height: 36px; flex: 0 0 36px; }
  .brand__name { font-size: 1rem; }
  .brand__wordmark { height: 15px; }
  .site-header .wrap { min-height: 64px; }
  .topbar { font-size: .78rem; }
}

/* ------------------------------------------------------------- buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
  padding: .85rem 1.5rem; border-radius: 11px; border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  line-height: 1.2; text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--wa { background: var(--wa); color: #04291a; box-shadow: var(--shadow-sm); }
.btn--wa:hover { background: #1fc25c; }
.btn--primary { background: var(--green); color: var(--btn-ink); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-600); }
.btn--dark { background: var(--ink-900); color: #fff; }
.btn--dark:hover { background: var(--ink-800); }
.btn--ghost { background: #fff; color: var(--ink-800); border-color: var(--ink-200); }
.btn--ghost:hover { border-color: var(--ink-400); }
.btn--sm { padding: .6rem 1.05rem; font-size: .9rem; border-radius: 9px; }
.btn--lg { padding:1.05rem 2rem; font-size: 1.08rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-row--center { justify-content: center; }

/* ---------------------------------------------------------------- hero --- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 460px at 12% -10%, rgba(161,219,59,.22), transparent 62%),
    radial-gradient(900px 420px at 92% 8%, rgba(161,219,59,.13), transparent 60%),
    var(--white);
  padding-block: clamp(2.75rem, 6vw, 4.75rem);
  border-bottom: 1px solid var(--ink-200);
}
.hero__grid { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: start; }
@media (min-width: 1000px) { .hero__grid { grid-template-columns: 1.08fr .92fr; } }
.hero h1 { margin-bottom: .7rem; max-width: 16ch; }
.hero h1 { max-width: none; }
.hero__sub { font-size: 1.15rem; color: var(--ink-500); max-width: 54ch; margin-bottom: 1.5rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.badge {
  display: inline-flex; align-items: center; gap: .4rem; background: #fff;
  border: 1px solid var(--ink-200); border-radius: 999px;
  padding: .42rem .9rem; font-size: .85rem; font-weight: 600; color: var(--ink-700);
  box-shadow: var(--shadow-sm);
}
.badge svg { flex: 0 0 15px; color: var(--green-700); }

.hero__note { font-size: .88rem; color: var(--ink-500); margin-top: 1rem; }

/* --------------------------------------------------------------- stats --- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--ink-200); border: 1px solid var(--ink-200); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: #fff; padding: 1.35rem 1rem; text-align: center; }
.stat__v { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--ink-900); letter-spacing: -.03em; line-height: 1.1; }
.stat__l { font-size: .84rem; color: var(--ink-500); font-weight: 600; margin-top: .25rem; }

/* ---------------------------------------------------------------- form --- */
.form-card {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: clamp(1.4rem, 3vw, 2rem);
}
.form-card h2, .form-card h3 { margin-top: 0; }
.form-card__head { margin-bottom: 1.25rem; }
.form-card__head p { color: var(--ink-500); font-size: .95rem; margin-bottom: 0; }
.field { margin-bottom: .95rem; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--ink-800); margin-bottom: .35rem; }
.field .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink-900);
  padding: .78rem .9rem; border: 1.5px solid var(--ink-200); border-radius: 10px;
  background: var(--ink-50); transition: border-color .12s, background .12s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green-600); background: #fff; outline: none;
  box-shadow: 0 0 0 3px rgba(161,219,59,.25);
}
.field textarea { min-height: 92px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .95rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.form-note { font-size: .8rem; color: var(--ink-500); margin-top: .8rem; margin-bottom: 0; text-align: center; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ----------------------------------------------------------- languages --- */
.lang-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: .9rem; }
.lang {
  display: flex; align-items: center; gap: .85rem; background: #fff;
  border: 1px solid var(--ink-200); border-radius: var(--radius); padding: 1rem 1.15rem;
  text-decoration: none; box-shadow: var(--shadow-sm); transition: border-color .12s, transform .12s;
}
.lang:hover { border-color: var(--green); transform: translateY(-2px); }
.lang__ico { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 10px; background: var(--green-wash); display: grid; place-items: center; color: var(--green-ink); }
.lang__t { display: flex; flex-direction: column; line-height: 1.25; }
.lang__l { font-size: .78rem; font-weight: 700; color: var(--ink-500); text-transform: uppercase; letter-spacing: .06em; }
.lang__n { font-size: 1.02rem; font-weight: 700; color: var(--ink-900); }

/* ----------------------------------------------------------- process ----- */
.steps { counter-reset: step; display: grid; gap: 1.1rem; }
.step {
  position: relative; background: #fff; border: 1px solid var(--ink-200);
  border-radius: var(--radius); padding: 1.35rem 1.4rem 1.35rem 4.1rem; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 1.25rem; top: 1.3rem;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--green); color: var(--btn-ink); font-weight: 800; font-size: .95rem;
  display: grid; place-items: center;
}
.step h3 { margin-bottom: .3rem; font-size: 1.08rem; }
.step p { margin-bottom: 0; color: var(--ink-500); font-size: .96rem; }

/* --------------------------------------------------------------- faq ----- */
.faq { border: 1px solid var(--ink-200); border-radius: var(--radius); overflow: hidden; background: #fff; }
.faq details { border-bottom: 1px solid var(--ink-200); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 3rem 1.15rem 1.35rem;
  font-weight: 700; color: var(--ink-900); position: relative; font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 1.35rem; top: 50%;
  width: 10px; height: 10px; border-right: 2.5px solid var(--green-700);
  border-bottom: 2.5px solid var(--green-700); transform: translateY(-70%) rotate(45deg);
  transition: transform .18s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq summary:hover { background: var(--ink-50); }
.faq__a { padding: 0 1.35rem 1.3rem; color: var(--ink-500); }
.faq__a > :last-child { margin-bottom: 0; }

/* --------------------------------------------------------- testimonials -- */
.quote { background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.quote__stars { color: #f0a500; letter-spacing: 2px; margin-bottom: .6rem; font-size: 1rem; }
.quote p { font-size: .98rem; color: var(--ink-700); }
.quote__by { margin-top: auto; padding-top: .9rem; border-top: 1px solid var(--ink-100); }
.quote__n { font-weight: 700; color: var(--ink-900); font-size: .95rem; }
.quote__r { font-size: .85rem; color: var(--ink-500); }

/* -------------------------------------------------------------- areas ---- */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0; list-style: none; }
.chips li { margin: 0; }
.chips a, .chips span {
  display: inline-block; padding: .45rem .9rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--ink-200); font-size: .88rem;
  font-weight: 600; color: var(--ink-700); text-decoration: none;
}
.chips a:hover { border-color: var(--green); color: var(--green-ink); background: var(--green-wash); }
.chips span { color: var(--ink-500); font-weight: 500; }

/* -------------------------------------------------------------- notice --- */
.notice {
  background: var(--amber-wash); border: 1px solid #f0dcae; border-left: 4px solid #e0a800;
  border-radius: 10px; padding: 1rem 1.2rem; color: var(--amber-ink); font-size: .95rem;
}
.notice > :last-child { margin-bottom: 0; }
.notice strong { color: #5c3d00; }

/* ------------------------------------------------------------- cta bar --- */
.ctaband {
  background: linear-gradient(135deg, var(--ink-900), var(--ink-700));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}
.ctaband h2 { color: #fff; }
.ctaband p { color: var(--ink-200); max-width: 56ch; margin-inline: auto; }

/* -------------------------------------------------------------- footer --- */
.site-footer { background: var(--ink-900); color: var(--ink-400); padding-block: 3.5rem 1.5rem; font-size: .93rem; }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.site-footer a { color: var(--ink-200); text-decoration: none; }
.site-footer a:hover { color: var(--green); text-decoration: underline; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: .5rem; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__parent { color: var(--ink-400); }
.footer-brand .brand__parent b { color: var(--green); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid var(--ink-700);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .85rem; color: var(--ink-500);
}
.footer-bottom a { color: var(--ink-400); }

/* ------------------------------------------------- sticky mobile action -- */
.mobile-bar { display: none; }
@media (max-width: 780px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: .55rem .6rem calc(.55rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.97); border-top: 1px solid var(--ink-200);
    box-shadow: 0 -4px 20px rgba(18,24,31,.09);
  }
  .mobile-bar .btn { padding: .78rem .6rem; font-size: .95rem; }
  body { padding-bottom: 4.5rem; }
}

/* ------------------------------------------------------------ breadcrumb - */
.crumbs { font-size: .85rem; color: var(--ink-500); padding-top: 1.1rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; }
.crumbs li::after { content: '›'; margin-left: .4rem; color: var(--ink-400); }
.crumbs li:last-child::after { content: ''; }
.crumbs a { color: var(--ink-500); }

/* ---------------------------------------------------------------- misc --- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.checklist { list-style: none; padding: 0; }
.checklist li { position: relative; padding-left: 1.9rem; margin-bottom: .6rem; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: .45em;
  width: 1.1rem; height: .6rem; border-left: 2.5px solid var(--green-700);
  border-bottom: 2.5px solid var(--green-700); transform: rotate(-45deg);
}
.imgph {
  background: repeating-linear-gradient(45deg, var(--ink-50), var(--ink-50) 10px, var(--ink-100) 10px, var(--ink-100) 20px);
  border: 2px dashed var(--ink-200); border-radius: var(--radius);
  display: grid; place-items: center; text-align: center; padding: 2rem 1rem;
  color: var(--ink-400); font-size: .85rem; font-weight: 600; min-height: 200px;
}
.hide { display: none !important; }
@media print { .site-header, .mobile-bar, .topbar { display: none; } }

/* ======================================================= brand imagery ====
   Added once the real Propserve assets and site photography landed. */

/* --- logo lockup ------------------------------------------------------ */
.brand__mark { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 50%; }
.brand__parent { display: flex; align-items: center; gap: .3rem; }
.brand__wordmark { height: 17px; width: auto; }
.brand__years { color: var(--ink-400); font-size: .7rem; }
.brand__parent { gap: .4rem; margin-top: .18rem; }
.brand__mark { width: 42px; height: 42px; flex: 0 0 42px; }
.brand__name { font-size: 1.13rem; }
@media (max-width: 400px) { .brand__years { display: none; } }

.footer-brand__row { display: flex; align-items: center; gap: .6rem; margin-bottom: .9rem; }
.footer-brand__row .brand__name { color: #fff; font-size: 1.05rem; font-weight: 800; }
.footer-brand__division { font-size: .78rem; color: var(--ink-400); margin-bottom: .4rem; }
.footer-logo { height: 26px; width: auto; margin-bottom: 1.1rem; }

/* --- photography ------------------------------------------------------
   Contained, quiet framing. Soft border and radius so a phone photo reads
   as a considered inset rather than a full-bleed hero shouting over the
   layout. Slight desaturation at rest, true colour on hover. */
.photo { margin: 0; }
.photo picture { display: block; }
.photo img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius);
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-sm);
  background: var(--ink-50);
  filter: saturate(.94);
  transition: filter .35s ease, box-shadow .35s ease;
}
.photo:hover img { filter: saturate(1); box-shadow: var(--shadow); }
.photo figcaption {
  margin-top: .7rem; font-size: .84rem; color: var(--ink-500);
  line-height: 1.5; padding-left: .85rem; border-left: 2px solid var(--green);
}
.photo--wide img { border-radius: var(--radius-lg); }
.section--dark .photo img, .ctaband .photo img { border-color: rgba(255,255,255,.14); }

/* two photos stacked in a narrow column */
.photo-stack { display: grid; gap: 1.1rem; }

/* --- rate / mixing callout ------------------------------------------- */
.rate-grid { display: grid; gap: clamp(1.5rem, 4vw, 2.75rem); align-items: center; }
@media (min-width: 900px) { .rate-grid { grid-template-columns: 1fr 1fr; } }
.rate-points { display: grid; gap: 1rem; margin-top: 1.4rem; }
.rate-point { display: flex; gap: .85rem; align-items: flex-start; }
.rate-point__ico {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 9px;
  background: var(--green-wash-2); color: var(--green-700);
  display: grid; place-items: center; margin-top: .1rem;
}
.rate-point__t { font-weight: 700; color: var(--ink-900); display: block; margin-bottom: .1rem; }
.rate-point p { margin: 0; font-size: .95rem; color: var(--ink-500); }


/* --- hero proof strip -------------------------------------------------
   Fills the dead space under the hero CTAs and, more importantly, puts a
   real photograph of real work above the fold. Nothing convinces a builder
   faster than seeing the job they are about to buy. */
.hero__proof { margin-top: 2rem; }
.hero__proof .photo img { aspect-ratio: 16 / 8.2; object-fit: cover; object-position: center 42%; }
.hero__proof figcaption { display: flex; align-items: center; gap: .5rem; }
@media (max-width: 1080px) { .hero__proof { display: none; } }

/* --- people / signature ------------------------------------------------ */
.signature {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem;
  border-top: 1px solid var(--ink-200); margin-top: 2rem; padding-top: 1.5rem;
}
.signature__t { font-size: .95rem; color: var(--ink-500); margin: 0; max-width: 46ch; }
.signature__t b { color: var(--ink-900); }

.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 0; padding: 0; list-style: none; }
.pill-row li {
  margin: 0; font-size: .85rem; font-weight: 600; color: var(--ink-700);
  background: #fff; border: 1px solid var(--ink-200); border-radius: 999px; padding: .4rem .85rem;
}

/* --- typographic polish ------------------------------------------------
   Balanced headline wrapping avoids the single-word orphan on the last
   line, which is the difference between "designed" and "just typed". */
h1, h2, h3, .lede, .hero__sub, .quote p, blockquote { text-wrap: balance; }
p, li, figcaption { text-wrap: pretty; }
.prose p { max-width: 68ch; }

/* --- respect the user's motion preference ------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .btn:hover { transform: none; }
  .lang:hover { transform: none; }
}

/* ====================================================== price calculator ===
   Sits inside a contained card so it reads as a tool, not a form dump. */
.calc {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: clamp(1.4rem, 3.5vw, 2.5rem);
}
.calc__head { margin-bottom: 1.75rem; }
.calc__head h2 { margin-bottom: .5rem; }
.calc__head .lede { margin-bottom: 0; }

.calc__grid { display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); align-items: start; }
@media (min-width: 900px) { .calc__grid { grid-template-columns: 1fr 1fr; } }

.calc__inputs .field { margin-bottom: 1.15rem; }
.field__hint { font-size: .82rem; color: var(--ink-500); margin: .4rem 0 0; line-height: 1.45; }

.calc__out {
  background: var(--ink-50); border: 1px solid var(--ink-200);
  border-radius: var(--radius); padding: clamp(1.15rem, 2.5vw, 1.6rem);
  min-height: 220px;
}
.calc__empty { color: var(--ink-500); font-size: .95rem; display: grid; place-items: center; min-height: 180px; text-align: center; }
.calc__empty p { margin: 0; max-width: 26ch; }

.calc__total {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: #fff; border: 1px solid var(--green); border-radius: var(--radius);
  padding: 1.15rem; margin-bottom: 1.1rem;
}
.calc__total-label { font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--green-ink); }
.calc__total-value { font-size: clamp(1.9rem, 5vw, 2.6rem); font-weight: 800; color: var(--ink-900); letter-spacing: -.03em; line-height: 1.1; margin: .15rem 0; }
.calc__total-note { font-size: .82rem; color: var(--ink-500); }

.calc__table { width: 100%; border-collapse: collapse; font-size: .92rem; margin-bottom: 1.1rem; }
.calc__table th, .calc__table td { padding: .55rem 0; text-align: left; vertical-align: top; font-weight: 400; color: var(--ink-600); }
.calc__table td { text-align: right; white-space: nowrap; padding-left: .75rem; color: var(--ink-900); font-variant-numeric: tabular-nums; }
.calc__table tr + tr th, .calc__table tr + tr td { border-top: 1px solid var(--ink-200); }
.calc__table .calc__rule th, .calc__table .calc__rule td { border-top: 2px solid var(--ink-300); }
.calc__sub { display: block; font-size: .78rem; color: var(--ink-500); margin-top: .1rem; }

.calc__caveat { margin-bottom: 1.1rem; font-size: .88rem; }
.calc__outside h3 { margin-top: 0; }
.calc__legal { font-size: .78rem; color: var(--ink-500); margin: 1.5rem 0 0; text-align: center; }

@media (max-width: 520px) {
  .calc__table th, .calc__table td { font-size: .86rem; }
}

/* footer parent-company link + areas note */
.footer-parent { margin-top: 1.1rem; }
.footer-parent a {
  display: inline-block; font-weight: 700; font-size: 1rem; color: var(--green);
  text-decoration: none; border-bottom: 1px solid rgba(161,219,59,.45); padding-bottom: 1px;
}
.footer-parent a:hover { color: #fff; border-bottom-color: #fff; }
.footer-parent span { display: block; font-size: .82rem; color: var(--ink-400); margin-top: .35rem; max-width: 42ch; }
.areas-note {
  margin: 1.75rem auto 0; max-width: 70ch; text-align: center;
  font-size: .95rem; color: var(--ink-500);
  background: var(--green-wash); border: 1px solid var(--green-wash-2);
  border-radius: var(--radius); padding: 1rem 1.25rem;
}
.areas-note strong { color: var(--ink-900); }

/* address recognised confirmation + quote on the thank-you page */
.field__hint--ok { color: var(--green-ink); font-weight: 600; }
.quote-meta {
  text-align: center; font-size: .9rem; color: var(--ink-500);
  margin: 0 0 1.1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--ink-200);
}
.quote-result {
  background: var(--ink-50); border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg); padding: clamp(1.2rem, 3vw, 1.9rem);
  text-align: left; margin: 0 auto 2rem; max-width: 560px;
}

/* ---------------------------------------------- address suggestions --- */
/* Our own dropdown rather than Google's widget, so it inherits the site's
   type and green and the API key never has to reach the browser. */
.ac-wrap { position: relative; }
.ac {
  position: absolute; z-index: 40; left: 0; right: 0; top: calc(100% + 4px);
  background: #fff; border: 1.5px solid var(--ink-200); border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,.11); overflow: hidden;
}
.ac__item {
  display: block; padding: .6rem .9rem; cursor: pointer;
  border-bottom: 1px solid var(--ink-100, #eee); line-height: 1.35;
}
.ac__item:last-child { border-bottom: 0; }
.ac__item.is-active { background: var(--green-wash, #f2f8e4); }
.ac__main { display: block; font-size: .95rem; color: var(--ink-900); }
.ac__sub  { display: block; font-size: .8rem; color: var(--ink-500); margin-top: .1rem; }
