/* ======================================================================
   Sandwich Lawn Mowing — Design System
   Modern, clean, friendly. Green + cream palette, rounded surfaces.
====================================================================== */

:root {
  --green-900: #0f3d2e;
  --green-700: #1f6b4b;
  --green-600: #2d8a5f;
  --green-500: #3aa670;
  --green-100: #e6f4ec;
  --green-50:  #f2faf5;

  --cream-50:  #fbfaf4;
  --cream-100: #f4f1e6;

  --sun:       #f5c04a;
  --sun-dark:  #d99a1e;

  --ink-900:   #0f1a14;
  --ink-700:   #2b3b32;
  --ink-500:   #546459;
  --ink-300:   #94a398;

  --line:      #e2e8de;
  --shadow-sm: 0 1px 2px rgba(15, 61, 46, 0.06), 0 1px 3px rgba(15, 61, 46, 0.08);
  --shadow-md: 0 6px 18px rgba(15, 61, 46, 0.08), 0 2px 6px rgba(15, 61, 46, 0.06);
  --shadow-lg: 0 20px 40px rgba(15, 61, 46, 0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --container: 1180px;
  --pad: clamp(1rem, 2.5vw, 1.75rem);

  --font-sans: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Fraunces", "Plus Jakarta Sans", Georgia, serif;
}

* { box-sizing: border-box; }

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

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

img { max-width: 100%; display: block; height: auto; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-900); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.4rem); }

p { margin: 0 0 1em; }

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

.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(2rem, 4vw, 3rem) 0; }
.section--green { background: var(--green-50); }
.section--cream { background: var(--cream-100); }
.section--dark { background: var(--green-900); color: #dbe9e0; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-500);
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--green-900); color: #fff; box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--green-900);
  border-color: var(--green-700);
}
.btn-ghost:hover { background: var(--green-100); color: var(--green-900); }
.btn-sun {
  background: var(--sun);
  color: var(--ink-900);
}
.btn-sun:hover { background: var(--sun-dark); color: #fff; }

.btn-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform .2s ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 244, 0.92);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; color: var(--green-900); }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--green-700);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.brand-sub { color: var(--ink-500); font-weight: 400; font-size: 0.85rem; display: block; line-height: 1; }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-left: auto;
  align-items: center;
  list-style: none;
  padding: 0;
}
.nav-links a {
  color: var(--ink-700);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { background: var(--green-100); color: var(--green-900); text-decoration: none; }
.nav-links a.active { color: var(--green-900); background: var(--green-100); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: #fff; }

.nav-cta { margin-left: 0.5rem; }

.nav-dropdown { position: relative; }
.nav-dropdown > button {
  background: none; border: 0; font: inherit; cursor: pointer;
  color: var(--ink-700);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-dropdown > button:hover { background: var(--green-100); color: var(--green-900); }
.nav-dropdown > button::after {
  content: "▾";
  font-size: 0.7em;
  opacity: 0.6;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.4rem;
  min-width: 230px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  color: var(--ink-700);
  font-weight: 500;
}
.nav-dropdown-menu a:hover { background: var(--green-50); color: var(--green-900); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  margin-left: auto;
  cursor: pointer;
  color: var(--ink-900);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0.1rem;
    background: #fff;
    padding: 0.75rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; width: 100%; border-radius: 10px; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: 0; padding: 0 0 0 0.75rem; opacity: 1; visibility: visible; transform: none; min-width: 0; }
  .nav-dropdown > button { width: 100%; text-align: left; justify-content: space-between; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem, 5vw, 4.5rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-grid--single { grid-template-columns: 1fr; text-align: center; }
.hero-grid--single .lede { margin-inline: auto; }
.hero-grid--single .hero-actions { justify-content: center; }

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 .accent { color: var(--green-700); }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-100);
  color: var(--green-900);
  border-radius: 999px;
  padding: 0.4rem 0.85rem 0.4rem 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.hero-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(58, 166, 112, 0.25);
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem;
}
.hero-meta {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem;
  font-size: 0.94rem;
  color: var(--ink-500);
}
.hero-meta strong { color: var(--ink-900); display: block; font-size: 1.15rem; font-family: var(--font-display); }

.hero-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--green-100);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.75rem;
  max-width: 84%;
}
.hero-badge-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--sun);
  display: grid; place-items: center;
  font-size: 1.4rem;
}
.hero-badge-text { font-size: 0.88rem; color: var(--ink-700); }
.hero-badge-text strong { display: block; color: var(--ink-900); font-size: 1rem; font-family: var(--font-display); font-weight: 600; }

