/* Ellis Horticulture - site stylesheet
   Built from design-handoff/ (desktop 1280 + mobile 390). The handoff's builders
   emit fixed inline styles at two canvas widths; this is the fluid equivalent.
   Tokens are verbatim from its "Design tokens" section. */

:root {
  --ground: #12201A;
  --deep: #0D1712;
  --card: #1A2C23;
  --cream: #EFEBDF;
  --body: #D6DCCC;
  --muted: #A7B69E;
  --foot-head: #7F8F78;
  --lime: #C8D96F;
  --white: #FFFFFF;
  --body-light: #3E4C3B;
  --eyebrow-light: #5D6E57;
  --on-lime: #26361F;
  --svc-link: #2E6B3E;

  --bl-08: rgba(18, 32, 26, .08);
  --bl-32: rgba(18, 32, 26, .32);
  --bl-40: rgba(18, 32, 26, .4);
  --bd-08: rgba(239, 235, 223, .08);
  --bd-12: rgba(239, 235, 223, .12);
  --bd-25: rgba(239, 235, 223, .25);
  --bd-30: rgba(239, 235, 223, .3);
  --bd-35: rgba(239, 235, 223, .35);
  --b-review: rgba(200, 217, 111, .18);
  --b-related: rgba(200, 217, 111, .25);

  /* v2 canvas: 1600px with 72px gutters (v1 was 1280/48). */
  --pad-x: 72px;
  --sec-y: 48px;
  --band-y: 72px;
  --bleed: 16px;

  --h1: 64px;
  --h2: 44px;
  --h3: 22px;
  --text: 17px;
  --sm: 15px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--cream);
  font-family: 'Familjen Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { opacity: .72; }
img { max-width: 100%; }
h1, h2, h3 { margin: 0; }

.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--lime);
}
.eyebrow-light { color: var(--eyebrow-light); padding-bottom: 10px; }
.h2 { font-size: var(--h2); font-weight: 700; line-height: 1.07; letter-spacing: -.02em; }
.h2.on-light { color: var(--ground); }
.muted { color: var(--muted); }
.link-lime { font-size: var(--sm); font-weight: 600; color: var(--lime); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 17px 28px; border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer;
}
.btn-lime { background: var(--lime); color: var(--ground); }
.btn-outline { border: 1px solid var(--bd-35); color: var(--cream); }
.btn-dark { background: var(--ground); color: var(--cream); }
.btn-on-lime { border: 1px solid var(--bl-40); color: var(--ground); }
.btn-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* v2 rhythm: exactly two vertical values. Sections on the dark ground, and
   bands that own a background. This is what makes the pages feel even. */
.section { padding: var(--sec-y) var(--pad-x); }
.band { padding: var(--band-y) var(--pad-x); background: var(--cream); color: var(--ground); }
.pt { padding-top: 26px; }
.grid-2, .grid-3, .grid-4, .grid-5, .grid-6 { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(3, 1fr); }

.row-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; padding-bottom: 28px;
}
.col-head { display: flex; flex-direction: column; gap: 10px; padding-bottom: 26px; }

/* ------------------------------------------------------------------ header */
.site-header {
  position: relative; display: flex; align-items: center;
  justify-content: space-between; gap: 32px; padding: 24px var(--pad-x);
}
.site-header .logo img { height: 104px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 26px; font-size: 15px; font-weight: 500; color: var(--body); }
.nav-cta {
  padding: 13px 24px; border-radius: 6px; background: var(--lime);
  color: var(--ground); font-size: 15px; font-weight: 600; white-space: nowrap;
}
.header-cta { display: none; padding: 0 20px 14px; }
.header-cta a {
  display: block; padding: 15px; border-radius: 6px; background: var(--lime);
  color: var(--ground); font-size: 16px; font-weight: 600; text-align: center;
}

.has-drop { position: relative; }
.has-drop > a { display: inline-flex; align-items: center; gap: 6px; }
.caret { font-size: 11px; opacity: .7; }
.drop {
  position: absolute; top: 100%; left: 0; z-index: 30; min-width: 290px;
  display: flex; flex-direction: column; padding: 10px;
  background: var(--card); border: 1px solid var(--bd-12); border-radius: 10px;
  box-shadow: 0 20px 44px -24px rgba(0, 0, 0, .8);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { padding: 10px 12px; border-radius: 6px; font-size: 15px; color: var(--body); }
.drop a:hover { background: rgba(239, 235, 223, .06); opacity: 1; }

.burger {
  display: none; width: 46px; height: 46px; padding: 0; cursor: pointer;
  border: 1px solid var(--bd-25); border-radius: 6px; background: transparent; color: var(--cream);
}
.burger span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; }

