/* ==========================================================================
   Variant 5 — Lonesome Lane Lawn Care
   Industrial trade. Brand green #356533, brand orange #E77D1B (CTAs),
   safety yellow #F2B705 (signal stripes only). Anton + IBM Plex Sans.
   Signature: diagonal clip-path on bottom of every major section.
   ========================================================================== */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: #1a1a1a;
  background: #F1EDE3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
fieldset { margin: 0; padding: 0; border: 0; }

/* ---------- Tokens ---------- */
:root {
  --green: #356533;
  --green-dark: #275317;
  --yellow: #F2B705;      /* signal stripes only — never as body text */
  --orange: #E77D1B;      /* primary CTA — the "click here" color */
  --orange-dark: #cc6810;
  --asphalt: #2C2C2C;
  --cream:  #F1EDE3;
  --white:  #FFFFFF;
  --ink:    #1a1a1a;
  --clip: 48px;
  --max:  1240px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--orange); color: var(--asphalt);
  padding: 12px 16px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  z-index: 9999;
}
.skip:focus { left: 8px; top: 8px; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-top: 3px solid var(--yellow);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.nav__hamburger {
  display: none;
  background: transparent;
  border: 2px solid var(--green);
  color: var(--ink);
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; padding: 0;
  cursor: pointer;
  transition: background 0.15s;
}
.nav__hamburger:hover, .nav__hamburger:focus-visible { background: rgba(53,101,51,0.10); outline: none; }
.nav__hamburger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  transition: transform 0.18s, opacity 0.18s;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__left, .nav__right {
  display: flex; align-items: center; gap: 32px;
}
.nav__left { justify-content: flex-end; }
.nav__right { justify-content: flex-start; }
.nav__left a, .nav__right a {
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.nav__left a:hover, .nav__left a:focus-visible,
.nav__right a:hover, .nav__right a:focus-visible {
  border-color: var(--green); color: var(--green); outline: none;
}
.nav__left a[aria-current="page"], .nav__right a[aria-current="page"] {
  color: var(--green); border-color: var(--green);
}

.nav__logo {
  display: flex;
  align-items: center;
  justify-self: center;
  padding: 4px 0;
}
.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__cta { flex-shrink: 0; }

.nav__mobile {
  display: none;
  position: fixed;
  top: 75px; left: 0; right: 0;
  background: var(--asphalt);
  border-top: 3px solid var(--yellow);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  max-height: calc(100vh - 75px);
  overflow-y: auto;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  color: var(--white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 18px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.nav__mobile a:hover, .nav__mobile a:focus-visible {
  color: var(--yellow); outline: none;
}
.nav__mobile-cta {
  background: var(--orange);
  color: var(--ink) !important;
  border: none !important;
  margin-top: 8px;
  text-align: center;
}
.nav__mobile-phone {
  font-family: 'Anton', sans-serif !important;
  font-size: 24px !important;
  text-align: center;
  border-bottom: none !important;
  padding-top: 24px !important;
}

@media (max-width: 880px) {
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__hamburger { display: flex; }
  .nav__left, .nav__right { display: none; }
  .nav__cta { padding: 10px 18px; font-size: 13px; }
  .nav__logo img { height: 38px; }
  body.menu-open { overflow: hidden; }
}
/* Nav CTA button focus: keep an obvious ring against white nav bg */
.nav__cta:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Anton', sans-serif;
  font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: 2px;
  font-size: 16px; line-height: 1;
  transition: background-color 0.15s, color 0.15s, transform 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn--orange {
  background: var(--orange);
  color: var(--asphalt);
}
.btn--orange:hover,
.btn--orange:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-1px);
  outline: none;
}
.btn--orange:focus-visible { box-shadow: 0 0 0 3px var(--yellow); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--white);
  color: var(--green);
  outline: none;
}

.btn--lg { padding: 18px 32px; font-size: 19px; letter-spacing: 0.1em; }
.btn--xl { padding: 22px 40px; font-size: 24px; letter-spacing: 0.08em; }
.btn--block { width: 100%; }

/* ==========================================================================
   EYEBROWS (small uppercase labels)
   On green/asphalt → white text + yellow underline (signal stripe).
   On cream → dark green text + yellow underline.
   ========================================================================== */
.eyebrow {
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  padding-bottom: 8px;
  border-bottom: 3px solid var(--yellow);
  margin: 0 0 20px;
}
.eyebrow--yellow { color: var(--white); border-color: var(--yellow); }
.eyebrow--green  { color: var(--green); border-color: var(--green); }
.eyebrow--center {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-left: auto; margin-right: auto;
  text-align: center;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: var(--green);
  color: var(--white);
  padding: 128px 0 calc(152px + var(--clip));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip)), 0 100%);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 62% 42%;
}
/* Directional scrim. The flat 82-92% wash this replaced was tuned for a very
   high-key photo; against a normally-exposed one it flattened the image into a
   solid green panel. Text sits left, so the left stays fully opaque for
   contrast while the right thins out enough to let the photograph read. */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(31, 60, 20, 0.93) 0%,
      rgba(31, 60, 20, 0.90) 42%,
      rgba(39, 83, 23, 0.70) 72%,
      rgba(39, 83, 23, 0.52) 100%),
    linear-gradient(180deg,
      rgba(18, 38, 11, 0.34) 0%,
      rgba(18, 38, 11, 0.00) 38%,
      rgba(18, 38, 11, 0.42) 100%);
}
/* Narrow viewports: headline spans the full width, so no thin side is safe —
   revert to a uniform wash rather than risk text over the light edge. */
