/* ============================================================
   PLUSH LAWNS - FOREST design system (Concept B)
   Deep forest green + warm gold accent, on a warm cream page.
   One stylesheet: tokens, base, components, and shared page chrome
   (utility bar, nav, drawer, page-hero, footer, mobile bar).
   Inner pages keep their inline section styles; they reference the
   legacy --evergreen / --grass token names, which are ALIASED below
   to forest/gold values so every page adopts this palette.
   Fonts are loaded via <link> in each page <head>.
   ============================================================ */

:root {
  /* ---- Forest greens ---- */
  --forest:      #1d4a31;   /* primary deep forest (headings on light, dark panels) */
  --forest-700:  #18402a;   /* panel surface on dark sections */
  --forest-800:  #123221;   /* deeper: trust strip, snow */
  --forest-900:  #0d2417;   /* deepest: hero, final CTA */
  --leaf:        #4ca72c;   /* bright living green accent */
  --leaf-deep:   #3f7e26;   /* white-text-safe green for selected states (>=4.5:1 with #fff) */

  /* ---- Gold accent ---- */
  --gold:        #c9a44c;   /* primary gold accent / action */
  --gold-bright: #e2c069;   /* lighter gold for text on dark */
  --gold-deep:   #7a5d1e;   /* dark gold; >=4.5:1 on cream, sand AND gold-soft (was #8a6a22, which dipped to ~3.98:1 on sand) */
  --gold-soft:   #f4ecd6;   /* gold tint surface (icon chips) */

  /* ---- Neutrals ---- */
  --cream:       #f7f2e6;   /* warm off-white page bg */
  --cream-2:     #efe7d6;   /* slightly deeper */
  --sand:        #ece4d2;   /* warm sand panel bg */
  --paper:       #fffef9;   /* card white */

  --ink:         #1c241f;   /* charcoal text */
  --ink-soft:    #4f5a52;   /* secondary text (>=4.5:1 on cream) */
  --ink-faint:   #646e66;   /* tertiary / meta (>=4.5:1 on cream) */

  --line:        #e4ddcb;   /* hairline on cream */
  --line-strong: #d3cab6;   /* stronger hairline */
  --line-dark:   rgba(244,236,214,.16); /* hairline on dark sections */

  --error:       #c0392b;   /* form validation */

  /* ---- Legacy aliases (inner pages still use these names) ---- */
  --evergreen:     var(--forest);
  --evergreen-600: #2a6b42;
  --evergreen-800: var(--forest-800);
  --evergreen-900: var(--forest-900);
  --moss:          var(--gold-deep);
  --grass:         var(--leaf);
  --grass-bright:  var(--gold-bright);
  --grass-soft:    var(--gold-soft);
  --grass-deep:    var(--leaf-deep);
  --ice:           #e6eef0;   /* pale cool tint (winter icon chips) */
  --ice-deep:      #3b5d66;

  /* ---- Type ---- */
  --display: 'Bricolage Grotesque', Georgia, serif;
  --sans:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* ---- Radii ---- */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* ---- Shadow (soft, grounded) ---- */
  --shadow-sm: 0 1px 2px rgba(13,36,23,.06), 0 2px 8px rgba(13,36,23,.05);
  --shadow-md: 0 4px 14px rgba(13,36,23,.10), 0 12px 30px rgba(13,36,23,.07);
  --shadow-lg: 0 10px 30px rgba(13,36,23,.14), 0 30px 60px rgba(13,36,23,.10);

  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Visible keyboard focus. --gold-deep clears 3:1 (WCAG 1.4.11) on cream; the
   on-dark surfaces use a gold ring that clears 3:1 on deep forest too. */
:focus-visible { outline: 3px solid var(--gold-deep); outline-offset: 2px; border-radius: 3px; }
:focus:not(:focus-visible) { outline: none; }
.hero :focus-visible, .pricing :focus-visible,
.cta-band :focus-visible, .trust-strip :focus-visible, .standard .ours :focus-visible,
.page-hero :focus-visible, .footer :focus-visible, .utility :focus-visible { outline-color: var(--gold-bright); }

/* Skip to content (keyboard) */
.skip-link {
  position: absolute; left: 8px; top: -56px; z-index: 200;
  background: var(--forest); color: var(--cream);
  padding: 0.7rem 1.1rem; border-radius: var(--r-md);
  font-weight: 700; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 8px; }

/* ---------- Layout ---------- */
.wrap { width: min(1200px, 92vw); margin-inline: auto; }
.wrap-narrow { width: min(880px, 92vw); margin-inline: auto; }
section { position: relative; }
.section-pad { padding: clamp(64px, 9vw, 124px) 0; }
.section-pad-sm { padding: clamp(48px, 6vw, 90px) 0; }

/* ---------- Type ---------- */
.display { font-family: var(--display); font-weight: 700; line-height: 1.04; letter-spacing: -0.025em; text-wrap: balance; }
h1.display { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2.display { font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -0.02em; }
h3.display { font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -0.015em; }

.eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-bright); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--ink-soft); line-height: 1.6; text-wrap: pretty; }
.muted { color: var(--ink-soft); }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sans); font-weight: 700; font-size: 1rem; border: none;
  border-radius: var(--r-pill); padding: 0.95em 1.6em;
  display: inline-flex; align-items: center; gap: 0.6em; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  line-height: 1; white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-lg { font-size: 1.08rem; padding: 1.1em 1.9em; }