/* -------------------------------------------------------------------- hero */
.hero {
  position: relative; height: 600px; margin: 0 var(--bleed);
  border-radius: 14px; overflow: hidden; background: var(--deep);
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,23,18,.92) 0%, rgba(13,23,18,.78) 46%, rgba(13,23,18,.25) 100%);
}
.hero-body {
  position: relative; height: 100%; max-width: 800px; padding: 0 60px;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
}
.hero-body h1 { font-size: var(--h1); font-weight: 700; line-height: 1.04; letter-spacing: -.02em; text-wrap: pretty; }
.hero-sub { margin: 0; max-width: 30em; font-size: 19px; line-height: 1.6; color: var(--body); }
.trust-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; font-size: var(--sm); color: var(--body); }
.trust-row .stars { color: var(--lime); }
.trust-row .val { color: var(--cream); }
.trust-row .sep { opacity: .4; }

/* ------------------------------------------------------------- trust strip */
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: var(--bleed); }
.trust-strip > div {
  padding: 24px; border-radius: 10px; background: var(--card);
  font-size: var(--sm); line-height: 1.5; color: var(--body);
}

/* ------------------------------------------------------------------- split */
.split {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px;
  align-items: center; padding: 64px var(--pad-x);
}
.split-copy { display: flex; flex-direction: column; gap: 18px; }
.split-copy p { margin: 0; font-size: var(--text); line-height: 1.65; color: var(--body); }
.split-pic { position: relative; height: 440px; border-radius: 12px; overflow: hidden; background: var(--deep); }
.split-pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.checks { display: flex; flex-direction: column; gap: 12px; padding-top: 4px; }
.checks > div { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; line-height: 1.5; }
.checks img { margin-top: 4px; flex: none; }

/* ------------------------------------------------------- tick / step cards */
.tick {
  display: flex; align-items: flex-start; gap: 12px; padding: 22px;
  border-radius: 10px; background: var(--card);
  font-size: 16px; line-height: 1.5; color: var(--cream);
}
.tick img { margin-top: 3px; flex: none; }
.step { display: flex; flex-direction: column; gap: 10px; padding: 28px; border-radius: 12px; background: var(--card); }
.step-label { font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); }
.step h3 { font-size: var(--h3); font-weight: 600; }
.step p { margin: 0; font-size: var(--sm); line-height: 1.6; color: var(--body); }

/* ---------------------------------------------------------------- services */
.services { background: var(--cream); color: var(--ground); padding: 72px var(--pad-x); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding-bottom: 32px; }
.sec-head p { margin: 0; max-width: 24em; font-size: 16px; line-height: 1.6; color: var(--body-light); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.svc-card {
  display: flex; align-items: flex-start; gap: 18px; padding: 28px;
  border-radius: 12px; background: var(--white); border: 1px solid var(--bl-08);
  transition: border-color .2s;
}
.svc-card:hover { border-color: var(--bl-32); opacity: 1; }
.svc-card img { height: 38px; width: auto; flex: none; }
.svc-card > div { display: flex; flex-direction: column; gap: 8px; }
.svc-card h3 { font-size: var(--h3); font-weight: 600; }
.svc-card p { margin: 0; font-size: var(--sm); line-height: 1.55; color: var(--body-light); }
.svc-more { font-size: 14px; font-weight: 600; color: var(--svc-link); }

/* ----------------------------------------------------------------- reviews */
.rev-card {
  margin: 0; display: flex; flex-direction: column; gap: 14px; padding: 30px;
  border-radius: 12px; background: var(--card); border: 1px solid var(--b-review);
}
.rev-stars { font-size: 15px; font-weight: 600; color: var(--lime); letter-spacing: .06em; }
.rev-card p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--cream); }
.rev-card footer { margin-top: auto; padding-top: 6px; font-size: 14px; color: var(--muted); }