@media (max-width: 880px) {
  .hero__overlay {
    background:
      linear-gradient(180deg,
        rgba(39, 83, 23, 0.86) 0%,
        rgba(31, 60, 20, 0.93) 100%);
  }
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.hero__eyebrow {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 36px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--yellow);
  display: inline-block;
}
.hero__h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 11vw, 132px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 0 0 36px;
  text-transform: uppercase;
  color: var(--orange);
}
.hero__sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 44px;
  color: rgba(255,255,255,0.88);
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 16px;
}
.hero__stripe {
  position: absolute;
  bottom: calc(var(--clip) + 24px);
  left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  z-index: 1;
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust {
  background: var(--cream);
  margin-top: calc(var(--clip) * -1);
  padding: calc(80px + var(--clip)) 0 calc(80px + var(--clip));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip)), 0 100%);
  position: relative;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust__item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  padding-left: 20px;
  border-left: 3px solid var(--yellow);
}
.trust__icon {
  width: 40px; height: 40px;
  color: var(--green);
  margin-bottom: 4px;
}
.trust__num {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.9;
  color: var(--green);
  letter-spacing: 0.02em;
}
.trust__label {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--green-dark);
  line-height: 1.05;
}
.trust__body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--asphalt);
  opacity: 0.85;
}

/* ==========================================================================
   BELIEVE CALLOUT (Pink's-style rhetorical statement between Trust and Marquee)
   ========================================================================== */
.believe {
  background: var(--cream);
  padding: calc(96px + var(--clip)) 0 calc(96px + var(--clip));
  margin-top: calc(var(--clip) * -1);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip)), 0 100%);
  position: relative;
  text-align: center;
}
.believe::before {
  content: "";
  position: absolute;
  top: var(--clip); left: 50%; transform: translateX(-50%);
  width: 80px; height: 3px;
  background: var(--yellow);
}
.believe__inner {
  max-width: 720px;
}
.believe__h {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  color: var(--green-dark);
  letter-spacing: 0.01em;
  margin: 20px 0 24px;
}
.believe__sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--asphalt);
  margin: 0 auto 40px;
  max-width: 620px;
}
.believe__actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.believe .btn--outline {
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.believe .btn--outline:hover,
.believe .btn--outline:focus-visible {
  background: var(--green-dark); color: var(--white);
}

/* ==========================================================================
   SERVICES — alternating dark-green / cream split bands
   ========================================================================== */
.services { background: var(--cream); }

.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 520px;
  margin-top: calc(var(--clip) * -1);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip)), 0 100%);
  position: relative;
}
.band__text {
  background: var(--green);
  color: var(--white);
  padding: 88px 64px calc(64px + var(--clip));
  display: flex; flex-direction: column; justify-content: center;
}
.band--inverse .band__text { background: var(--asphalt); }
.band__photo {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  min-height: 320px;
}
.band__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  min-height: 100%;
}
.band--photo-left .band__text { order: 2; }
.band--photo-left .band__photo { order: 1; }

