/* ==========================================================================
   Greenline Yardworks — the seasonal bands
   Soil #5b4632 · Leaf #8ab24a · Lawn #3e7d3a · Amber #c98a3b · Frost #7e93a8
   Hepta Slab (display) + Work Sans (body) · zero JS
   The page itself runs through a yard year: each season is a tinted band.
   ========================================================================== */

:root {
  --soil: #5b4632;
  --soil-deep: #41311f;
  --leaf: #8ab24a;
  --lawn: #3e7d3a;
  --lawn-deep: #2c5c29;
  --amber: #c98a3b;
  --paper: #faf8f2;
  --ink: #33392c;
  --display: "Hepta Slab", Georgia, serif;
  --body: "Work Sans", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: auto; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

[id] { scroll-margin-top: 1rem; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0425rem;
  line-height: 1.65;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--lawn-deep);
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
}

.skip-link:focus { top: 0.5rem; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 0.55em;
  color: var(--lawn-deep);
}

h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: var(--lawn-deep); text-decoration-color: var(--leaf); }

/* ---------- Header ---------- */

.site-header {
  max-width: 64rem;
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--soil-deep);
}

.brand-text em { font-style: normal; color: var(--lawn); }

.header-quote {
  background: var(--lawn);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
}

.header-quote:hover { background: var(--soil); }

.site-nav { width: 100%; }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.6rem 0 0.9rem;
  display: flex;
  gap: 1.6rem;
  border-bottom: 3px solid var(--leaf);
}

.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--lawn-deep); text-decoration: underline; text-underline-offset: 6px; }

@media (max-width: 480px) {
  .brand-text { font-size: 1.15rem; }
  .header-quote { font-size: 0.88rem; padding: 0.5rem 1rem; }
  .site-nav ul { gap: 0; justify-content: space-between; }
  .site-nav a { font-size: 0.9rem; }
}

/* ---------- Hero ---------- */

.hero {
  max-width: 64rem;
  margin: 0 auto;
  padding: clamp(2.75rem, 7vw, 5rem) 1.25rem 2.25rem;
}

.kicker {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--amber);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  max-width: 18ch;
}

.hero-lede { max-width: 54ch; font-size: 1.1rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.5rem; }

.btn {
  display: inline-block;
  background: var(--lawn);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  border: 2px solid var(--lawn);
}

.btn:hover, .btn:focus-visible { background: var(--lawn-deep); border-color: var(--lawn-deep); }

.btn-line { background: transparent; color: var(--lawn-deep); }

.btn-line:hover, .btn-line:focus-visible { background: #eef3e3; }

/* ---------- Seasonal bands ---------- */

.seasons-title {
  max-width: 64rem;
  margin: 0 auto 1.5rem;
  padding: 0 1.25rem;
}

.season {
  padding: clamp(2rem, 5vw, 3.25rem) 1.25rem;
}

.season > * {
  max-width: 61.5rem;
  margin-left: auto;
  margin-right: auto;
}

.season h3 {
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.season-price {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 0.6rem;
}

.season p:last-child { max-width: 56rem; margin-bottom: 0; }

.season-spring { background: #e8f0d5; }
.season-spring h3 { color: var(--lawn); }
.season-spring .season-price { color: var(--lawn-deep); }

.season-summer { background: var(--lawn); color: #ecf3e4; }
.season-summer h3 { color: #fff; }
.season-summer .season-price { color: #d8eab9; }

.season-fall { background: #f3e2c8; }
.season-fall h3 { color: #a8671d; }
.season-fall .season-price { color: #8a5414; }

.season-build { background: var(--soil); color: #efe7da; }
.season-build h3 { color: #fff; }
.season-build .season-price { color: #e0c193; }

/* ---------- Before / after ---------- */

.section {
  max-width: 64rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
}

.section-lede { max-width: 46rem; }

.ba-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.5rem;
}

.ba { margin: 0; border-radius: 10px; overflow: hidden; border: 3px solid var(--soil); }

.ba svg { display: block; width: 100%; height: auto; background: #cfe0ef; }

.ba figcaption {
  font-size: 0.92rem;
  padding: 0.8rem 1.1rem;
  background: #fff;
}

.ba-before { border-style: dashed; }

/* ---------- FAQ ---------- */

.faq-band { max-width: none; background: #eef3e3; }

.faq-band > * { max-width: 61.5rem; margin-left: auto; margin-right: auto; }

.faq-list { max-width: 50rem; }

.faq-list details { border-bottom: 2px solid #d8e3c2; }

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.95rem 0;
}

.faq-list summary:hover { color: var(--lawn-deep); }

.faq-list details p { padding-bottom: 1rem; margin: 0; }

/* ---------- Quote band ---------- */

.quote-band { max-width: none; background: var(--lawn-deep); color: #ecf3e4; }

.quote-band > * { max-width: 61.5rem; margin-left: auto; margin-right: auto; }

.quote-band h2 { color: #fff; }

.quote-lede { font-size: 1.12rem; max-width: 48rem; }

.quote-lede a { color: #fff; }

.quote-note { font-size: 0.9rem; opacity: 0.85; margin: 0; }

/* ---------- Footer ---------- */

.site-footer {
  text-align: center;
  padding: 2.5rem 1.25rem;
  font-size: 0.95rem;
  border-top: 6px solid var(--leaf);
}

.footer-fine { font-size: 0.82rem; opacity: 0.75; }

.social-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  justify-content: center;
  padding: 0 1.5rem;
  margin: 1.2rem auto 0;
}

.social-links a { display: inline-flex; color: var(--lawn-deep); opacity: 0.85; }

.social-links a:hover, .social-links a:focus-visible { opacity: 1; }

.social-links svg { width: 1.3rem; height: 1.3rem; }
