/* ============================================
   THE LAZY LAWN — Design tokens & global styles
   ============================================ */

:root {
  /* Greens — deep lawn palette */
  --green-900: #14271a;       /* nearly-black green */
  --green-800: #1f3d2b;       /* primary deep lawn */
  --green-700: #2a5236;
  --green-600: #346340;
  --green-500: #4a7a52;
  --green-100: #e6ecdf;       /* faint sage tint */

  /* Cream / paper */
  --cream-50:  #faf7ee;
  --cream-100: #f4eedb;
  --cream-200: #ebe2c6;
  --cream-300: #d9cba4;

  /* Earth */
  --earth-700: #6e5836;
  --earth-500: #a8895d;
  --earth-300: #c8b594;

  /* Ink */
  --ink-900: #181712;
  --ink-700: #383428;
  --ink-500: #6a6553;
  --ink-300: #b3ad97;

  /* CTA — warm amber pulled from the bulldog + sunset in the mark */
  --cta-600: #c97323;
  --cta-500: #e08a31;
  --cta-400: #f0a04f;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(20,39,26,0.08);
  --shadow-md: 0 8px 24px -8px rgba(20,39,26,0.18);
  --shadow-lg: 0 24px 60px -20px rgba(20,39,26,0.35);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --max-w: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream-50);
  color: var(--ink-900);
  font-family: "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: "Newsreader", "Source Serif 4", Georgia, serif;
  font-weight: 500;
  font-style: normal;
  color: var(--green-900);
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 4.2rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; font-family: "Public Sans", sans-serif; font-weight: 600; letter-spacing: 0.02em; color: var(--green-800); }

p { margin: 0 0 1em; color: var(--ink-700); }
p.lead { font-size: 1.18rem; color: var(--ink-700); max-width: 60ch; }

a { color: var(--green-800); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--cta-600); }

.eyebrow {
  font-family: "Public Sans", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 600;
  margin: 0 0 1em;
  display: inline-block;
}
.eyebrow.on-dark { color: var(--cream-200); }

/* ===== Layout ===== */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
section.tight { padding: 56px 0; }

.divider-rule { height: 1px; background: var(--cream-200); border: none; margin: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--cta-500); color: #1a1209; border-color: var(--cta-500); }
.btn-primary:hover { background: var(--cta-400); border-color: var(--cta-400); color: #1a1209; }

.btn-dark { background: var(--green-800); color: var(--cream-50); border-color: var(--green-800); }
.btn-dark:hover { background: var(--green-700); color: var(--cream-50); border-color: var(--green-700); }

.btn-ghost { background: transparent; color: var(--green-800); border-color: var(--green-800); }
.btn-ghost:hover { background: var(--green-800); color: var(--cream-50); }

.btn-ghost-light { background: transparent; color: var(--cream-50); border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: var(--cream-50); }

.btn-block { width: 100%; justify-content: center; }

.btn .arrow { font-size: 1.1em; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,238,0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--cream-200);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding: 14px 0;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--green-900);
}
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.brand-name {
  font-family: "Newsreader", serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}
.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-top: 2px;
}
nav.primary { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
nav.primary a {
  text-decoration: none;
  color: var(--ink-900);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
nav.primary a:hover { color: var(--green-700); }
nav.primary a.active { color: var(--green-800); border-bottom-color: var(--cta-500); }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green-800); text-decoration: none;
  font-weight: 600; font-size: 0.95rem;
  white-space: nowrap;
}
.header-phone:hover { color: var(--cta-600); }