.band__eyebrow {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 18px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--yellow);
  display: inline-block;
  align-self: flex-start;
}
.band__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 0.95;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--white);
}
.band__copy {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.88);
  max-width: 460px;
}
.band__list {
  margin: 0 0 36px;
  display: grid; gap: 0;
  max-width: 480px;
}
.band__list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  display: flex; align-items: center; gap: 14px;
}
.band__list li::before {
  content: ''; display: block;
  width: 14px; height: 3px;
  background: var(--yellow);
  flex-shrink: 0;
}
.band__more {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange);
  align-self: flex-start;
  transition: color 0.15s, border-color 0.15s, transform 0.15s;
}
.band__more:hover,
.band__more:focus-visible {
  color: var(--yellow);
  border-color: var(--yellow);
  transform: translateX(4px);
  outline: none;
}

/* ==========================================================================
   PRIVACY / LEGAL PAGE
   Long-form reading page. No hero photo, so the hero needs its own solid
   ground — .hero rules assume an absolutely-positioned .hero__bg behind them.
   ========================================================================== */
.hero--flat {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 88px 0 calc(96px + var(--clip));
}
.hero--flat .hero__inner { position: relative; z-index: 2; }
.privacy__updated {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.22);
  display: inline-block;
}

.privacy {
  background: var(--cream);
  color: var(--ink);
  margin-top: calc(var(--clip) * -1);
  padding: calc(96px + var(--clip)) 0 112px;
  position: relative;
}
/* Measure capped for readability — long legal text at full container width is
   unreadable regardless of how good the type is.
   Cap the CHILDREN, not the wrapper. The wrapper also carries .container, whose
   `max-width:1240 + margin:0 auto + padding:0 24` is what puts content on the
   same 124px line as every hero on the site. Narrowing the wrapper itself moves
   that line: `max-width:760` alone re-centres the column (body at 365px, hero at
   124px), and adding `margin-left:0` overcorrects to the viewport edge (body at
   24px). Leaving the container alone and capping its children keeps the measure
   at 760px AND the left edge aligned with the hero. */
.privacy__wrap > * { max-width: 760px; }

.privacy__note {
  background: var(--white);
  border-left: 6px solid var(--yellow);
  padding: 28px 32px;
  margin: 0 0 56px;
}
.privacy__note p { margin: 0; font-size: 17px; line-height: 1.65; }

.privacy__block { margin: 0 0 48px; }
.privacy__block:last-child { margin-bottom: 0; }
.privacy__h {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.05;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--asphalt);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--yellow);
}
.privacy__block p {
  font-size: 16px;
  line-height: 1.7;
  color: #3d3d3d;
  margin: 0 0 16px;
}
.privacy__block p:last-child { margin-bottom: 0; }
.privacy__block strong { color: var(--asphalt); font-weight: 600; }
/* :not(.btn) matters — the contact block ends in an <a class="btn btn--orange">,
   and an unscoped `.privacy__block a` repainted it green-on-orange: 3.14:1,
   Lighthouse A11y 95. Inline links get the underline treatment; buttons keep
   their own. */
.privacy__block a:not(.btn) {
  color: var(--green-dark);
  font-weight: 600;
  border-bottom: 2px solid var(--orange);
  transition: color 0.15s, border-color 0.15s;
}
.privacy__block a:not(.btn):hover,
.privacy__block a:not(.btn):focus-visible {
  color: var(--orange-dark); border-color: var(--green); outline: none;
}

.privacy__list { margin: 0 0 18px; display: grid; gap: 0; }
.privacy__list li {
  position: relative;
  padding: 11px 0 11px 26px;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  font-size: 16px;
  line-height: 1.6;
  color: #3d3d3d;
}
.privacy__list li::before {
  content: ''; position: absolute; left: 0; top: 21px;
  width: 14px; height: 3px; background: var(--yellow);
}

.privacy__contact { margin: 0 0 32px; display: grid; gap: 0; }
.privacy__contact li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  font-size: 16px;
}
.privacy__block--contact {
  background: var(--white);
  border-top: 4px solid var(--green);
  padding: 36px 32px 34px;
}
.privacy__cta { margin-top: 4px; }

@media (max-width: 768px) {
  .privacy { padding: calc(64px + var(--clip)) 0 80px; }
  .privacy__note { padding: 22px 24px; margin-bottom: 40px; }
  .privacy__block--contact { padding: 28px 24px 26px; }
  .hero--flat { padding: 64px 0 calc(72px + var(--clip)); }
}

/* ==========================================================================
   SEASONAL SERVICES
   Text-only companions to the three photo bands. These three carry no
   photography on purpose: there are no verified job photos for irrigation,
   snow or holiday lighting yet, and a summer mowing shot under "Snow
   Removal" reads as a lie. Cards stay text-first until real photos land.
   ========================================================================== */