/* Gold is the primary action across the forest site. */
.btn-gold, .btn-primary { background: var(--gold); color: var(--forest-900); box-shadow: 0 6px 18px rgba(201,164,76,.34); }
.btn-gold:hover, .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201,164,76,.5); }

.btn-dark { background: var(--forest); color: var(--cream); }
.btn-dark:hover { background: var(--forest-700); transform: translateY(-2px); }

/* Ghost on light surfaces (forest outline). */
.btn-ghost { background: transparent; color: var(--forest); box-shadow: inset 0 0 0 1.5px var(--line-strong); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--forest); transform: translateY(-2px); }

/* Ghost on dark surfaces (gold / cream outline). */
.btn-ghost-gold { background: transparent; color: var(--gold-bright); box-shadow: inset 0 0 0 1.5px rgba(226,192,105,.5); }
.btn-ghost-gold:hover { box-shadow: inset 0 0 0 1.5px var(--gold-bright); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(247,242,230,.35); }
.btn-ghost-light:hover { box-shadow: inset 0 0 0 1.5px var(--cream); transform: translateY(-2px); }

/* ---------- Cards / chips ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.chip {
  display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.86rem; font-weight: 600;
  color: var(--ink-soft); background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 0.5em 0.95em;
}
.chip svg { width: 1.05em; height: 1.05em; color: var(--leaf); }

/* ---------- Reveal on scroll (visible by default; gated on .js) ---------- */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
/* Safety net: if the reveal never intersects (print, no IntersectionObserver),
   show the content rather than shipping it stuck at opacity:0. */
@media print { .js .reveal { opacity: 1 !important; transform: none !important; } }

/* ---------- Image slot ---------- */
image-slot { --slot-bg: var(--cream-2); background: var(--cream-2); }