.menu-toggle {
  display: none;
  background: transparent; border: none; cursor: pointer;
  padding: 8px;
}
.menu-toggle svg { width: 26px; height: 26px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--green-900);
  color: var(--cream-50);
  overflow: hidden;
}
.hero > .wrap { width: 100%; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(20,39,26,0.92) 0%, rgba(31,61,43,0.65) 55%, rgba(20,39,26,0.85) 100%),
    repeating-linear-gradient(135deg, #2f5d3a 0, #2f5d3a 22px, #2a5236 22px, #2a5236 44px);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 100px 0;
  max-width: 760px;
}
.hero h1 { color: var(--cream-50); margin-bottom: 0.4em; }
.hero h1 em { font-style: italic; color: var(--cta-400); font-weight: 400; }
.hero p.lead { color: var(--cream-200); font-size: 1.25rem; max-width: 56ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-trustbar {
  position: relative; z-index: 2;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-trustbar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 22px 0;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--cream-100);
  font-size: 0.93rem;
}
.trust-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cta-500); flex-shrink: 0;
}

/* ===== Image placeholders (descriptive, no real photos) ===== */
.photo {
  position: relative;
  background:
    repeating-linear-gradient(135deg, #cbd5b8 0 14px, #d4dcc1 14px 28px);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  display: flex; align-items: flex-end; justify-content: flex-start;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.photo.tall { aspect-ratio: 3/4; }
.photo.wide { aspect-ratio: 16/9; }
.photo.square { aspect-ratio: 1/1; }
.photo .photo-label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--green-900);
  background: rgba(244,238,219,0.92);
  padding: 6px 10px;
  margin: 12px;
  border-radius: 4px;
  border: 1px solid rgba(20,39,26,0.12);
  max-width: calc(100% - 24px);
}
.photo.dark { background: repeating-linear-gradient(135deg, #2a5236 0 14px, #346340 14px 28px); }
.photo.dark .photo-label { background: rgba(20,39,26,0.85); color: var(--cream-100); border-color: rgba(255,255,255,0.15); }
.photo.rock { background: repeating-linear-gradient(135deg, #b0a587 0 14px, #c0b699 14px 28px); }
.photo.leaves { background: repeating-linear-gradient(135deg, #c5894a 0 14px, #b87b3e 14px 28px); }
.photo .photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block; border: 0;
}

/* ===== Cards ===== */
.card {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--green-500); }
.card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card h3 { margin: 0 0 8px; }
.card p { font-size: 0.96rem; margin: 0 0 16px; color: var(--ink-700); }
.card-link {
  font-size: 0.88rem; font-weight: 600;
  color: var(--green-800);
  letter-spacing: 0.04em;
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
}
.card:hover .card-link { color: var(--cta-600); }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.grid-cities { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }

/* ===== Sections styles ===== */
.section-cream { background: var(--cream-100); }
.section-dark {
  background: var(--green-900);
  color: var(--cream-100);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream-50); }
.section-dark p { color: var(--cream-200); }

.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 40px;
}
.section-header .lead { margin: 0; max-width: 50ch; }
.section-header h2 { margin: 0; }

/* ===== City card ===== */
.city-card {
  display: block;
  padding: 16px 18px;
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--green-900);
  transition: all .15s ease;
}
.city-card:hover { border-color: var(--green-600); background: var(--green-100); color: var(--green-900); }
.city-card .city-name { font-family: "Newsreader", serif; font-size: 1.15rem; line-height: 1.1; }
.city-card .city-meta { font-size: 0.78rem; color: var(--ink-500); margin-top: 4px; letter-spacing: 0.04em; text-transform: uppercase;}

/* ===== Testimonial ===== */
.testimonial {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; flex-direction: column;
  min-height: 240px;
}
.testimonial .stars { color: var(--cta-500); letter-spacing: 2px; font-size: 1rem; }
.testimonial .quote {
  font-family: "Newsreader", serif;
  font-size: 1.18rem;
  line-height: 1.4;
  margin: 16px 0 20px;
  color: var(--green-900);
  flex: 1;
}
.testimonial .who { font-size: 0.88rem; font-weight: 600; color: var(--ink-900); }
.testimonial .where { font-size: 0.82rem; color: var(--ink-500); }

/* ===== FAQ ===== */
.faq-list { border-top: 1px solid var(--cream-200); }
.faq-item { border-bottom: 1px solid var(--cream-200); }
.faq-q {
  width: 100%; background: transparent; border: none; cursor: pointer;
  padding: 22px 8px 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: "Newsreader", serif;
  font-size: 1.2rem;
  text-align: left; color: var(--green-900);
  line-height: 1.2;
}
.faq-q:hover { color: var(--cta-600); }
.faq-q .icon { flex-shrink: 0; width: 22px; height: 22px; transition: transform .2s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 8px 26px 0; max-width: 78ch; }
.faq-a p { color: var(--ink-700); margin: 0 0 0.6em; }
.faq-item.open .faq-a { display: block; }

/* ===== Pricing card ===== */
.pricing-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; flex-direction: column;
}
.pricing-card.featured { background: var(--green-800); color: var(--cream-50); border-color: var(--green-800); }
.pricing-card.featured h3, .pricing-card.featured p { color: var(--cream-50); }
.pricing-card .price {
  font-family: "Newsreader", serif;
  font-size: 2.4rem;
  line-height: 1; margin: 8px 0 6px;
  color: var(--green-900);
}
.pricing-card.featured .price { color: var(--cta-400); }
.pricing-card .price small { font-size: 0.55em; color: var(--ink-500); margin-left: 4px; }
.pricing-card.featured .price small { color: var(--cream-200); }
.pricing-card ul { list-style: none; padding: 0; margin: 18px 0; flex: 1; }
.pricing-card li { padding: 8px 0; border-bottom: 1px dashed var(--cream-200); font-size: 0.94rem; }
.pricing-card.featured li { border-color: rgba(255,255,255,0.15); color: var(--cream-100); }
.pricing-card .placeholder-val { color: var(--ink-500); font-style: italic; }