.seasonal {
  background: var(--cream);
  color: var(--asphalt);
  margin-top: calc(var(--clip) * -1);
  padding: calc(104px + var(--clip)) 0 calc(104px + var(--clip));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip)), 0 100%);
  position: relative;
}
.seasonal__head { max-width: 760px; margin: 0 0 52px; }
.seasonal__eyebrow {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  /* asphalt, NOT .eyebrow--yellow — that class is white text and fails on cream */
  color: var(--asphalt);
  margin: 0 0 18px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--yellow);
  display: inline-block;
}
.seasonal__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 0.98;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--asphalt);
}
.seasonal__lede {
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
  color: #4a4a4a;
}
.seasonal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.seasonal__card {
  background: var(--white);
  border-left: 6px solid var(--yellow);
  padding: 38px 32px 32px;
  display: flex;
  flex-direction: column;
}
.seasonal__num {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5c5c5c;
  margin: 0 0 14px;
}
.seasonal__name {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.02;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--asphalt);
}
.seasonal__copy {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 26px;
  color: #4a4a4a;
  flex: 1;
}
.seasonal__more {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--asphalt);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange);
  align-self: flex-start;
  transition: color 0.15s, border-color 0.15s, transform 0.15s;
}
.seasonal__more:hover,
.seasonal__more:focus-visible {
  color: var(--green);
  border-color: var(--green);
  transform: translateX(4px);
  outline: none;
}
/* 3 -> 1. Never 2: three cards in two columns orphans the third. */
@media (max-width: 1024px) {
  .seasonal__grid { grid-template-columns: 1fr; gap: 20px; }
  .seasonal { padding: calc(80px + var(--clip)) 0 calc(80px + var(--clip)); }
  .seasonal__head { margin-bottom: 40px; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  background: var(--asphalt);
  color: var(--white);
  margin-top: calc(var(--clip) * -1);
  padding: calc(120px + var(--clip)) 0 calc(120px + var(--clip));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip)), 0 100%);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.about__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: var(--white);
}
.about__lede {
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 16px;
  color: rgba(255,255,255,0.88);
}
.about__body {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 32px;
  color: rgba(255,255,255,0.7);
}
.about__stripe {
  height: 3px;
  background: var(--yellow);
  margin: 0 0 28px;
  max-width: 96px;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about__stats li {
  display: flex; flex-direction: column; gap: 6px;
  padding-left: 18px;
  border-left: 3px solid var(--yellow);
}
.stat__num {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
}
.stat__label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.about__photo {
  overflow: hidden;
  min-height: 480px;
  height: 100%;
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  min-height: 480px;
}

/* ==========================================================================
   PROMISE
   ========================================================================== */
.promise {
  background: var(--green);
  color: var(--white);
  margin-top: calc(var(--clip) * -1);
  padding: calc(120px + var(--clip)) 0 calc(120px + var(--clip));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip)), 0 100%);
}
.promise__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 16px 0 64px;
  text-align: center;
  color: var(--white);
}
/* Pink's-style promise: centered head + 3-column card grid + yellow stripe */
.promise__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.promise__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 16px 0 20px;
  color: var(--white);
}
.promise__sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.promise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}
.promise__card {
  text-align: center;
  padding: 0 8px;
}
.promise__icon {
  width: 56px; height: 56px;
  color: var(--yellow);
  margin: 0 auto 16px;
  display: block;
}
.promise__num {
  display: block;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 0.9;
  color: var(--yellow);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.promise__h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--white);
}
.promise__copy {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: rgba(255,255,255,0.85);
}
.promise .promise__stripe {
  height: 3px;
  background: var(--yellow);
  max-width: 720px;
  margin: 64px auto 0;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews {
  background: var(--cream);
  margin-top: calc(var(--clip) * -1);
  padding: calc(120px + var(--clip)) 0 calc(120px + var(--clip));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip)), 0 100%);
}
.reviews__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 16px 0 56px;
  text-align: center;
  color: var(--green);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--cream);
  border: 1px solid var(--green);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.review::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 56px; height: 3px;
  background: var(--yellow);
}
.review__stars {
  display: flex; gap: 4px;
  color: var(--yellow);
  margin-top: 4px;
}
.review__quote {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  color: var(--asphalt);
  flex: 1;
}
.review__attr {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 16px;
  border-top: 2px solid var(--green);
}
.review__name {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
}
.review__city {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--asphalt);
}

