/* ============================================================================
   starter.css — MECHANICS-ONLY FLOOR (copied verbatim to the top, per skill).
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-size: 1.0625rem; line-height: 1.6; }
img, svg, video { max-width: 100%; height: auto; }

:root {
  --space-1: 0.25rem; --space-2: 0.5rem;  --space-3: 0.75rem; --space-4: 1rem;
  --space-5: 1.5rem;  --space-6: 2rem;    --space-7: 3rem;     --space-8: 4.5rem;
  --measure: 38rem;
  --section-pad: 4.5rem;
}

h1 { font-size: 2.5rem;   line-height: 1.08; margin: 0 0 1rem; }
h2 { font-size: 1.75rem;  line-height: 1.15; margin: 0 0 0.75rem; }
h3 { font-size: 1.375rem; line-height: 1.25; margin: 0 0 0.5rem; }
p  { margin: 0 0 1rem; max-width: var(--measure); }
@media (min-width: 1000px) { h1 { font-size: 3rem; } }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid currentColor; outline-offset: 2px;
}
a { text-underline-offset: 3px; }

:root { --header-safe: clamp(5rem, 9vh, 7rem); }
html { scroll-padding-top: var(--header-safe); }

@media (max-width: 720px) {
  :root { --section-pad: 2.5rem; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* ============================================================================
   END OF FLOOR.  B&K LAWN & LANDSCAPE — "Stone & Turf" design system below.
   ============================================================================ */

:root {
  /* palette — cool structural base + vivid living green */
  --ink:    #16211b;   /* near-black slate-green: body text + dark bands */
  --ink-2:  #0e1712;   /* deeper: footer */
  --pine:   #115c34;   /* deep green, passes AA as text on light */
  --turf:   #58c07c;   /* vivid green, for LIGHT-on-dark + fills */
  --turf-d: #2b8048;   /* mid green for solid buttons on light (AA: white passes) */
  --stone:  #e9ede7;   /* cool light gray-green section bg */
  --stone-2:#dde3dc;   /* slightly deeper stone */
  --paper:  #fbfcfa;   /* crisp near-white */
  --line:   #ccd5cb;   /* hairlines on light */
  --line-d: #2b3a30;   /* hairlines on dark */
  --muted:  #46544a;   /* muted text on light (AA on paper/stone) */
  --gold:   #b8841a;   /* award gold — used sparingly, AA on light */
  --ink-soft: rgba(255,255,255,0.82);

  --maxw: 76rem;
  --radius: 14px;
  --radius-s: 9px;
  --shadow: 0 18px 50px -28px rgba(14,23,18,0.55);
  --shadow-s: 0 8px 24px -16px rgba(14,23,18,0.5);
  --fast: 180ms ease;
}