/* ===== Form ===== */
.form-block {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 36px;
}
.field { margin: 0 0 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-sm);
  background: var(--cream-50);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(42,82,54,0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.checkbox-row { display: flex; gap: 24px; flex-wrap: wrap; }
.checkbox-row label {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: none; letter-spacing: 0; font-weight: 500; font-size: 0.95rem;
  color: var(--ink-900); cursor: pointer;
}
.form-note { font-size: 0.85rem; color: var(--ink-500); margin-top: 8px; }

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--ink-500);
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-200);
  background: var(--cream-50);
}
.breadcrumbs a { color: var(--ink-700); text-decoration: none; }
.breadcrumbs a:hover { color: var(--green-700); }
.breadcrumbs .sep { margin: 0 8px; color: var(--ink-300); }

/* ===== Footer ===== */
.site-footer {
  background: var(--green-900);
  color: var(--cream-200);
  padding: 72px 0 24px;
}
.site-footer h4 { color: var(--cream-50); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer-grid a { color: var(--cream-200); text-decoration: none; font-size: 0.93rem; display: block; padding: 4px 0; }
.footer-grid a:hover { color: var(--cta-400); }
.footer-brand .brand-name { color: var(--cream-50); font-size: 1.5rem; }
.footer-brand p { color: var(--cream-300); font-size: 0.95rem; max-width: 32ch; margin-top: 14px;}
.footer-brand img { width: 64px; height: 64px; border-radius: 50%; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem; color: var(--ink-300);
}

/* ===== Mobile sticky CTA bar ===== */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--green-900);
  border-top: 1px solid var(--green-700);
  padding: 10px 12px;
  z-index: 100;
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}
.mobile-cta a {
  flex: 1; text-align: center;
  padding: 13px 12px;
  border-radius: 999px;
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.mobile-cta a.call { background: var(--green-700); color: var(--cream-50); }
.mobile-cta a.quote { background: var(--cta-500); color: #1a1209; }

/* ===== CTA block ===== */
.cta-block {
  background: var(--green-800);
  color: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
}
.cta-block h2 { color: var(--cream-50); margin: 0 0 8px; }
.cta-block p { color: var(--cream-200); margin: 0; max-width: 50ch; }
.cta-block .actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* ===== Big stat bar ===== */
.stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  border-top: 1px solid var(--cream-200);
  border-bottom: 1px solid var(--cream-200);
}
.stat { padding: 36px 24px; border-right: 1px solid var(--cream-200); }
.stat:last-child { border-right: none; }
.stat .num { font-family: "Newsreader", serif; font-size: 2.6rem; color: var(--green-800); line-height: 1; }
.stat .label { font-size: 0.85rem; color: var(--ink-700); margin-top: 6px; letter-spacing: 0.04em; }

/* ===== Service area map ===== */
.map-frame {
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-100);
  box-shadow: 0 1px 3px rgba(20,39,26,0.06);
}
.map-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== Process / numbered ===== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { }
.process-step .step-num {
  font-family: "Newsreader", serif;
  font-size: 2.6rem;
  color: var(--cta-500);
  line-height: 1;
  margin-bottom: 8px;
}
.process-step h4 { margin: 0 0 6px; color: var(--green-900); }
.process-step p { font-size: 0.93rem; margin: 0; }