/* ==========================================================================
   LOCATION
   ========================================================================== */
.location {
  background: var(--asphalt);
  color: var(--cream);
  padding: calc(96px + var(--clip)) 0;
  margin-top: calc(var(--clip) * -1);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip)), 0 100%);
  position: relative;
  text-align: center;
}
.location__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  margin: 12px 0 24px;
  color: var(--white);
  letter-spacing: 0.01em;
}
.location__lede {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--cream);
}
.location__cities {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.location__cities li {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--cream);
  padding: 10px 18px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.location__note {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  margin: 0;
  color: var(--cream);
}
.location__note a {
  color: var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}
.location__note a:hover, .location__note a:focus-visible {
  color: var(--white);
  border-color: var(--white);
  outline: none;
}
.location__stripe {
  position: absolute;
  bottom: var(--clip);
  left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  background: var(--green);
  color: var(--white);
  margin-top: calc(var(--clip) * -1);
  padding: calc(120px + var(--clip)) 0 calc(96px + var(--clip));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip)), 0 100%);
  position: relative;
}
.contact__card {
  background: var(--cream);
  color: var(--asphalt);
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 48px;
  border-left: 4px solid var(--orange);
  position: relative;
}
.contact__card::before {
  content: '';
  position: absolute;
  top: -3px; left: -4px; right: 0;
  height: 3px;
  background: var(--yellow);
}
.contact__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 8px 0 16px;
  color: var(--green);
}
.contact__sub {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 32px;
  color: var(--asphalt);
}
.contact__or {
  margin: 64px 0 0;
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.contact__or a {
  color: var(--cream);
  border-bottom: 3px solid var(--orange);
  padding-bottom: 4px;
  transition: color 0.15s, border-color 0.15s;
}
.contact__or a:hover,
.contact__or a:focus-visible {
  color: var(--yellow);
  border-color: var(--yellow);
  outline: none;
}

/* ---------- FORM ---------- */
.form { display: grid; gap: 20px; }
.form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field__label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.field input,
.field textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 13px 14px;
  background: var(--white);
  border: 1px solid var(--green);
  border-radius: 2px;
  color: var(--asphalt);
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px var(--orange);
}
.form__fieldset {
  display: flex; flex-direction: column; gap: 10px;
}