/* decorative blob */
.hero::before {
  content: "";
  position: absolute;
  top: -180px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(58, 166, 112, 0.15), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

/* ---------- Trust bar ---------- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.trust-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.trust-icon {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-100);
  display: grid; place-items: center;
  font-size: 1.25rem;
}
.trust-item h4 { margin: 0 0 0.15rem; font-size: 1rem; font-family: var(--font-sans); color: var(--ink-900); font-weight: 600; }
.trust-item p { margin: 0; font-size: 0.9rem; color: var(--ink-500); }

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-500);
  text-decoration: none;
}
.service-card-media {
  aspect-ratio: 4/3;
  background: var(--green-100);
  overflow: hidden;
}
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-media img { transform: scale(1.04); }
.service-card-body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.service-card-body h3 { margin: 0 0 0.35rem; font-size: 1.25rem; }
.service-card-body p { color: var(--ink-500); margin-bottom: 1rem; font-size: 0.95rem; }
.service-card-price {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  align-self: flex-start;
}
.service-card-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--green-700);
  font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.service-card:hover .service-card-link { color: var(--green-900); }
.service-card:hover .service-card-link::after { transform: translateX(3px); }
.service-card-link::after { content: "→"; transition: transform .2s ease; }

/* ---------- Generic feature/info cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.feature-card h3 { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.4rem; }
.feature-card p { color: var(--ink-500); font-size: 0.95rem; margin: 0; }
.feature-card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--green-100);
  display: grid; place-items: center;
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

/* ---------- Area / town chips ---------- */
.town-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.town-chip {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-700);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
}
.section--dark .town-chip { background: rgba(255,255,255,0.06); color: #e2efe7; border-color: rgba(255,255,255,0.12); }

/* ---------- Split / content image + text ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
}
.split-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.4rem;
  position: relative;
}
.testimonial-stars { color: var(--sun-dark); letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 0.6rem; }
.testimonial-quote { font-size: 1.02rem; color: var(--ink-700); margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.7rem; font-size: 0.92rem; color: var(--ink-500); }
.testimonial-author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  display: grid; place-items: center;
  font-weight: 600;
  font-family: var(--font-display);
}
.testimonial-author strong { color: var(--ink-900); display: block; font-size: 0.95rem; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
}
.cta-strip h2 { color: #fff; margin-bottom: 0.4rem; }
.cta-strip p { color: rgba(255,255,255,0.85); margin: 0; }
.cta-strip-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cta-strip .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.6); }
.cta-strip .btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
@media (max-width: 720px) { .cta-strip { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 0.35rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--cream-50);
  color: var(--ink-900);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(58, 166, 112, 0.15);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* ---------- How-To cards ---------- */
.howto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.howto-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
  color: inherit;
}
.howto-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-500);
  text-decoration: none;
}
.howto-tag {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.howto-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.howto-card p { color: var(--ink-500); font-size: 0.95rem; margin-bottom: 1rem; }
.howto-card .howto-read { margin-top: auto; font-weight: 600; color: var(--green-700); }
.howto-card .howto-read::after { content: " →"; }

/* ---------- Article (how-to / long-form) ---------- */
.article {
  max-width: 760px;
  margin: 0 auto;
}
.article-hero {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 16/7;
  background: var(--green-100);
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article h2 { margin-top: 2.5rem; }
.article h3 { margin-top: 1.75rem; }
.article ul, .article ol { padding-left: 1.2rem; margin-bottom: 1.2rem; }
.article li { margin-bottom: 0.45rem; }
.article blockquote {
  border-left: 4px solid var(--green-500);
  padding: 0.25rem 0 0.25rem 1.2rem;
  margin: 1.5rem 0;
  color: var(--ink-700);
  font-style: italic;
  background: var(--green-50);
  border-radius: 0 10px 10px 0;
}
.article-callout {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  margin: 1.5rem 0;
}
.article-callout h4 { margin: 0 0 0.4rem; font-family: var(--font-sans); font-size: 1rem; color: var(--green-900); }
.article-callout p { margin: 0; color: var(--ink-700); font-size: 0.95rem; }

.article-meta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  color: var(--ink-500); font-size: 0.9rem; margin-bottom: 1rem;
}
.article-meta span::before { content: "•"; margin-right: 0.6rem; color: var(--ink-300); }
.article-meta span:first-child::before { display: none; }

/* ---------- FAQ ---------- */
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.faq details[open] { border-color: var(--green-500); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink-900);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--green-700);
  line-height: 1;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0.75rem 0 0; color: var(--ink-700); }

/* ---------- Page header (smaller hero for sub-pages) ---------- */
.page-header {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--green-50) 0%, var(--cream-50) 100%);
  border-bottom: 1px solid var(--line);
}
.page-header .breadcrumbs {
  font-size: 0.88rem;
  color: var(--ink-500);
  margin-bottom: 0.8rem;
}
.page-header .breadcrumbs a { color: var(--ink-500); }
.page-header .breadcrumbs a:hover { color: var(--green-700); }
.page-header h1 { margin-bottom: 0.5rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: #bfd1c3;
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
  margin-top: 4rem;
}
.site-footer a { color: #e2efe7; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand { color: #fff; font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.5rem; font-weight: 600; }
.footer-tagline { font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.55; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.9rem; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.45rem; font-size: 0.94rem; }
.footer-phone { font-size: 1.1rem; font-weight: 600; color: #fff; font-family: var(--font-display); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #8aa692;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.prose-narrow { max-width: 62ch; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Check list ---------- */
.check-list { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7rem;
  color: var(--ink-700);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.3rem;
  width: 22px; height: 22px;
  background: var(--green-100) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f6b4b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 14px no-repeat;
  border-radius: 50%;
}

/* ---------- Pricing chip ---------- */
.price-card {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-display);
}
.price-card .amt { font-size: 2rem; color: var(--green-900); font-weight: 700; }
.price-card .unit { color: var(--ink-500); font-size: 0.95rem; }

/* ---------- Stat row ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat strong { font-family: var(--font-display); font-size: 2.2rem; color: var(--green-900); display: block; line-height: 1; }
.stat span { font-size: 0.9rem; color: var(--ink-500); display: block; margin-top: 0.4rem; }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 680px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.25rem;
  z-index: 100;
  animation: cookie-slide .28s cubic-bezier(.2,.8,.2,1);
}
@keyframes cookie-slide {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-banner-text {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-700);
  flex: 1;
  min-width: 220px;
  line-height: 1.5;
}
.cookie-banner-text a { color: var(--green-700); }
.cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cookie-banner-actions .btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}
@media (max-width: 560px) {
  .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; padding: 1rem; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; }
}

/* Contact form status banner */
.form-alert {
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  border: 1px solid transparent;
}
.form-alert--warn  { background: #fff7e6; border-color: #f0c060; color: #7a4a00; }
.form-alert--error { background: #fdecea; border-color: #e48a82; color: #8a1c13; }