/* ---------- Brand mark ---------- */
.mark { display: inline-flex; align-items: center; gap: 0.6em; }
.mark .mark-glyph { width: 38px; height: 38px; flex: none; }
.mark .mark-word { font-family: var(--display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; line-height: 1; color: var(--forest); }
.mark .mark-word .mark-ca { color: var(--gold-deep); }
.mark.on-dark .mark-word { color: var(--cream); }
.mark.on-dark .mark-word .mark-ca { color: var(--gold-bright); }

/* ============================================================
   SHARED PAGE CHROME
   ============================================================ */

/* ---- Top utility bar ---- */
.utility { background: var(--forest-900); color: rgba(247,242,230,.82); font-size: 0.82rem; }
.utility .wrap { display: flex; align-items: center; justify-content: space-between; padding: 0.55em 0; gap: 1rem; }
.utility a { display: inline-flex; align-items: center; gap: 0.45em; padding: 0.35rem 0; transition: color .2s; }
.utility a:hover { color: var(--gold-bright); }
.utility svg { width: 1em; height: 1em; }
.utility .util-left { display: flex; gap: 1.5rem; }
.utility .util-right { display: flex; gap: 1.5rem; align-items: center; }
.utility .seasonal { color: var(--gold-bright); display: inline-flex; align-items: center; gap: .45em; }
.utility .seasonal svg { color: var(--gold); }
@media (max-width: 760px) { .utility .util-left .u-email { display: none; } .utility { font-size: .76rem; } }

/* ---- Nav ---- */
.nav { position: sticky; top: 0; z-index: 50; background: var(--cream); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0; gap: 1rem; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-weight: 600; font-size: 0.98rem; color: var(--ink); position: relative; padding: 0.2em 0; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--gold); transition: width .25s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 0.7rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--forest); }
.nav-toggle svg { width: 28px; height: 28px; }
@media (max-width: 1000px) { .nav-links, .nav-cta .btn-ghost { display: none; } .nav-toggle { display: inline-flex; } }
@media (max-width: 560px) { .nav-cta .btn-gold, .nav-cta .btn-primary { display: none; } }

/* ---- Mobile drawer ---- */
.drawer { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.drawer .scrim { position: absolute; inset: 0; background: rgba(13,36,23,.55); opacity: 0; transition: opacity .3s; }
.drawer .panel { position: absolute; top: 0; right: 0; height: 100%; width: min(330px, 84vw); background: var(--cream); box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .35s var(--ease); padding: 1.4rem; display: flex; flex-direction: column; gap: .4rem; overflow-y: auto; }
.drawer.open { visibility: visible; }
.drawer.open .scrim { opacity: 1; }
.drawer.open .panel { transform: none; }
.drawer .panel .d-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.drawer .panel a.d-link { font-family: var(--display); font-weight: 600; font-size: 1.4rem; padding: .55rem 0; border-bottom: 1px solid var(--line); color: var(--forest); }
.drawer .panel .btn { margin-top: .6rem; justify-content: center; }
.drawer .panel .d-contact { margin-top: auto; padding-top: 1.2rem; font-size: .9rem; color: var(--ink-soft); }
.icon-btn { background: none; border: none; cursor: pointer; color: var(--forest); padding: 6px; }
.icon-btn svg { width: 26px; height: 26px; }

/* ---- Page hero banner (inner pages) ---- */
/* Deep forest hero so the brand identity carries past the homepage. Mirrors
   the homepage hero's gradient language (gold + leaf radials over forest-900). */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(201,164,76,.16), transparent 55%),
    radial-gradient(90% 120% at 0% 110%, rgba(76,167,44,.10), transparent 50%),
    var(--forest-900);
  color: var(--cream);
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(54px,8vw,104px) 0 clamp(48px,6vw,76px);
}
.page-hero::after { content:""; position:absolute; left:0; right:0; bottom:0; height:1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity:.5; }
.page-hero .wrap { position: relative; }
.page-hero .crumb { font-size: .82rem; color: rgba(247,242,230,.62); font-weight: 600; letter-spacing: .04em; margin-bottom: 1rem; display: flex; gap: .5em; align-items: center; }
.page-hero .crumb a { color: var(--gold-bright); }
.page-hero .crumb a:hover { color: #fff; }
.page-hero h1 { margin: 0; color: #fff; }
.page-hero .lead { margin: 1.3rem 0 0; max-width: 52ch; color: rgba(247,242,230,.82); }
.page-hero .hero-cta { display: flex; gap: .85rem; margin-top: 2rem; flex-wrap: wrap; }
/* Ghost buttons inside the dark hero read on-dark (cream outline, not forest). */
.page-hero .btn-ghost { color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(247,242,230,.35); }
.page-hero .btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--cream); }