/* Service toggles — sharp boxes, orange when checked */
.toggles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.toggle { position: relative; }
.toggle input {
  position: absolute; opacity: 0; pointer-events: none;
}
.toggle span {
  display: block;
  padding: 14px 12px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--green);
  border-radius: 2px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.toggle input:checked + span {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--asphalt);
}
.toggle input:focus-visible + span {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

/* Frequency segments — joined, sharp, orange when selected */
.segments {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--green);
  border-radius: 2px;
  overflow: hidden;
}
.segment { position: relative; border-right: 1px solid var(--green); }
.segment:last-child { border-right: 0; }
.segment input {
  position: absolute; opacity: 0; pointer-events: none;
}
.segment span {
  display: block;
  padding: 14px 6px;
  text-align: center;
  background: var(--white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--green);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.segment input:checked + span {
  background: var(--orange);
  color: var(--asphalt);
}
.segment input:focus-visible + span {
  outline: 3px solid var(--yellow);
  outline-offset: -3px;
  position: relative; z-index: 1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--asphalt);
  color: var(--white);
  border-top: 3px solid var(--yellow);
  margin-top: calc(var(--clip) * -1);
  padding-top: var(--clip);
}
.footer__inner {
  padding: 64px 24px 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
}
.footer__brand { max-width: 360px; }
.footer__logo {
  height: 44px; width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.footer__tag {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0 0 12px;
  line-height: 1.45;
}
.footer__addr {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__h {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a, .footer__col li {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  transition: color 0.15s;
  word-break: break-word;
}
.footer__col a:hover,
.footer__col a:focus-visible {
  color: var(--yellow);
  outline: none;
}
.footer__base {
  border-top: 1px solid rgba(255,255,255,0.10);
}
.footer__base-inner {
  padding: 20px 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer__base-inner p { margin: 0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  :root { --clip: 36px; }
  .about__grid { gap: 56px; }
  .promise__item { grid-template-columns: 160px 1fr; gap: 36px; }
  .promise__num { font-size: 80px; }
  .band__text { padding: 72px 40px calc(56px + var(--clip)); }
}

@media (max-width: 768px) {
  :root { --clip: 28px; }
  .nav__inner { padding: 12px 16px; gap: 12px; }
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; gap: 12px; }
  .nav__phone { font-size: 13px; letter-spacing: 0.06em; }
  .btn { padding: 12px 18px; font-size: 14px; }
  .btn--lg { padding: 14px 22px; font-size: 16px; }
  .btn--xl { padding: 18px 22px; font-size: 19px; }

  .hero { padding: 88px 0 calc(108px + var(--clip)); }
  .hero__h1 { font-size: clamp(40px, 11vw, 64px); margin-bottom: 28px; }
  .hero__sub { font-size: 12px; letter-spacing: 0.14em; margin-bottom: 36px; }
  .hero__stripe { bottom: calc(var(--clip) + 16px); }

  .trust { padding: calc(56px + var(--clip)) 0 calc(56px + var(--clip)); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .trust__item { padding-left: 14px; }

  .band { grid-template-columns: 1fr; min-height: auto; }
  .band--photo-left .band__text  { order: 2; }
  .band--photo-left .band__photo { order: 1; }
  .band__text { padding: 56px 24px calc(48px + var(--clip)); }
  .band__photo, .band__photo img { min-height: 280px; }

  .about { padding: calc(72px + var(--clip)) 0 calc(72px + var(--clip)); }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__photo, .about__photo img { min-height: 280px; }
  .about__stats { grid-template-columns: 1fr; gap: 16px; }

  .promise { padding: calc(72px + var(--clip)) 0 calc(72px + var(--clip)); }
  .promise__title { margin-bottom: 40px; }
  .promise__item { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .promise__num { font-size: 64px; }
  .promise__body { padding-top: 0; }

  .reviews { padding: calc(72px + var(--clip)) 0 calc(72px + var(--clip)); }
  .reviews__grid { grid-template-columns: 1fr; }

  .contact { padding: calc(72px + var(--clip)) 0 calc(64px + var(--clip)); }
  .contact__card { padding: 40px 24px; max-width: 100%; }
  .form__row { grid-template-columns: 1fr; }
  .toggles { grid-template-columns: 1fr; }
  .segments { grid-template-columns: repeat(2, 1fr); border: 1px solid var(--green); }
  .segment { border-right: 1px solid var(--green); border-top: 1px solid var(--green); }
  .segment:nth-child(odd) { border-right: 1px solid var(--green); }
  .segment:nth-child(-n+2) { border-top: 0; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 16px 24px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__base-inner { flex-direction: column; gap: 6px; padding: 16px; }
}

@media (max-width: 480px) {
  .hero__h1 { font-size: 44px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .footer__cols { grid-template-columns: 1fr; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- Print ---------- */
@media print {
  .nav, .hero__stripe, .footer__base { display: none; }
  .hero, .trust, .services, .about, .promise, .reviews, .contact, .footer {
    clip-path: none; margin: 0; padding: 24px 0;
  }
  body { background: white; color: black; }
}
/* ====================================================================
   IMAGE MARQUEE — Pink's-style infinite horizontal scroll
   Append to /styles.css (or inject inline before deploy)
   ==================================================================== */

.marquee-section {
  background: var(--asphalt);
  color: var(--white);
  padding: calc(96px + var(--clip)) 0 96px;
  margin-top: calc(var(--clip) * -1);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip)), 0 100%);
  position: relative;
  overflow: hidden;
}
.marquee-section::before {
  content: "";
  position: absolute;
  top: var(--clip);
  left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
}
.marquee-section__head {
  text-align: center;
  margin-bottom: 48px;
}
.marquee-section__title {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 12px 0 16px;
  color: var(--white);
}
.marquee-section__sub {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--cream);
  opacity: 0.85;
  margin: 0;
}

/* The scrolling viewport */
.marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

/* The animated track */
.marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
  will-change: transform;
}
/* Hover-pause removed per operator (spec-03 §2). Focus-within retained for keyboard users. */
.marquee:focus-within .marquee__track,
.marquee[data-paused="true"] .marquee__track {
  animation-play-state: paused;
}
/* Marquee pause/play toggle — WCAG 2.2.2 pause mechanism */
.marquee-toggle {
  position: absolute;
  right: 24px; bottom: 12px;
  z-index: 5;
  width: 40px; height: 40px;
  border: 1px solid rgba(241,237,227,0.35);
  border-radius: 999px;
  background: rgba(44,44,44,0.72);
  color: var(--cream);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.marquee-toggle:hover, .marquee-toggle:focus-visible {
  background: var(--asphalt);
  border-color: var(--yellow);
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
.marquee-toggle svg { width: 16px; height: 16px; fill: currentColor; }
.marquee-toggle .icon-play { display: none; }
.marquee-toggle[aria-pressed="true"] .icon-pause { display: none; }
.marquee-toggle[aria-pressed="true"] .icon-play { display: block; }
.marquee-section { position: relative; }

.marquee__item {
  flex: 0 0 auto;
  width: 360px;
  margin: 0;
  position: relative;
}
.marquee__item img,
.marquee__item picture {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.marquee__item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(241, 237, 227, 0.08);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .marquee__item { width: 280px; }
  .marquee__item img { height: 180px; }
  .marquee__track { animation-duration: 35s; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .marquee__item { scroll-snap-align: start; }
  .marquee {
    -webkit-mask-image: none;
            mask-image: none;
  }
}

/* --- Pink's-style responsive tightening for tightening pass --- */
@media (max-width: 900px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .promise__grid { grid-template-columns: 1fr; gap: 48px; }
  .promise__card { text-align: left; }
  .promise__icon { margin-left: 0; margin-right: 0; }
  .believe__h { font-size: clamp(40px, 9vw, 64px); }
}
@media (max-width: 560px) {
  .trust__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ==========================================================================
   WS-5 — REVIEWS (Path B: from-customers, no Google chrome)
   Lifted card design from nexsites landing, remapped to Lonesome tokens.
   ========================================================================== */
.reviews-ll {
  background: var(--cream);
  padding: calc(96px + var(--clip)) 0 96px;
  margin-top: calc(var(--clip) * -1);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip)), 0 100%);
  position: relative;
}
.reviews-ll__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.reviews-ll__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 12px 0 16px;
  color: var(--green-dark);
}
.reviews-ll__sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--asphalt);
  margin: 0;
  opacity: 0.85;
}
.reviews-ll__scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 28px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: var(--max);
  margin: 0 auto;
}
.reviews-ll__scroller::-webkit-scrollbar { display: none; }

/* Scroll affordance for the reviews rail — the scrollbar is hidden above, so
   without these there is nothing indicating 10 cards exist. Supplementary only:
   the rail is role="region" tabindex="0" and scrolls by keyboard regardless. */
.reviews-ll__controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 4px 0 0;
}
.reviews-ll__nav {
  width: 48px; height: 48px;              /* >=44px tap target */
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--green);
  border-radius: 2px;
  transition: background 0.15s, color 0.15s, border-color 0.15s, opacity 0.15s;
}
.reviews-ll__nav:hover {
  background: var(--green); color: var(--white);
}
.reviews-ll__nav:focus-visible {
  outline: 3px solid var(--orange); outline-offset: 2px;
}
/* Dimmed at the ends, never disabled — a disabled button drops out of the tab
   order mid-interaction, which is worse than a button that does nothing. */
