/* ============================================================================
   Aspen Lawn Care — styles.css
   Design system: "North Idaho Green" — clean, grounded local-service look in the
   brand's own identity (grass green + deep navy + warm paper, Mulish + Inter, the
   black-aspen-tree mark). Same engineering as the sibling pest build (token system,
   :has() orphan-avoidance grids, reduced-motion guards, 1024/768/600/480/375 ladder)
   — its own color. Tokens derived from the captured live Webflow brand CSS.
   Fonts: Mulish (display) + Inter (body) — loaded async per head.
   ============================================================================ */

/* ── Tokens ── */
:root {
  /* color — green family (live carryover #18cb1a / #008100, refined) */
  --grass:      #18a824;   /* primary brand green (ornaments/accents on light) */
  --grass-deep: #0b7712;   /* deep green — links/hovers/CTAs; AA-compliant (darkened from #0c8014 so white-on-green buttons + the eyebrow on paper-dim clear WCAG 4.5:1) */
  --grass-deeper:#095e0f;  /* button hover — one step deeper than the new base for hover feedback */
  --grass-soft: #e7f6e8;   /* pale green wash */
  /* dark — navy family (live carryover #111833 / #1c2752) */
  --navy-950: #0c1130;
  --navy-900: #111833;     /* deepest surfaces (live) */
  --navy-800: #1c2752;     /* primary dark brand (live) */
  --navy-100: #d8dae3;     /* light text on dark (live) */
  --steel:    #9aa3c4;     /* muted secondary text on dark */
  /* neutrals */
  --paper:    #f7f8f3;     /* warm field-paper, faint green tint */
  --paper-dim:#eef1e9;
  --ink:      #18221c;     /* near-black, faint green */
  --ink-soft: #49574c;
  --line:     #d7ddd4;
  --ok:       #0c8014;
  --gold:     #e3a72f;     /* warm accent for small touches (sun/harvest) */

  /* type */
  --font-display: "Mulish", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* scale */
  --space-xs: .5rem; --space-sm: 1rem; --space-md: 1.75rem;
  --space-lg: 3rem;  --space-xl: 5rem;
  --radius: 10px;
  --shadow-card: 0 10px 28px rgba(17, 24, 51, .09);
  --shadow-lift: 0 16px 38px rgba(17, 24, 51, .15);
  --ease-lock: cubic-bezier(.22, .9, .3, 1);
  --header-h: 70px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { display: block; max-width: 100%; height: auto; }
input, button, select, textarea { font: inherit; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1rem;
}

/* ── A11y ── */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--grass-deep); color: #fff; padding: .6rem 1.2rem; z-index: 200;
  font-weight: 700; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--grass); outline-offset: 2px; }

/* ── Layout ── */
.container { width: min(1140px, 92%); margin-inline: auto; }
.container-narrow { width: min(780px, 92%); margin-inline: auto; }
.section { padding: var(--space-xl) 0; }
.section-alt { background: var(--paper-dim); }
.section-green { background: var(--grass-soft); }
.section-dark {
  background:
    radial-gradient(rgba(255,255,255,.045) 1px, transparent 1.5px) 0 0 / 26px 26px,
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: #fff;
}
.section-dark .section-title, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-intro, .section-dark p { color: var(--navy-100); }