/* Homepage review slider: 3 cards visible, 384px card + 16px gap = 400px pitch. */
.col-head-tight { display: flex; flex-direction: column; gap: 10px; }
.rev-controls { display: flex; align-items: center; gap: 16px; }
.rev-btn {
  width: 46px; height: 46px; flex: none; border-radius: 99px;
  border: 1px solid var(--bd-30); background: transparent; color: var(--cream);
  font-size: 18px; cursor: pointer;
}
.rev-btn[disabled] { opacity: .35; cursor: default; }
.rev-viewport { overflow: hidden; }
.rev-track {
  display: flex; gap: 16px; align-items: stretch; will-change: transform;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}
.rev-track .rev-card { flex: none; width: 384px; }
.rev-dots { display: flex; align-items: center; gap: 8px; padding-top: 26px; }
.rev-dots button {
  width: 26px; height: 6px; padding: 0; border: 0; border-radius: 99px;
  background: rgba(239, 235, 223, .28); cursor: pointer; transition: background .3s;
}
.rev-dots button[aria-current="true"] { background: var(--lime); }

/* --------------------------------------------------------------------- FAQ
   Drawn open in the handoff; built as an accordion with the first item open. */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { padding: 26px; border-radius: 12px; background: var(--card); border: 1px solid var(--bd-08); }
.faq-item summary {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item h3 { font-size: 21px; font-weight: 600; }
.faq-mark { position: relative; flex: none; width: 18px; height: 18px; margin-top: 3px; }
.faq-mark::before, .faq-mark::after {
  content: ''; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px;
  translate: -50% -50%; background: var(--lime); transition: opacity .2s, rotate .2s;
}
.faq-mark::after { rotate: 90deg; }
.faq-item[open] .faq-mark::after { opacity: 0; rotate: 0deg; }
.faq-item p { margin: 8px 0 0; font-size: 16px; line-height: 1.6; color: var(--body); }

/* ----------------------------------------------------------------- related */
.related { padding: 28px; border-radius: 12px; border: 1px solid var(--b-related); }
.related .eyebrow { padding-bottom: 14px; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pills > * {
  padding: 11px 18px; border-radius: 6px; background: var(--card);
  font-size: var(--sm); font-weight: 500;
}

/* ------------------------------------------------------------------- areas */
.areas { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.areas-copy { display: flex; flex-direction: column; gap: 16px; }
.areas-copy p { margin: 0; font-size: var(--text); line-height: 1.65; color: var(--body); }
.map { position: relative; height: 360px; border-radius: 12px; overflow: hidden; background: var(--card); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* ------------------------------------------------------------- photo cards */
.photo-card { display: flex; flex-direction: column; gap: 12px; }
.photo { position: relative; height: 280px; border-radius: 12px; overflow: hidden; background: var(--deep); }
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-card h3 { font-size: var(--h3); font-weight: 600; line-height: 1.25; }
.photo-card p { margin: 0; font-size: var(--sm); line-height: 1.55; }

/* ----------------------------------------------------------------- article */
.article-head { padding: 40px var(--pad-x) 8px; max-width: 880px; display: flex; flex-direction: column; gap: 14px; }
.article-head h1 { font-size: 46px; font-weight: 700; line-height: 1.08; letter-spacing: -.02em; text-wrap: pretty; }
.standfirst { margin: 0; font-size: 20px; line-height: 1.6; color: var(--body); }
.article-hero {
  position: relative; height: 420px; margin: 24px var(--pad-x);
  border-radius: 12px; overflow: hidden; background: var(--deep);
}
.article-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-body {
  display: flex; flex-direction: column; gap: 22px;
  padding: 40px var(--pad-x) 8px; max-width: 840px;
}
.article-body h2 { margin: 14px 0 0; font-size: 32px; font-weight: 700; line-height: 1.12; letter-spacing: -.015em; }
.article-body h3 { margin: 10px 0 0; font-size: 23px; font-weight: 600; }
.article-body p { margin: 0; font-size: 18px; line-height: 1.7; color: var(--body); }
.article-body ul {
  margin: 0; padding-left: 22px; display: flex; flex-direction: column; gap: 8px;
  font-size: 18px; line-height: 1.6; color: var(--body);
}

/* -------------------------------------------------------------- case study */
.cs-head { padding: 40px var(--pad-x) 24px; display: flex; flex-direction: column; gap: 12px; }
.cs-head h1 { font-size: 48px; font-weight: 700; line-height: 1.06; letter-spacing: -.02em; }
.cs-head p { margin: 0; font-size: var(--text); }
.cs-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 0 var(--pad-x); }
.cs-shot { position: relative; height: 420px; margin: 0; border-radius: 12px; overflow: hidden; background: var(--deep); }
.cs-shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.chip {
  position: absolute; left: 14px; top: 14px; padding: 7px 12px;
  border-radius: 6px; font-size: 13px; font-weight: 600;
}
.chip-before { background: rgba(13, 23, 18, .8); color: var(--cream); }
.chip-after { background: var(--lime); color: var(--ground); }
.spec { display: flex; flex-direction: column; gap: 14px; }
.spec-row { display: grid; grid-template-columns: 220px 1fr; gap: 32px; padding: 26px; border-radius: 12px; background: var(--card); }
.spec-label { font-size: var(--sm); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--lime); }
.spec-row p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--body); }