.reviews-ll__nav.is-spent { opacity: 0.35; }

@media (hover: none) and (pointer: coarse) {
  /* Touch: swiping the rail is the obvious gesture; arrows just take up room. */
  .reviews-ll__controls { display: none; }
}
.reviews-ll__card {
  flex: 0 0 360px;
  min-width: 360px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid #E8E4D8;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.reviews-ll__card[data-placeholder="true"] {
  border-style: dashed;
  opacity: 0.85;
}
.reviews-ll__stars {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.reviews-ll__text {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.reviews-ll__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.reviews-ll__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
}
.reviews-ll__attr { display: flex; flex-direction: column; gap: 2px; }
.reviews-ll__name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.reviews-ll__location {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  color: var(--asphalt);
  opacity: 0.7;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 560px) {
  .reviews-ll__card { flex: 0 0 88%; min-width: 88%; }
  .reviews-ll__scroller { padding: 8px 16px 24px; }
}

/* --- Reviews: owner responses, aggregate line, Google link (spec-06 §5/§6) --- */
.reviews-ll__response {
  border-left: 3px solid var(--green);
  padding: 2px 0 2px 14px;
  margin: -2px 0 2px;
}
.reviews-ll__response-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 6px;
}
.reviews-ll__response-text {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--asphalt);
  opacity: 0.82;
  margin: 0;
}
.reviews-ll__agg {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  color: var(--asphalt);
  margin: 0 0 10px;
}
.reviews-ll__agg strong { color: var(--green-dark); font-size: 18px; }
.reviews-ll__more {
  text-align: center;
  margin: 8px 0 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.reviews-ll__more a {
  color: var(--green-dark);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 3px;
  transition: color 0.15s, border-color 0.15s;
}
.reviews-ll__more a:hover,
.reviews-ll__more a:focus-visible { color: var(--orange); border-color: var(--green-dark); outline: none; }
.reviews-ll__scroller:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
/* cards carrying an owner response run taller — keep the carousel honest on mobile */
@media (max-width: 560px) {
  .reviews-ll__card { flex: 0 0 86%; min-width: 86%; }
}


/* ==========================================================================
   2026-09-02 LAUNCH-AUDIT ADDITIONS (SOP §5d/§8b/§9/§10c)
   ========================================================================== */

/* Keyboard focus ring visible on EVERY background: asphalt outline + white
   inner ring. The earlier :focus-visible rules signalled focus by colour
   change alone (outline:none), which fails WCAG 2.4.7 / 2.4.11. */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--asphalt) !important;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--white) !important;
}
/* The skip link is positioned off-canvas until focused — keep its own reveal. */
.skip:focus-visible { outline-offset: 0; }