/* ── Type ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy-900);
  letter-spacing: -.01em;
  text-wrap: balance;
}
p, li { text-wrap: pretty; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
h1 em { font-style: normal; color: var(--grass); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin-bottom: 1rem; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }
a { color: var(--grass-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #0a5e10; text-decoration-thickness: 2px; } /* darker green: WCAG AA 4.5:1+ on white + hover cue */
strong { color: var(--ink); font-weight: 700; }
.section-dark strong, .cta-strip strong, .hero strong, .site-footer strong, .footer-cta strong { color: #fff; }

/* Eyebrow with aspen-leaf bullet (the signature) */
.section-eyebrow {
  display: inline-flex; align-items: flex-start; gap: .55rem;
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  font-size: .82rem; color: var(--grass-deep); margin-bottom: .75rem;
}
.section-dark .section-eyebrow, .hero .section-eyebrow, .cta-strip .section-eyebrow, .footer-cta .section-eyebrow { color: #fff; }
.section-eyebrow::before {
  content: ""; width: 13px; height: 13px; flex: none; margin-top: 3px;
  background: var(--grass);
  -webkit-mask: radial-gradient(circle at 30% 70%, #000 64%, transparent 65%) 0 0 / 100% 100% no-repeat;
  mask: none;
  border-radius: 50% 0 50% 50%;       /* leaf-drop */
  transform: rotate(8deg);
}
.section-dark .section-eyebrow::before, .hero .section-eyebrow::before, .cta-strip .section-eyebrow::before, .footer-cta .section-eyebrow::before { background: var(--grass); }
.section-title { margin-bottom: .6rem; }
.section-intro { font-size: 1.08rem; max-width: 62ch; margin-bottom: var(--space-md); }
.center { text-align: center; }
.center .section-intro { margin-inline: auto; }
.center .section-eyebrow { justify-content: center; }

/* Leaf divider — hairline with center tick */
.divider-leaf {
  border: 0; height: 1px; margin: var(--space-lg) auto; width: min(420px, 70%);
  background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
  position: relative; overflow: visible;
}
.divider-leaf::after {
  content: ""; position: absolute; left: 50%; top: -5px; width: 10px; height: 10px;
  background: var(--grass); transform: translateX(-50%) rotate(8deg); border-radius: 50% 0 50% 50%;
}

/* ── Buttons (48px tap targets) ── */
.btn-primary, .btn-dark, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .8rem 1.8rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.04rem;
  letter-spacing: .01em; text-decoration: none;
  border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease-lock), background .18s, color .18s, border-color .18s, box-shadow .18s;
}
.btn-primary { background: var(--grass-deep); color: #fff; box-shadow: 0 6px 16px rgba(24,168,36,.28); }
.btn-primary:hover { background: var(--grass-deeper); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(12,128,20,.32); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-900); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy-800); border-color: var(--navy-800); }
.btn-outline:hover { background: var(--navy-800); color: #fff; transform: translateY(-2px); }
.section-dark .btn-outline, .hero .btn-outline { color: #fff; border-color: rgba(255,255,255,.7); }
.section-dark .btn-outline:hover, .hero .btn-outline:hover { background: #fff; color: var(--navy-900); border-color:#fff; }
.cta-row { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: var(--space-md); }
.center .cta-row { justify-content: center; }

/* ── Header ── */
.utility-bar { background: var(--navy-900); color: var(--steel); font-size: .9rem; }
.utility-bar-inner { display: flex; justify-content: flex-end; gap: 1.4rem; padding: .4rem 0; flex-wrap: wrap; }
.utility-link { color: var(--navy-100); text-decoration: none; }
.utility-link:hover { color: #fff; }
.utility-phone { font-weight: 700; color: #fff; }
.site-header { position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 14px rgba(17,24,51,.14); }
.main-nav { background: #fff; border-bottom: 1px solid var(--line); }
.main-nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1rem; }
.nav-logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav-logo-chip { display: inline-flex; align-items: center; justify-content: center; flex: none; }
.nav-logo-chip img { height: 56px; width: auto; object-fit: contain; }  /* enlarged per Tim's review request (was 44px); header-h 70px still fits */
.nav-logo-text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  letter-spacing: -.01em; color: var(--navy-900); white-space: nowrap;
}
.nav-logo-text em { font-style: normal; color: var(--grass); }
.nav-links { display: flex; align-items: center; gap: 1.4rem; list-style: none; }
.nav-links a {
  color: var(--navy-800); text-decoration: none; font-weight: 600; font-size: .98rem;
  padding: .4rem 0; border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--grass-deep); }
.nav-links a[aria-current="page"] { color: var(--grass-deep); border-bottom-color: var(--grass); }
.nav-portal { color: var(--grass-deep) !important; font-weight: 700 !important; }
.nav-cta { white-space: nowrap; }
.nav-overlay { display: flex; align-items: center; gap: 1.5rem; }
.nav-toggle { display: none; background: none; border: 0; width: 48px; height: 48px; cursor: pointer; position: relative; z-index: 120; }
.nav-toggle span {
  display: block; width: 26px; height: 2.5px; background: var(--navy-900); margin: 5.5px auto;
  border-radius: 2px; transition: transform .25s var(--ease-lock), opacity .2s, background .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Nav dropdown menus (Services / Our Area) ── */
.nav-caret {
  background: none; border: 0; color: var(--navy-800); cursor: pointer; line-height: 0;
  display: inline-flex; align-items: center; justify-content: center; padding: .3rem;
}
.nav-caret:hover { color: var(--grass-deep); }
.nav-caret svg { transition: transform .2s var(--ease-lock); }
.nav-menu-panel { list-style: none; }
@media (min-width: 769px) {
  .nav-has-menu { position: relative; display: inline-flex; align-items: center; gap: .1rem; }
  .nav-has-menu::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: .55rem; }
  .nav-menu-panel {
    position: absolute; top: calc(100% + .55rem); left: 50%; transform: translate(-50%, 8px);
    min-width: 220px; background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow-lift); padding: .5rem; z-index: 130;
    display: grid; gap: 1px; opacity: 0; visibility: hidden;
    transition: opacity .18s var(--ease-lock), transform .18s var(--ease-lock), visibility .18s;
  }
  .nav-has-menu:hover > .nav-menu-panel,
  .nav-has-menu:focus-within > .nav-menu-panel,
  .nav-has-menu.is-open > .nav-menu-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
  .nav-has-menu:hover > .nav-caret svg,
  .nav-has-menu.is-open > .nav-caret svg { transform: rotate(180deg); }
  .nav-menu-panel a {
    display: block; padding: .4rem .8rem; border-radius: 6px; border-bottom: 0;
    font-size: .9rem; line-height: 1.35; color: var(--navy-800); white-space: nowrap;
  }
  .nav-menu-panel a:hover { background: var(--grass-soft); color: var(--grass-deep); }
  .nav-menu-all { margin-top: .3rem; padding-top: .3rem; border-top: 1px solid var(--line); }
  .nav-menu-all a { color: var(--grass-deep); font-family: var(--font-display); font-weight: 700; letter-spacing: normal; font-size: .85rem; }
}

/* ── Hero ── */
.hero { position: relative; isolation: isolate; min-height: 540px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: brightness(1.04); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(12,17,48,.78) 0%, rgba(17,24,51,.62) 46%, rgba(12,128,20,.30) 100%);
}
.hero::after {  /* soft organic green glow ornament (replaces the pest reticle) */
  content: ""; position: absolute; right: -140px; top: 42%; transform: translateY(-50%);
  width: 520px; height: 520px; border-radius: 50%; z-index: -1; pointer-events: none;
  background: radial-gradient(circle, rgba(24,168,36,.32), rgba(24,168,36,.12) 45%, transparent 68%);
}
.hero-overlay { padding: var(--space-xl) 0; color: #fff; }
.hero h1 { color: #fff; max-width: 20ch; text-shadow: 0 2px 14px rgba(12,17,48,.35); }
.hero-sub { color: #eef1ec; font-size: 1.15rem; max-width: 56ch; margin-top: 1rem; }

/* Page-hero (interior pages — shorter) */
.page-hero { min-height: 380px; }
.breadcrumbs { font-size: .88rem; margin-top: 1.1rem; color: #cfe6d1; }
.breadcrumbs a { color: #eef1ec; text-decoration: none; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.breadcrumbs span[aria-current] { color: #fff; }

/* ── Cards / grids ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.4rem; }
@media (min-width: 900px) { .card-grid:has(> :nth-child(4):last-child) { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 760px) { .card-grid:has(> :nth-child(3):last-child) { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-card); position: relative; overflow: hidden;
  transition: transform .2s var(--ease-lock), box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .98rem; }
.card .card-link { font-family: var(--font-display); font-weight: 700; letter-spacing: .01em; text-decoration: none; color: var(--grass-deep); }
.card .card-link::after { content: " →"; }
.card img { border-radius: 8px; margin-bottom: 1rem; }
/* White cards keep dark text even inside a .section-dark — the section's light-text rules must NOT
   bleed into the white card (else navy-100 on #fff = ~1.4:1 WCAG fail). Specificity beats .section-dark p/h3/strong. */
.section-dark .card h2, .section-dark .card h3, .section-dark .card h4 { color: var(--navy-900); }
.section-dark .card p, .section-dark .card li, .section-dark .card { color: var(--ink-soft); }
.section-dark .card strong { color: var(--ink); }

/* Spec-plate variant (services): green top rule + index number */
.spec-card { border-top: 3px solid var(--grass); }
.spec-card::before {
  content: attr(data-index);
  position: absolute; top: .9rem; right: 1.1rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  color: var(--grass); letter-spacing: .08em;
}
.spec-card::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grass); transform: scaleY(0); transform-origin: top;
  transition: transform .25s var(--ease-lock);
}
.spec-card:hover::after { transform: scaleY(1); }
.spec-card h3 { padding-right: 2.4rem; }
.spec-card > img:first-child { margin-top: .85rem; }

/* Stat plates */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: var(--space-md); }
@media (min-width: 560px) and (max-width: 840px) {
  .stat-row:has(> :nth-child(4):last-child) { grid-template-columns: repeat(2, 1fr); }
}
.stat-plate { border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 1.1rem 1.2rem; background: rgba(255,255,255,.04); }
.stat-plate .stat-label { font-family: var(--font-display); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; color: var(--steel); display: block; }
.stat-plate .stat-value { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff; }

/* Two-column feature */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--space-lg); align-items: start; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lift); }
.checklist { list-style: none; margin: 1rem 0; }
.checklist li { padding-left: 1.9rem; position: relative; margin-bottom: .65rem; color: var(--ink-soft); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .36em; width: 14px; height: 14px;
  background: var(--grass); border-radius: 50% 0 50% 50%; transform: rotate(8deg);
}
.section-dark .checklist li { color: var(--navy-100); }
.section-dark .checklist li::before { background: var(--grass); }