/* --------------------------------------------------------------- final CTA */
.final-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  margin: 0 var(--bleed) 16px; padding: 52px var(--pad-x);
  border-radius: 14px; background: var(--lime); color: var(--ground);
}
.final-cta-copy { display: flex; flex-direction: column; gap: 10px; max-width: 34em; }
.final-cta-copy p { margin: 0; font-size: var(--text); line-height: 1.6; color: var(--on-lime); }
.final-cta-btns { display: flex; flex-direction: column; gap: 10px; flex: none; }

/* ------------------------------------------------------------------ footer */
.site-footer {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding: 56px var(--pad-x) 60px; background: var(--ground);
  border-top: 1px solid var(--bd-12);
}
.foot-brand { display: flex; flex-direction: column; gap: 14px; }
.foot-brand img { height: 46px; width: auto; align-self: flex-start; }
.foot-brand p { margin: 0; max-width: 26em; font-size: 15px; line-height: 1.6; color: var(--muted); }
.foot-col { display: flex; flex-direction: column; gap: 12px; font-size: 15px; color: var(--body); }
.foot-head { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--foot-head); }
.copyright { padding-top: 6px; font-size: 13px; color: var(--foot-head); }

.sticky-cta { display: none; }

/* ---------------------------------------------- extra pages (not in design)
   /gardener-nidderdale and /rural-property-garden-care */