/* ---- Footer ---- */
.footer { background: var(--forest-900); color: rgba(247,242,230,.7); padding: clamp(48px,6vw,80px) 0 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.4rem; }
.footer .foot-about { font-size: .94rem; line-height: 1.6; margin: 1.2rem 0 1.4rem; max-width: 32ch; }
.footer .foot-social { display: flex; gap: .7rem; }
.footer .foot-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(247,242,230,.18); display: grid; place-items: center; transition: all .25s var(--ease); }
.footer .foot-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--forest-900); transform: translateY(-2px); }
.footer .foot-social svg { width: 18px; height: 18px; }
.footer h4 { font-family: var(--sans); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(247,242,230,.55); margin: 0 0 1.1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .15rem; }
.footer ul a { display: inline-block; font-size: .95rem; padding: .35rem 0; transition: color .2s; }
.footer ul a:hover { color: var(--gold-bright); }
.footer .foot-contact a, .footer .foot-contact .fc-item { display: flex; align-items: center; gap: .6rem; font-size: .95rem; padding: .3rem 0; margin-bottom: .4rem; }
.footer .foot-contact svg { width: 1.1em; height: 1.1em; color: var(--gold-bright); flex: none; }
.foot-bottom { border-top: 1px solid rgba(247,242,230,.12); margin-top: 3rem; padding-top: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: rgba(247,242,230,.62); }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer .foot-about { grid-column: 1 / -1; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---- Sticky mobile action bar ---- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; background: var(--paper); border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(13,36,23,.12); padding: .55rem .6rem calc(.55rem + env(safe-area-inset-bottom)); gap: .5rem; transform: translateY(calc(100% + 30px)); visibility: hidden; transition: transform .4s var(--ease), visibility 0s linear .4s; }
.mobile-bar.is-visible { transform: none; visibility: visible; transition: transform .4s var(--ease), visibility 0s; }
.mobile-bar a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem; padding: .55rem 0; border-radius: var(--r-md); font-size: .74rem; font-weight: 700; color: var(--forest); }
.mobile-bar a svg { width: 22px; height: 22px; }
.mobile-bar a.primary { background: var(--gold); color: var(--forest-900); }
.mobile-bar a.call { background: var(--forest); color: var(--cream); }
.mobile-bar .mb-x { flex: 0 0 auto; align-self: center; width: 30px; height: 44px; display: grid; place-items: center; background: none; border: none; padding: 0; color: var(--ink-faint); border-radius: var(--r-md); cursor: pointer; }
.mobile-bar .mb-x:hover { color: var(--forest); }
.mobile-bar .mb-x svg { width: 18px; height: 18px; }
/* Re-open tab shown after the bar is dismissed for the session. */
.mb-reopen { position: fixed; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 60; display: none; align-items: center; gap: .4em; padding: .55rem .9rem; border-radius: var(--r-pill); background: var(--forest); color: var(--cream); border: 1px solid var(--gold); font-weight: 700; font-size: .8rem; box-shadow: var(--shadow-md); transform: translateY(calc(100% + 30px)); visibility: hidden; transition: transform .4s var(--ease), visibility 0s linear .4s; cursor: pointer; }
.mb-reopen.is-visible { transform: none; visibility: visible; transition: transform .4s var(--ease), visibility 0s; }
.mb-reopen svg { width: 15px; height: 15px; color: var(--gold-bright); transform: rotate(-90deg); }
@media (max-width: 1000px) { .mobile-bar { display: flex; } .mb-reopen { display: inline-flex; } body { padding-bottom: 76px; } }

/* ---- Generic section header (shared) ---- */
.sec-head { max-width: 660px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { margin: 0.7rem 0 0; color: var(--forest); }
.sec-head .lead { margin-top: 1rem; }
.sec-head.center .eyebrow { justify-content: center; }