/* ── FAQ (native details) ── */
.faq-list { display: grid; gap: .8rem; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0; overflow: hidden; box-shadow: var(--shadow-card); }
.faq-list summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.05rem 1.3rem; font-weight: 700; color: var(--ink); min-height: 48px; font-family: var(--font-display); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-family: var(--font-display); font-size: 1.5rem; color: var(--grass); flex: none; transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details > div { padding: 0 1.3rem 1.2rem; }

/* ── Forms ── */
.form-shell { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--grass); border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--shadow-lift); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.form-legend { font-family: var(--font-display); font-weight: 700; font-size: .98rem; color: var(--ink); margin-bottom: .2rem; }
.form-field input[type="text"], .form-field input[type="email"], .form-field input[type="tel"], .form-field textarea {
  border: 1.5px solid var(--line); border-radius: 8px; padding: .7rem .85rem; background: var(--paper); min-height: 48px; width: 100%;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--grass); outline: 2px solid rgba(24,168,36,.30); outline-offset: 1px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .55rem; margin-top: .4rem; }
.checkbox-grid label { display: flex; align-items: center; gap: .6rem; font-size: .95rem; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 8px; padding: .6rem .8rem; cursor: pointer; min-height: 48px; transition: border-color .15s, background .15s; }
.checkbox-grid label:hover { border-color: var(--grass); background: var(--grass-soft); }
.checkbox-grid input[type="checkbox"] { width: 19px; height: 19px; accent-color: var(--grass); flex: none; }
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: .9rem; }
.hp-field { position: absolute !important; left: -9999px !important; height: 0; overflow: hidden; }
.form-status { margin-top: 1rem; font-weight: 700; }
.form-status.ok { color: var(--ok); }
.form-status.err { color: #c2381a; }
.form-status[hidden] { display: none; }
.field-err { border-color: #c2381a !important; outline: 2px solid rgba(194,56,26,.30); }

/* ── CTA strip / footer CTA ── */
.cta-strip, .footer-cta {
  position: relative; isolation: isolate; overflow: hidden;
  background: linear-gradient(120deg, var(--navy-900), var(--navy-800));
  color: #fff; text-align: center; padding: var(--space-xl) 0;
}
.cta-strip::before, .footer-cta::before {
  content: ""; position: absolute; left: -140px; bottom: -180px; width: 460px; height: 460px; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, rgba(24,168,36,.28), rgba(24,168,36,.10) 48%, transparent 70%);
}
.cta-strip .section-title, .footer-cta .section-title { color: #fff; }
.cta-strip .section-intro, .footer-cta .section-intro { color: var(--navy-100); margin-inline: auto; }
.cta-strip .btn-primary, .footer-cta .btn-primary { margin-top: .8rem; }

/* ── Footer ── */
.site-footer { background: var(--navy-950); color: var(--navy-100); padding: var(--space-lg) 0 5.5rem; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: #fff; margin-bottom: .4rem; }
.footer-brand em { font-style: normal; color: var(--grass); }
.footer-h { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; color: var(--steel); margin-bottom: .7rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .45rem; }
.footer-links a, .site-footer a { color: var(--navy-100); text-decoration: none; }
.footer-links a:hover, .site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-nap p { margin-bottom: .5rem; color: var(--navy-100); }
.footer-address a { color: #fff; font-weight: 600; }
.footer-where { color: var(--steel); }
.footer-social a { display: inline-flex; color: var(--navy-100); }
.footer-social a:hover { color: var(--grass); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .88rem; color: var(--steel); }
.footer-bottom p { color: var(--steel); }  /* the global `p{color:ink-soft}` rule would otherwise win over the inherited footer color and fail WCAG contrast on the dark footer (steel = 7.3:1) */

/* ── Sticky mobile CTA ── */
.sticky-mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  grid-template-columns: 1fr 1fr; gap: 1px; background: var(--navy-950);
  padding-bottom: env(safe-area-inset-bottom); box-shadow: 0 -4px 18px rgba(17,24,51,.30);
}
.sticky-cta-btn { display: flex; align-items: center; justify-content: center; gap: .45rem; min-height: 52px; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: .02em; text-decoration: none; color: #fff; }
.sticky-cta-call { background: var(--navy-800); }
.sticky-cta-book { background: var(--grass-deep); }

/* ── Motion ── */
.fade-up, .reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s var(--ease-lock), transform .55s var(--ease-lock); }
.fade-up.is-visible, .reveal.is-visible { opacity: 1; transform: none; }
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero-overlay > * { animation: heroIn .7s var(--ease-lock) backwards; }
.hero-overlay > *:nth-child(1) { animation-delay: .05s; }
.hero-overlay > *:nth-child(2) { animation-delay: .16s; }
.hero-overlay > *:nth-child(3) { animation-delay: .27s; }
.hero-overlay > *:nth-child(4) { animation-delay: .38s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up, .reveal { opacity: 1; transform: none; transition: none; }
  .hero-overlay > * { animation: none; }
  body.is-scrolled .nav-toggle { animation: none; }
  .card, .btn-primary, .btn-dark, .btn-outline { transition: none; }
}

/* ── Utility ── */
.badge-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; align-items: center; }
.badge { display: inline-flex; align-items: center; gap: .45rem; font-size: .85rem; font-weight: 600; color: var(--navy-800); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .35rem .9rem; }
.badge::before { content: ""; width: 8px; height: 8px; background: var(--grass); flex: none; border-radius: 50% 0 50% 50%; transform: rotate(8deg); }
.section-dark .badge { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); }
.note-illustrative { font-size: .82rem; color: var(--ink-soft); font-style: italic; }
.area-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: .6rem; list-style: none; }
.area-links a { display: flex; align-items: center; min-height: 48px; height: 100%; padding: .65rem 1rem; background: #fff; border: 1px solid var(--line); border-radius: 8px; text-decoration: none; font-weight: 600; color: var(--navy-800); transition: border-color .15s, transform .18s var(--ease-lock), background .15s; }
.area-links a:hover { border-color: var(--grass); background: var(--grass-soft); transform: translateY(-2px); }
.nearby-row a { white-space: nowrap; color: var(--navy-100); }
@media (min-width: 560px) and (max-width: 1024px) { .area-links { grid-template-columns: repeat(2, 1fr); } }
.prose { overflow-wrap: break-word; }  /* wrap long inline URLs (e.g. the privacy-policy Adobe link) so they don't overflow on narrow screens */
.prose h2 { margin-top: var(--space-md); margin-bottom: .6rem; }
.prose h3 { margin-top: 1.4rem; margin-bottom: .4rem; }
.prose ul, .prose ol { margin: 0 0 1rem 1.3rem; color: var(--ink-soft); }
.prose li { margin-bottom: .4rem; }
.post-meta { font-size: .88rem; color: var(--ink-soft); margin-bottom: var(--space-md); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.gallery-grid img { border-radius: var(--radius); box-shadow: var(--shadow-card); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ── Responsive ladder ── */
@media (max-width: 1024px) {
  .nav-links { gap: 1rem; }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero::after { width: 400px; height: 400px; right: -160px; }
}
@media (max-width: 768px) {
  .utility-bar-inner { justify-content: center; }
  .nav-toggle { display: block; }
  .nav-logo-text { display: none; }  /* phones: show the enlarged logo mark alone (it already spells "Aspen Lawn Care"); the redundant wordmark was colliding with the hamburger at narrow widths */
  .site-header { position: static; }
  body.is-scrolled .nav-toggle {
    position: fixed; top: .6rem; right: .75rem; z-index: 130;
    background: #fff; border-radius: 10px; box-shadow: 0 6px 18px rgba(17,24,51,.4); padding: 4px;
    animation: floatBtnIn .2s var(--ease-lock) both;
  }
  @keyframes floatBtnIn { from { opacity: 0; transform: translateY(-7px); } to { opacity: 1; transform: none; } }
  .nav-overlay {
    position: fixed; inset: 0; background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
    flex-direction: column; justify-content: flex-start; align-items: center; gap: 1.6rem;
    padding: 5.5rem 1.5rem 2.5rem; overflow-y: auto; -webkit-overflow-scrolling: touch;
    opacity: 0; pointer-events: none; transition: opacity .25s var(--ease-lock); z-index: 110;
  }
  .nav-overlay.is-open { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
  .nav-links { flex-direction: column; align-items: center; gap: 1.2rem; text-align: center; width: 100%; }
  .nav-links a { font-size: 1.3rem; color: #fff; }
  .nav-links a:hover, .nav-portal { color: #fff !important; }
  .nav-has-menu { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: center; gap: .4rem; width: 100%; }
  .nav-caret { color: #fff; }
  .nav-caret svg { width: 16px; height: 16px; }
  .nav-menu-panel {
    width: 100%; max-height: 0; overflow: hidden; opacity: 0;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    transition: max-height .3s var(--ease-lock), opacity .25s, margin-top .3s;
  }
  .nav-has-menu.is-open > .nav-menu-panel { max-height: 900px; opacity: 1; margin-top: 1rem; }
  .nav-has-menu.is-open > .nav-caret svg { transform: rotate(180deg); }
  .nav-menu-panel a { font-size: 1.08rem; color: var(--navy-100); border-bottom: 0; }
  .nav-menu-all a { color: var(--grass); font-family: var(--font-display); letter-spacing: .03em; font-size: .95rem; }
  .sticky-mobile-cta { display: grid; }
  .site-footer { padding-bottom: 7rem; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: var(--space-lg) 0; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .hero { min-height: 480px; }
  .hero::after { display: none; }
  .cta-row .btn-primary, .cta-row .btn-outline, .cta-row .btn-dark { width: 100%; }
}
@media (max-width: 480px) {
  h1 { font-size: clamp(2rem, 9vw, 2.5rem); }
  .checkbox-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 375px) {
  .container, .container-narrow { width: 94%; }
  .nav-logo-text { font-size: 1.2rem; }
  .stat-row { grid-template-columns: 1fr; }
}
@media (min-width: 1600px) { .container { width: min(1240px, 88%); } }