.hero-sm { height: 420px; }
.hero-sm .hero-body h1 { font-size: 48px; }
.prose { display: flex; flex-direction: column; gap: 20px; max-width: 62ch; }
.prose p { margin: 0; font-size: var(--text); line-height: 1.65; color: var(--body); }
.prose h2 { font-size: 30px; font-weight: 700; line-height: 1.1; padding-top: 12px; letter-spacing: -.02em; }
.prose h3 { font-size: 20px; font-weight: 600; }
.prose ul { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.prose li { font-size: var(--text); line-height: 1.6; color: var(--body); }
.two-col { display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: start; }
.aside { display: flex; flex-direction: column; gap: 14px; padding: 28px; border-radius: 12px; background: var(--card); }
.aside h3 { font-size: 18px; font-weight: 600; }
.aside p { margin: 0; font-size: var(--sm); line-height: 1.6; color: var(--body); }

/* ========================================================== 900 - 1199px == */
@media (max-width: 1023px) {
  .hero { height: 560px; }
  .hero-body { padding: 0 40px; }
  .site-header .logo img { height: 76px; }
  .nav { gap: 18px; font-size: 14px; }
  .trust-strip, .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .split-pic { height: 380px; }
  .article-head h1 { font-size: 38px; }
  .cs-head h1 { font-size: 38px; }
  .cs-shot { height: 340px; }
}

/* ================================================================ < 900px == */
@media (max-width: 767px) {
  :root { --bleed: 12px; --h3: 19px; --text: 16px; --sm: 14px; }

  .site-header {
    position: sticky; top: 0; z-index: 60;
    gap: 12px; padding: 16px var(--pad-x);
    background: var(--ground); border-bottom: 1px solid var(--bd-12);
  }
  .site-header .logo img { height: 64px; }
  .burger { display: block; }
  .nav-cta { display: none; }

  .nav {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 40;
    display: none; flex-direction: column; align-items: stretch; gap: 4px;
    margin: 0 var(--pad-x); padding: 12px; background: var(--card);
    border: 1px solid var(--bd-12); border-radius: 12px;
    box-shadow: 0 24px 50px -26px rgba(0, 0, 0, .85);
  }
  .nav[data-open="true"] { display: flex; max-height: max(260px, calc(100dvh - 110px)); overflow-y: auto; }
  .nav > a, .has-drop > a { padding: 12px 10px; border-radius: 6px; font-size: 16px; }
  .drop {
    position: static; min-width: 0; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: transparent; border: 0;
    border-left: 2px solid var(--bd-12); border-radius: 0;
    margin: 0 0 6px 12px; padding: 0 0 0 8px;
  }

  /* The mobile canvas splits the hero: eyebrow over a 300px photo, then the
     heading and CTAs beneath it on the page ground. One markup tree cannot do
     that split, so the hero grows to fit its content over a vertical scrim -
     everything stays on the page and readable. */
  .hero, .hero-sm { height: auto; min-height: 300px; border-radius: 12px; }
  .hero-scrim { background: linear-gradient(180deg, rgba(13,23,18,.3), rgba(13,23,18,.9)); }
  .hero-body { justify-content: flex-end; padding: 24px 20px; gap: 16px; max-width: none; }
  .hero-sm .hero-body h1 { font-size: var(--h1); }
  .hero-sub { font-size: var(--text); }
  .btn-row { gap: 10px; }
  .hero-body .btn-row { flex-direction: column; align-items: stretch; }
  .trust-row { gap: 8px 16px; font-size: 13px; }
  .trust-row .sep, .trust-row .founder { display: none; }

  .section { padding: 8px var(--pad-x) 28px; }
  .pt { padding-top: 18px; }
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .svc-grid, .trust-strip { grid-template-columns: 1fr; }
  .row-head, .sec-head { flex-direction: column; align-items: flex-start; gap: 12px; }

  .split { grid-template-columns: 1fr; gap: 24px; padding: 28px var(--pad-x); }
  .split-pic { height: 240px; }
  .services { padding: 32px var(--pad-x); }
  .svc-card, .step, .faq-item { padding: 20px; }
  .tick { padding: 18px; }
  .rev-card { padding: 22px; }
  .related { padding: 20px; }

  .areas { grid-template-columns: 1fr; gap: 24px; }
  .map { height: 260px; }
  .photo { height: 220px; }

  .article-head { padding: 20px; max-width: 100%; }
  .article-head h1 { font-size: 30px; }
  .standfirst { font-size: 17px; }
  .article-hero { height: 220px; margin: 0 var(--bleed); }
  .article-body { padding: 24px var(--pad-x); max-width: 100%; gap: 16px; }
  .article-body h2 { font-size: 23px; }
  .article-body h3 { font-size: 19px; }
  .article-body p, .article-body ul { font-size: 16px; }

  .cs-head { padding: 20px; }
  .cs-head h1 { font-size: 30px; }
  .cs-pair { grid-template-columns: 1fr; padding: 0 var(--bleed); }
  .cs-shot { height: 240px; }
  .spec-row { grid-template-columns: 1fr; gap: 8px; padding: 20px; }

  .final-cta { flex-direction: column; align-items: stretch; padding: 28px var(--pad-x); }
  .final-cta-btns { flex: 1 1 auto; }

  .site-footer { grid-template-columns: 1fr; gap: 24px; padding: 32px var(--pad-x) 36px; }

  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .prose h2 { font-size: 24px; }

  /* One review card per slide, full width. */
  .rev-track .rev-card { width: 100%; }
  .rev-controls { width: 100%; justify-content: space-between; }
  .rev-dots { padding-top: 18px; }

}

@media (prefers-reduced-motion: reduce) {
  .drop, .faq-mark::before, .faq-mark::after { transition: none; }
}

/* ==========================================================================
   v2 section vocabulary
   Reassurance bar, image-led rows, cream bands, full-bleed review band and
   hairline why-rows, so pages stop reading as identical dark card grids.
   Values from design-handoff/source/build-sections2.js.
   ========================================================================== */

.band-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; padding-bottom: 32px;
}
.band-head-l { display: flex; flex-direction: column; gap: 10px; }
.band-sub { margin: 0; max-width: 26em; font-size: 16px; line-height: 1.6; color: var(--body-light); }
.band-cta { flex: none; }
.link-green { font-size: 15px; font-weight: 600; color: var(--svc-link); }

/* ------------------------------------------------------------ promise bar */
.promise-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin: 16px; padding: 26px 32px; border-radius: 12px; background: var(--card);
}
.promise-bar > div { display: flex; align-items: center; gap: 12px; }
.promise-bar > div + div { border-left: 1px solid rgba(239, 235, 223, .1); padding-left: 32px; }
.promise-bar img { flex: none; }
.promise-bar span { font-size: 16px; line-height: 1.45; color: var(--body); }