/* Mobile drawer height must track the *dynamic* viewport (URL bar chrome). */
.nav__mobile { max-height: calc(100dvh - 75px); }

/* Sticky mobile action bar — Call · Email · Quote (SOP §8b mandatory ≤768px). */
.mbar { display: none; }
@media (max-width: 768px) {
  .mbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    display: grid; grid-template-columns: 1fr 1fr 1.35fr;
    background: var(--green-dark);
    border-top: 3px solid var(--yellow);
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.18);
  }
  .mbar a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 56px;
    font-family: 'IBM Plex Sans', sans-serif; font-weight: 700; font-size: 14px;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--white); text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  .mbar a:last-child { border-right: 0; background: var(--orange); color: var(--asphalt); }
  .mbar a:hover, .mbar a:focus-visible { background: var(--green); }
  .mbar a:last-child:hover, .mbar a:last-child:focus-visible { background: var(--orange-dark); color: var(--white); }
  .mbar svg { width: 18px; height: 18px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }
  body.menu-open .mbar { display: none; }
}
@media (max-width: 768px) and (max-height: 480px) and (orientation: landscape) {
  .mbar { display: none; }
  body { padding-bottom: 0; }
}

/* Tap targets ≥ 44px on touch layouts (SOP §8b / Lighthouse tap-targets). */
@media (max-width: 768px) {
  .btn, .nav__cta { min-height: 44px; }
  .marquee-toggle { width: 44px; height: 44px; }
  .band__more { display: inline-flex; align-items: center; min-height: 44px; }
  .footer__col a, .footer__base a, .privacy__contact a, .privacy__block p a { display: inline-block; padding: 10px 0; }
  .nav__mobile a { min-height: 48px; display: flex; align-items: center; }
}
/* Inline form status (rendered by the shared page script on ?error=verify). */
.form__status {
  margin: 0 0 20px; padding: 14px 16px; border-left: 4px solid #B42318; background: #FDECEA;
  font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; font-size: 15px; line-height: 1.5; color: #7A1C14;
}
/* 2026-09-02 pass 2 — remaining sub-44px targets on thanks/404 + footer link rows */
@media (max-width: 768px) {
  .footer__col a, .footer__base a { padding: 12px 0; }
  .nf__links a, .thx__phone a { display: inline-block; padding: 11px 6px; }
}
/* 2026-09-02 pass 3 — standalone text links that act as buttons get a 44px hit area
   on touch layouts (inline prose links are exempt under WCAG 2.5.8 and left alone). */
@media (max-width: 768px) {
  .seasonal__more, .location__more, .band__more,
  .reviews-ll__more a, .marquee-section__sub a, .cta-bottom__phone a {
    display: inline-flex; align-items: center; min-height: 44px;
  }
  .footer__col a { display: inline-flex; align-items: center; min-height: 44px; padding: 0; }
}
/* 2026-09-02 pass 4 — last standalone targets: footer legal row, standalone tel/mailto lines, thanks/404 link rows */
@media (max-width: 768px) {
  .footer__base a, .thx__phone a, .nf__links a,
  main p > a[href^="tel:"], main p > a[href^="mailto:"] {
    display: inline-flex; align-items: center; min-height: 44px;
  }
  .footer__base a { padding: 0 2px; }
  .footer__base-inner p { line-height: 1.2; }
}