body {
  font-family: "Asap", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display, .numeral, .wordmark {
  font-family: "Big Shoulders Display", "Asap", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.5rem, 5vw, 3rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-weight: 700; }
.display { font-size: clamp(2.5rem, 6vw, 3.75rem); line-height: 0.98; margin: 0 0 1rem; }
p { color: var(--ink); }
.measure-wide { max-width: 46rem; }

a { color: var(--pine); }
a:hover { color: var(--turf-d); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.section--stone { background: var(--stone); }
.section--ink { background: var(--ink); color: #eef3ec; }
.section--ink p { color: #dbe6dc; background-color: var(--ink); }
.section--ink h2 { color: #ffffff; background-color: var(--ink); }
.section--ink h3 { color: #ffffff; background-color: var(--ink); }
.section--ink li { color: #dbe6dc; background-color: var(--ink); }
.section--ink a:not(.btn) { color: var(--turf); background-color: var(--ink); }
.section--ink strong { color: #ffffff; background-color: var(--ink); }

/* eyebrow / kicker */
.eyebrow {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700; text-transform: uppercase;
  font-size: 0.8125rem; letter-spacing: 0.22em;
  color: var(--pine); margin: 0 0 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--turf-d); display: inline-block;
}
.section--ink .eyebrow { color: var(--turf); background-color: var(--ink); }
.section--ink .eyebrow::before { background: var(--turf); }

.lede { font-size: 1.0625rem; line-height: 1.65; color: var(--muted); max-width: 40rem; }
.section--ink .lede { color: #cdd8cf; background-color: var(--ink); max-width: 40rem; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 1.0625rem; line-height: 1;
  padding: 0.875rem 1.5rem; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform var(--fast), background var(--fast), color var(--fast), border-color var(--fast);
}
.btn--primary { background: var(--turf-d); color: #ffffff; }
.btn--primary:hover { background: var(--pine); color: #ffffff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--pine); color: var(--pine); }
.btn--onink { background: var(--turf); color: #08130c; }
.btn--onink:hover { background: #74d093; color: #08130c; transform: translateY(-2px); }
.btn--lightghost { background: linear-gradient(0deg, transparent, transparent); color: #eef3ec; border-color: rgba(255,255,255,0.4); }
.btn--lightghost:hover { border-color: var(--turf); color: var(--turf); background-color: var(--ink); }

/* ============================ HEADER ============================ */
.util {
  background: var(--ink); color: #d7e0d8; font-size: 0.8125rem;
}
.util .wrap { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; align-items: center; justify-content: space-between; padding-top: 0.5rem; padding-bottom: 0.5rem; }
.util a { color: #ffffff; background-color: var(--ink); text-decoration: none; font-weight: 600; }
.util a:hover { color: var(--turf); background-color: var(--ink); }
.util span { background-color: var(--ink); color: #cdd8cf; }
.util .util__award { color: var(--turf); background-color: var(--ink); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.8125rem; }

.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,252,250,0.96);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1px solid var(--line);
}
.head-row {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 0.75rem; padding-bottom: 0.75rem;
}
.brand { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; min-width: 0; flex-shrink: 1; }
.brand__mark {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 11px;
  background: var(--ink); display: grid; place-items: center;
  color: var(--turf); font-family: "Big Shoulders Display", sans-serif; font-weight: 800;
  font-size: 1.375rem; letter-spacing: 0.02em;
}
.brand__mark span { background-color: var(--ink); color: var(--turf); }
.wordmark { line-height: 1.0; color: var(--ink); }
.wordmark b { display: block; font-size: 1.375rem; letter-spacing: 0.03em; font-weight: 800; line-height: 1.0; }
.wordmark small {
  display: block; font-family: "Asap", sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.8125rem;
  color: var(--muted); line-height: 1.3; margin-top: 2px;
}

.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger {
  margin-left: auto; display: inline-flex; flex-direction: column; gap: 5px;
  padding: 0.625rem; cursor: pointer; border: 1px solid var(--line); border-radius: 10px;
  background: var(--paper);
}
.nav-burger span { width: 22px; height: 2px; background: var(--ink); display: block; }

.nav { margin-left: auto; }
.nav ul { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem; margin: 0; padding: 0; }
.nav a {
  display: inline-block; text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: 1.0625rem; padding: 0.5rem 0.75rem; border-radius: 8px;
}
.nav a:hover { color: var(--pine); background: var(--stone); }
.nav a[aria-current="page"] { color: var(--pine); box-shadow: inset 0 -2px 0 var(--turf-d); }
.head-cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.head-cta .btn { padding: 0.625rem 1.125rem; font-size: 1.0625rem; }

@media (max-width: 1200px) {
  .nav {
    flex-basis: 100%; margin-left: 0; order: 3;
    max-height: 0; overflow: hidden; transition: max-height var(--fast);
  }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem 0 0.75rem; }
  .nav a { padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-toggle:checked ~ .nav { max-height: 34rem; }
  .head-row { flex-wrap: wrap; }
  .head-cta { margin-left: auto; }
}
@media (min-width: 1201px) { .nav-burger { display: none; } }

/* ============================ HERO (home) ============================ */
.lead {
  position: relative; color: #ffffff;
  background: var(--ink);
  border-bottom: 4px solid var(--turf-d);
}
.lead__media { position: absolute; inset: 0; overflow: hidden; }
.lead__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.lead__scrim {
  position: relative; z-index: 2;
  background: linear-gradient(85deg, rgba(12,20,14,0.92) 0%, rgba(12,20,14,0.72) 42%, rgba(12,20,14,0.12) 100%);
  padding-top: clamp(3.5rem, 8vw, 6.5rem); padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
}
.lead__inner { max-width: 41rem; }
.lead .eyebrow { color: var(--turf); background: linear-gradient(0deg, transparent, transparent); }
.lead .eyebrow::before { background: var(--turf); }
.lead .display { color: #ffffff; background: linear-gradient(0deg, transparent, transparent); text-shadow: 0 2px 18px rgba(0,0,0,0.35); }
.lead p { color: #eaf1e9; background: linear-gradient(0deg, transparent, transparent); font-size: 1.0625rem; max-width: 33rem; }
.lead__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.lead__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 2rem; font-size: 0.8125rem; color: #cfdbd0; background: linear-gradient(0deg, transparent, transparent); }
.lead__meta b { color: var(--turf); background: linear-gradient(0deg, transparent, transparent); font-family: "Big Shoulders Display", sans-serif; font-size: 1.0625rem; letter-spacing: 0.02em; }

/* ============================ TRUST STRIP ============================ */
.trust { background: var(--ink-2); }
.trust .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem 2.5rem; padding-top: 1.25rem; padding-bottom: 1.25rem; }
.trust__badges { display: flex; gap: 0.75rem; }
.trust__badges img { width: 72px; height: 72px; }
.trust__item { color: #e7efe6; background-color: var(--ink-2); font-size: 0.8125rem; max-width: 16rem; }
.trust__item b { display: block; color: var(--turf); background-color: var(--ink-2); font-family: "Big Shoulders Display", sans-serif; font-size: 1.375rem; letter-spacing: 0.02em; line-height: 1.1; }
.trust__sep { width: 1px; height: 40px; background: var(--line-d); }

/* ============================ SERVICES GRID ============================ */
.svc-grid { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.svc-grid li { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--fast), box-shadow var(--fast); }
.svc-grid li:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-grid li > a { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; height: 100%; }
.svc-grid figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.svc-grid figure img { width: 100%; height: 100%; object-fit: cover; }
.svc-grid .svc-body { padding: 1.25rem 1.25rem 1.5rem; }
.svc-grid h3 { color: var(--ink); margin-bottom: 0.375rem; }
.svc-grid p { font-size: 0.8125rem; color: var(--muted); margin: 0 0 0.75rem; }
.svc-grid .more { font-family: "Big Shoulders Display", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8125rem; color: var(--pine); }

/* ============================ SPLIT / FEATURE ROWS ============================ */
.split { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 860px) { .split { grid-template-columns: 1.05fr 0.95fr; } .split--flip > .split__media { order: 2; } }
.split__media { position: relative; }
.frame { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.frame--tall { aspect-ratio: 4 / 5; }
.frame--wide { aspect-ratio: 16 / 10; }

/* overhang card: wrapper is non-clipping; clipped media + overhang are siblings */
.overhang { position: absolute; right: -0.5rem; bottom: -1.25rem; z-index: 3;
  background: var(--ink); color: #eef3ec; padding: 1rem 1.25rem; border-radius: 12px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.75rem; max-width: 17rem; }
.overhang img { width: 56px; height: 56px; flex-shrink: 0; }
.overhang b { color: var(--turf); background-color: var(--ink); font-family: "Big Shoulders Display", sans-serif; font-size: 1.375rem; line-height: 1; display: block; }
.overhang span { color: #d7e0d8; background-color: var(--ink); font-size: 0.8125rem; }

/* ============================ CHECKLIST ============================ */
.ticks { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: 0.625rem; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }
.ticks li { position: relative; padding-left: 1.875rem; color: var(--ink); font-size: 1.0625rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 0.18em; width: 18px; height: 18px;
  background: var(--turf-d); border-radius: 5px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E") center/14px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E") center/14px no-repeat;
}
.section--ink .ticks li { color: #e7efe6; background-color: var(--ink); }
.section--ink .ticks li::before { background: var(--turf); }

/* ============================ SERVICE PAGE BANNER ============================ */
.pagehead { position: relative; background: var(--ink); color: #fff; border-bottom: 4px solid var(--turf-d); }
.pagehead__media { position: absolute; inset: 0; overflow: hidden; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehead__scrim { position: relative; z-index: 2; background: linear-gradient(90deg, rgba(12,20,14,0.9) 0%, rgba(12,20,14,0.66) 55%, rgba(12,20,14,0.18) 100%);
  padding-top: clamp(3rem,6vw,5rem); padding-bottom: clamp(3rem,6vw,5rem); }
.pagehead h1 { color: #fff; background: linear-gradient(0deg, transparent, transparent); max-width: 18ch; }
.pagehead p { color: #e7efe6; background: linear-gradient(0deg, transparent, transparent); max-width: 34rem; }
.pagehead .eyebrow { color: var(--turf); background: linear-gradient(0deg, transparent, transparent); }
.pagehead .eyebrow::before { background: var(--turf); }
.crumbs { font-size: 0.8125rem; color: #b9c6bb; background: linear-gradient(0deg, transparent, transparent); margin-bottom: 0.75rem; }
.crumbs a { color: #dfe8e0; background: linear-gradient(0deg, transparent, transparent); text-decoration: none; }
.crumbs a:hover { color: var(--turf); background: linear-gradient(0deg, transparent, transparent); }

/* ============================ DETAIL SUBSECTIONS ============================ */
.deep { display: grid; gap: clamp(1.5rem,4vw,3rem); align-items: center; grid-template-columns: 1fr; margin-top: 2rem; }
@media (min-width: 820px) { .deep { grid-template-columns: 1fr 1fr; } .deep--flip .deep__media { order: 2; } }
.deep + .deep { margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: clamp(2.5rem,5vw,4rem); border-top: 1px solid var(--line); }
.tag { display: inline-block; font-family: "Big Shoulders Display", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8125rem; color: #08130c; background: var(--turf); padding: 0.25rem 0.625rem; border-radius: 6px; margin-bottom: 0.75rem; }

/* mini quote pill within sections */
.note { background: var(--stone); border-left: 4px solid var(--turf-d); padding: 1rem 1.25rem; border-radius: 0 10px 10px 0; color: var(--ink); font-size: 0.8125rem; }

/* ============================ GALLERY ============================ */
.gal { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.gal li { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-s); }
.gal figure { margin: 0; }
.gal img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform 420ms ease; }
.gal li:hover img { transform: scale(1.05); }
.gal figcaption { font-size: 0.8125rem; color: var(--muted); padding: 0.625rem 0.25rem 0; }

/* ============================ TESTIMONIALS ============================ */
.quotes { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); }
.quotes li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-s); display: flex; flex-direction: column; }
.section--stone .quotes li { background: var(--paper); }
.quotes blockquote { margin: 0 0 1rem; font-size: 1.0625rem; line-height: 1.55; color: var(--ink); }
.quotes .stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.8125rem; margin-bottom: 0.625rem; }
.quotes figcaption { font-family: "Big Shoulders Display", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--pine); font-size: 0.8125rem; margin-top: auto; }

/* ============================ STAT / NUMERAL ROW ============================ */
.stats { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); }
.stats li { background-color: var(--ink); }
.stats .numeral { color: var(--turf); background-color: var(--ink); font-size: 3.75rem; line-height: 0.9; display: block; }
.stats span { color: #cdd8cf; background-color: var(--ink); font-size: 0.8125rem; display: block; margin-top: 0.25rem; }

/* ============================ SERVICE AREA ============================ */
.towns { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.625rem; grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); }
.towns li { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 0.875rem 1rem; font-family: "Big Shoulders Display", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink); display: flex; align-items: center; gap: 0.5rem; }
.towns li::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--turf-d); flex-shrink: 0; }
.towns li.is-base { background: var(--ink); color: #fff; }
.towns li.is-base::before { background: var(--turf); }

/* ============================ FORM ============================ */
.formwrap { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem,3vw,2rem); box-shadow: var(--shadow-s); }
.demoflag { font-size: 0.8125rem; color: var(--muted); background: var(--stone); border-radius: 8px; padding: 0.625rem 0.875rem; margin-bottom: 1.25rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.375rem; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 1.0625rem; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: 10px; padding: 0.75rem 0.875rem;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--pine); outline: 3px solid rgba(17,92,52,0.25); outline-offset: 0; }
.checks { display: grid; gap: 0.5rem; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); margin-top: 0.375rem; }
.checks label { display: flex; align-items: center; gap: 0.5rem; text-transform: none; letter-spacing: 0; font-weight: 500; font-size: 1.0625rem; color: var(--ink); margin: 0; }
.checks input { width: auto; }
.tworow { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .tworow { grid-template-columns: 1fr 1fr; } }

/* contact detail list */
.contactlist { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
.contactlist li { display: flex; gap: 0.875rem; align-items: flex-start; }
.contactlist .k { font-family: "Big Shoulders Display", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8125rem; color: var(--pine); display: block; margin-bottom: 0.125rem; }
.contactlist a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contactlist a:hover { color: var(--pine); }
.icon-dot { flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; background: var(--stone); display: grid; place-items: center; color: var(--pine); }
.icon-dot svg { width: 19px; height: 19px; }

/* map placeholder */
.mapbox { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--stone); aspect-ratio: 16/10; display: grid; place-items: center; text-align: center; padding: 1.5rem; }
.mapbox span { color: var(--muted); font-size: 0.8125rem; max-width: 22rem; }

/* contour divider (simple geometric motif) */
.contour { display: block; width: 100%; height: 38px; color: var(--turf-d); opacity: 0.5; }
.section--ink .contour { color: var(--turf); opacity: 0.4; background-color: var(--ink); }

/* ============================ CTA BAND ============================ */
.callout { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.callout .wrap { position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding-top: clamp(2.5rem,5vw,3.5rem); padding-bottom: clamp(2.5rem,5vw,3.5rem); }
.callout h2 { color: #fff; background-color: var(--ink); margin: 0; max-width: 24ch; }
.callout p { color: #cdd8cf; background-color: var(--ink); margin: 0.5rem 0 0; }
.callout__art { position: absolute; right: -4%; top: 0; bottom: 0; width: 50%; color: var(--turf); opacity: 0.16; z-index: 1; background-color: var(--ink); }

/* ============================ FOOTER ============================ */
.foot { background: var(--ink-2); color: #c4d0c5; }
.foot a { color: #dbe5dc; background-color: var(--ink-2); text-decoration: none; }
.foot a:hover { color: var(--turf); background-color: var(--ink-2); }
.foot__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; padding-top: clamp(2.5rem,5vw,3.5rem); padding-bottom: 2rem; }
@media (min-width: 720px) { .foot__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.foot h3 { font-family: "Big Shoulders Display", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8125rem; color: #ffffff; background-color: var(--ink-2); margin: 0 0 0.875rem; line-height: 1.25; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.foot .wordmark { color: #fff; background-color: var(--ink-2); }
.foot .wordmark b { color: #fff; background-color: var(--ink-2); }
.foot .wordmark small { color: #9fb0a2; background-color: var(--ink-2); }
.foot p { color: #b6c3b8; background-color: var(--ink-2); font-size: 0.8125rem; }
.foot__badges { display: flex; gap: 0.625rem; margin-top: 1rem; }
.foot__badges img { width: 58px; height: 58px; }
.foot__bar { border-top: 1px solid var(--line-d); padding: 1.25rem 0; font-size: 0.8125rem; color: #91a294; background-color: var(--ink-2); display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; }
.foot__bar span { background-color: var(--ink-2); color: #91a294; }

/* ============================ MOBILE STICKY CALL BAR ============================ */
.callbar { display: none; }
@media (max-width: 760px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    box-shadow: 0 -8px 24px -16px rgba(0,0,0,0.5);
  }
  .callbar a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem; text-decoration: none;
    font-family: "Big Shoulders Display", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 1.0625rem; }
  .callbar .call { background: var(--ink); color: #fff; }
  .callbar .quote { background: var(--turf-d); color: #fff; }
  .callbar svg { width: 18px; height: 18px; }
  body { padding-bottom: 3.5rem; }
}

/* intro grid for two-column section text */
.lead-two { display: grid; gap: clamp(1.25rem,3vw,2.5rem); grid-template-columns: 1fr; align-items: end; }
@media (min-width: 820px) { .lead-two { grid-template-columns: 1.4fr 1fr; } }
.section-head { max-width: 50rem; }

/* utility */
.center { text-align: center; margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.flexcta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.pill { font-size: 0.8125rem; background: var(--stone); border: 1px solid var(--line); border-radius: 999px; padding: 0.375rem 0.875rem; color: var(--ink); }
.section--ink .pill { background: #20302a; border-color: var(--line-d); color: #e7efe6; }