/* ---------------------------------------------------------------- feature */
.feature {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px;
  align-items: center; padding: 48px var(--pad-x);
}
.feature-left { grid-template-columns: 1.05fr 1fr; }
.feature-copy { display: flex; flex-direction: column; gap: 16px; }
.feature-copy p { margin: 0; font-size: var(--text); line-height: 1.65; color: var(--body); }
.feature-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; padding-top: 4px; }
.feature-checks > div { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; line-height: 1.5; }
.feature-checks img { margin-top: 4px; flex: none; }
.feature-pic { position: relative; height: 500px; border-radius: 12px; overflow: hidden; background: var(--deep); }
.feature-pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ----------------------------------------------------------- image checks */
.imgchecks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: stretch; padding: 48px var(--pad-x);
}
.imgchecks-copy { display: flex; flex-direction: column; gap: 14px; }
.imgchecks-copy > .muted { margin: 0; font-size: var(--text); line-height: 1.6; }
.numrows { display: flex; flex-direction: column; padding-top: 6px; }
.numrow {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 0;
  border-top: 1px solid var(--bd-12);
}
.numrow:last-child { border-bottom: 1px solid var(--bd-12); }
.numrow-n {
  flex: none; padding-top: 3px; font-size: 13px; font-weight: 600; color: var(--lime);
  font-family: ui-monospace, Menlo, monospace;
}
.numrow > span:last-child { font-size: 17px; line-height: 1.5; }
.imgchecks-pic { position: relative; min-height: 480px; border-radius: 12px; overflow: hidden; background: var(--deep); }
.imgchecks-pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------------------------------- steps, big numerals */
.stepbig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stepbig { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 2px solid var(--ground); }
.stepbig-num { font-size: 46px; font-weight: 700; line-height: 1; letter-spacing: -.03em; color: var(--ground); }
.stepbig h3 { font-size: var(--h3); font-weight: 600; }
.stepbig p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--body-light); }

/* ----------------------------------------------------------- benefits band */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit { display: flex; flex-direction: column; gap: 10px; padding-top: 18px; border-top: 2px solid var(--ground); }
.benefit img { align-self: flex-start; }
.benefit span { font-size: 17px; line-height: 1.5; color: var(--on-lime); }

/* ------------------------------------------------------------- quote band */
.quote-band {
  position: relative; min-height: 440px; margin: 0 var(--bleed) 16px;
  border-radius: 14px; overflow: hidden; background: var(--deep);
}
.quote-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.quote-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,23,18,.94) 0%, rgba(13,23,18,.7) 55%, rgba(13,23,18,.2) 100%);
}
.quote-body {
  position: relative; display: flex; flex-direction: column; gap: 22px;
  padding: 72px 80px; max-width: 820px;
}
.quote-stars { font-size: 16px; font-weight: 600; color: var(--lime); letter-spacing: .08em; }
.quote-text { margin: 0; font-size: 30px; font-weight: 600; line-height: 1.35; letter-spacing: -.015em; }
.quote-attr { font-size: 15px; color: var(--muted); }
.quote-line { font-size: 15px; color: var(--body); }

/* ---------------------------------------------------------------- why rows */
.why-rows { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; padding: 48px var(--pad-x); }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.why-row {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px 0;
  font-size: 17px; line-height: 1.5; border-top: 1px solid var(--bd-12);
}
.why-row img { margin-top: 2px; flex: none; }

/* ------------------------------------------------------------- photo strip */
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.strip-pic { position: relative; height: 260px; border-radius: 12px; overflow: hidden; background: var(--deep); }
.strip-pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.strip-caption { margin: 14px 0 0; font-size: 15px; }

/* ----------------------------------------------------------- reviews, cream */
.rev-light-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rev-card-light {
  margin: 0; display: flex; flex-direction: column; gap: 14px; padding: 28px;
  border-radius: 12px; background: var(--white); border: 1px solid var(--bl-08);
}
.rev-stars-light { font-size: 15px; font-weight: 600; color: var(--svc-link); letter-spacing: .06em; }
.rev-card-light p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--on-lime); }
.rev-card-light footer { margin-top: auto; padding-top: 6px; font-size: 14px; color: var(--eyebrow-light); }