/* ===== Two-col body content ===== */
.body-content {
  max-width: 70ch;
}
.body-content h2 { margin-top: 1.6em; }
.body-content h3 { margin-top: 1.4em; }
.body-content p { font-size: 1.05rem; }
.body-content ul { padding-left: 1.4em; }
.body-content ul li { margin: 0.4em 0; color: var(--ink-700); }

.with-aside {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.aside-card {
  position: sticky; top: 100px;
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 28px;
}
.aside-card h4 { margin-top: 0; }
.aside-card .btn { margin-top: 12px; }

/* ===== Logo crest decoration ===== */
.crest-bg {
  position: absolute; opacity: 0.06;
  pointer-events: none;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  section { padding: 64px 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .with-aside { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .process { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--cream-200); }
  .hero-trustbar-inner { grid-template-columns: repeat(2,1fr); }
  .cta-block { grid-template-columns: 1fr; padding: 36px; }
  .cta-block .actions { justify-content: flex-start; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 1180px) {
  nav.primary { gap: 18px; }
  nav.primary a { font-size: 0.88rem; }
  .header-phone { display: none; }
  .header-row { gap: 18px; }
}
@media (max-width: 1000px) {
  nav.primary { display: none; }
  .menu-toggle { display: block; }
  .header-cta .header-phone { display: inline-flex; }
}
@media (max-width: 720px) {
  body { font-size: 16px; padding-bottom: 76px; }
  section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  nav.primary { display: none; }
  .header-cta .btn { display: none; }
  .menu-toggle { display: block; }
  .mobile-cta { display: flex; }
  .form-block { padding: 24px; }
  .hero { min-height: 540px; }
  .hero-content { padding: 72px 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 24px 16px; }
  .stat:nth-child(3) { border-bottom: 1px solid var(--cream-200); }
  .stat:nth-child(odd) { border-right: 1px solid var(--cream-200); }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
}

/* Mobile menu drawer */
.mobile-drawer {
  display: none;
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 86%; max-width: 360px;
  background: var(--cream-50);
  z-index: 200;
  padding: 24px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .25s ease;
}
.mobile-drawer.open { display: block; transform: translateX(0); }
.mobile-drawer .close {
  background: transparent; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--green-900);
  position: absolute; top: 16px; right: 16px;
}
.mobile-drawer nav { display: flex; flex-direction: column; gap: 4px; margin-top: 48px; }
.mobile-drawer nav a {
  padding: 14px 12px;
  font-family: "Newsreader", serif;
  font-size: 1.3rem;
  color: var(--green-900);
  text-decoration: none;
  border-bottom: 1px solid var(--cream-200);
}
.drawer-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }

.scrim {
  display: none;
  position: fixed; inset: 0; background: rgba(20,39,26,0.4);
  z-index: 150;
}
.scrim.open { display: block; }

/* fade-in for route changes */
.route-view { animation: fade .25s ease-out; }
@keyframes fade { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: none;} }