/* ---------------------------------------------------------------- FAQ, v2 */
.faq2 { padding: 48px var(--pad-x); }
.faq-nudge { display: flex; align-items: center; gap: 14px; flex: none; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }

/* ======================================================== 1024 to 1499px == */
@media (max-width: 1499px) {
  :root { --pad-x: 48px; --h1: 52px; --h2: 38px; }
  .feature-pic { height: 420px; }
  .imgchecks-pic { min-height: 420px; }
  .quote-body { padding: 56px; }
  .quote-text { font-size: 26px; }
  .stepbig-num { font-size: 40px; }
}

/* ========================================================= 768 to 1023px == */
@media (max-width: 1023px) {
  :root { --pad-x: 32px; }
  /* Feature photos drop below their text. */
  .feature, .feature-left, .imgchecks { grid-template-columns: 1fr; gap: 24px; }
  .feature-pic, .imgchecks-pic { height: 320px; min-height: 0; order: 2; }
  .promise-bar { grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .promise-bar > div { padding: 14px 0; }
  .promise-bar > div + div { border-left: 0; padding-left: 0; }
  .promise-bar > div:nth-child(n+3) { border-top: 1px solid rgba(239, 235, 223, .1); }
  .why-rows { grid-template-columns: 1fr; gap: 18px; }
  .strip-pic { height: 190px; }
  .stepbig-grid { gap: 24px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .rev-light-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* =============================================================== < 768px == */
@media (max-width: 767px) {
  :root { --pad-x: 20px; --sec-y: 24px; --band-y: 32px; }
  .band-head { flex-direction: column; align-items: flex-start; gap: 12px; padding-bottom: 20px; }

  .promise-bar { grid-template-columns: 1fr; gap: 0; margin: 12px; padding: 6px 20px; }
  .promise-bar > div:nth-child(n+2) { border-top: 1px solid rgba(239, 235, 223, .1); }

  .feature, .imgchecks { padding: 24px var(--pad-x); }
  .feature-pic, .imgchecks-pic { height: 250px; }
  .feature-checks { grid-template-columns: 1fr; }

  .stepbig-grid, .benefit-grid { grid-template-columns: 1fr; }
  .stepbig-num { font-size: 34px; }
  .benefit-grid { gap: 14px; }

  .quote-band { min-height: 420px; margin: 0 12px 16px; }
  .quote-scrim { background: linear-gradient(180deg, rgba(13,23,18,.55), rgba(13,23,18,.94)); }
  .quote-body { padding: 28px 20px; max-width: 100%; gap: 18px; }
  .quote-text { font-size: 21px; }
  .quote-body .btn-row { flex-direction: column; align-items: stretch; }

  .why-rows { padding: 24px var(--pad-x); }
  .why-list { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .strip-pic { height: 150px; }
  .faq2 { padding: 24px var(--pad-x); }
  .faq-nudge { flex-wrap: wrap; }
}

/* ---------------------------------------------------------------- /search */
.search-head { max-width: 860px; }
.search-head h1 { font-size: 46px; font-weight: 700; line-height: 1.08; letter-spacing: -.02em; padding-bottom: 18px; }
.search-form { display: flex; gap: 10px; flex-wrap: wrap; }
.search-input {
  flex: 1; min-width: 220px; padding: 18px 20px; border-radius: 6px;
  background: var(--card); border: 1px solid rgba(239, 235, 223, .2);
  color: var(--cream); font-size: 17px; font-family: inherit;
}
.search-input::placeholder { color: var(--muted); }
.search-input:focus { outline: 2px solid var(--lime); outline-offset: 2px; }
.search-status { padding-top: 18px; font-size: 15px; color: var(--muted); }
.search-results { display: flex; flex-direction: column; gap: 12px; padding-top: 18px; }
.search-hit {
  display: flex; flex-direction: column; gap: 6px; padding: 22px;
  border-radius: 12px; background: var(--card); border: 1px solid var(--bd-08);
  transition: border-color .2s;
}
.search-hit:hover { border-color: var(--bd-30); opacity: 1; }
.search-hit h3 { font-size: 19px; font-weight: 600; color: var(--cream); }
.search-hit p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--body); }
.search-hit-url { font-size: 13px; color: var(--lime); font-family: ui-monospace, Menlo, monospace; }

@media (max-width: 767px) {
  .search-head h1 { font-size: 30px; }
  .search-input { padding: 14px 16px; font-size: 16px; }
  .search-form .btn { flex: 1 1 auto; }
}
