/* ==========================================================================
   702 Turf Cleaning — v2 Editorial
   Palette + tokens
   ========================================================================== */
:root {
  --bg: #0c0e0c;
  --bg-2: rgba(20, 24, 20, 0.5);
  --paper: #f4efe6;
  --ink: #ecece4;
  --ink-dim: #8a8d83;
  --accent: #b6ff5c;
  --accent-deep: #6db834;
  --accent-cyan: #51d7ff;
  --accent-sunset: #ff7a8a;
  --gold: #c9a86a;
  --line: rgba(236, 236, 228, 0.10);
  --line-strong: rgba(236, 236, 228, 0.22);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --header-height: 76px;
  --container-pad: 32px;
  --container-max: 1320px;
  --container-padding: clamp(1rem, 4vw, 2rem);
  --sticky-cta-height: 4.5rem; /* 72px — used by .mobile-call-bar min-height */
}

@media (max-width: 700px) {
  :root { --container-pad: 20px; }
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
/* Frame lock — html-only overflow safety net.
   `clip` (not `hidden`) chosen deliberately: clip does NOT establish a new
   scroll container, so it does not break `position: sticky` on the
   .site-header (well-known iOS Safari bug with overflow-x: hidden on body).
   Applied to <html> only — never to <body> — for the same reason. */
html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg, video, iframe { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, p, ul, ol, dl, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

/* Focus rings */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

::selection { background: var(--accent-sunset); color: #0c0e0c; }

/* ==========================================================================
   Layout primitives
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.container-tight { max-width: 1080px; }

.section-pad { padding: clamp(24px, 4vw, 44px) 0; }
@media (min-width: 900px) { .section-pad { padding: clamp(32px, 4vw, 48px) 0; } }
/* Hero overrides .section-pad with its own padding rule (top: 0, bottom:
   80/100). Packages, Quote, FAQ all use .section-pad and got tightened
   ~30-40% from the previous 100/120 values per spec 2F. */

section { position: relative; }

/* Reveal-on-scroll */
.reveal { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s ease; }
.reveal.is-waiting { opacity: 0; transform: translateY(18px); }
.reveal.is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-waiting, .reveal.is-revealed { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Typography helpers
   ========================================================================== */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144;
}
.serif { font-family: var(--font-display); font-weight: 400; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.eyebrow::before { content: '—'; color: var(--accent); }
.eyebrow-stack { margin-top: 18px; }
.eyebrow-center { display: inline-flex; justify-content: center; }

.num-accent {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 30px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  white-space: nowrap;
  text-align: center;
}
.btn-primary { background: var(--paper); color: #0c0e0c; }
.btn-primary:hover { background: var(--accent); }
.btn-ghost { color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--paper); }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70; /* Frame lock — must sit above .mobile-call-bar (z-index: 60) */
  width: 100%;
  overflow-x: clip;
  background: rgba(12, 14, 12, 0.78);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: var(--header-height);
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.35vw, 21px);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand-text,
.foot-mark-text {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  white-space: nowrap;
}
.brand-num {
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
}
.brand-name {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(182, 255, 92, 0.18);
}
.brand-llc {
  color: rgba(236, 236, 228, 0.78);
  font-family: var(--font-body);
  font-size: 0.56em;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.site-nav {
  display: none;
  gap: 36px;
  font-size: 13px;
  color: var(--ink-dim);
  justify-content: center;
}
.site-nav a {
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
@media (min-width: 980px) { .site-nav { display: flex; } }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-call,
.header-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.header-call {
  background: var(--accent);
  border-color: var(--accent);
  color: #0c0e0c;
}
.header-quote {
  background: rgba(20, 24, 20, 0.5);
  color: var(--ink);
}
.header-call:hover,
.header-call:focus-visible {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #ffffff;
}
.header-quote:hover,
.header-quote:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}
.header-call-label {
  display: inline;
}
.header-call-num {
  margin-left: 4px;
}
.header-quote-full {
  display: none;
}
@media (min-width: 700px) {
  .header-quote-short {
    display: none;
  }
  .header-quote-full {
    display: inline;
  }
}
@media (max-width: 759px) {
  :root {
    --header-height: 74px;
  }
  .header-inner {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-content: center;
    gap: 5px;
  }
  .brand {
    flex: 0 1 auto;
    min-width: 0;
    gap: 5px;
    font-size: clamp(9.2px, 2.6vw, 10.8px);
  }
  .brand img {
    width: 31px;
    height: 31px;
    flex: 0 0 auto;
  }
  .brand-text {
    gap: 2px;
  }
  .brand-llc {
    font-size: 0.52em;
    letter-spacing: 0.04em;
  }
  .header-actions {
    flex: 0 0 auto;
    justify-self: end;
    gap: 5px;
  }
  .header-call,
  .header-quote {
    min-height: 32px;
    font-size: clamp(9px, 2.5vw, 10.5px);
    letter-spacing: 0.01em;
  }
  .header-call {
    padding: 0 8px;
    background: var(--accent);
    border-color: var(--accent);
    color: #0c0e0c;
  }
  .header-call-label {
    display: none;
  }
  .header-call-num {
    color: inherit;
    margin-left: 0;
  }
  .header-call:hover,
  .header-call:focus-visible {
    background: var(--accent-deep);
    border-color: var(--accent-deep);
    color: #ffffff;
  }
  .header-call:hover .header-call-num,
  .header-call:focus-visible .header-call-num {
    color: inherit;
    text-decoration: none;
  }
  .header-quote {
    padding: 0 7px;
  }
}
@media (max-width: 360px) {
  :root {
    --container-pad: 12px;
  }
  .brand {
    gap: 4px;
    font-size: 8.5px;
  }
  .brand img {
    width: 26px;
    height: 26px;
  }
  .header-call,
  .header-quote {
    min-height: 30px;
    font-size: 8.5px;
  }
  .header-call {
    padding: 0 6px;
  }
  .header-quote {
    padding: 0 5px;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 0 0 80px;
  position: relative;
  overflow: hidden;
  /* padding-top intentionally 0 — full-bleed cinematic image sits flush
     under the sticky header. safe-area-inset-top is moot here because the
     header already absorbs the iOS notch. The text block below the image
     gets its own top breathing room from .hero-text margin (eyebrow
     default). Restored from the previous `padding-top: max(safe-area, 60px)`
     which left ~150px gutter between header and image after the picture
     was lifted out of .container in commit eafea6a. */
  min-height: calc(100dvh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width: 1000px) { .hero { padding: 0 0 100px; } }

.hero-headline {
  font-size: clamp(44px, 6vw, 80px);
  margin: 26px 0 28px;
  color: var(--ink);
}
/* Three-line lockup: each <span class="line"> renders on its own line so
   "Las Vegas" can never split across line breaks at any viewport width.
   "Turf Cleaning." may still wrap internally on extreme narrow widths
   (~320px) — acceptable per spec 1A. */
.hero-headline .line {
  display: block;
}
.hero-headline .it {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.hero-lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 520px;
}

/* Trust strip — single inline line below the lede. Phrases stay nowrap as units;
   the · separator lives in a pseudo-element that allows wrapping AFTER it,
   so a dot can never orphan to the start of a wrapped line at narrow widths. */
.hero-trust {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}
.hero-trust span {
  white-space: nowrap;
}
.hero-trust span:not(:last-child)::after {
  content: " · ";
  white-space: normal;
}

/* Logo stage */
.logo-stage-wrap { display: flex; justify-content: center; }
.logo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(182, 255, 92, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #1a1f1a 0%, #0c0e0c 70%);
  border: 1px solid var(--line);
  overflow: hidden;
}
.logo-frame::before {
  content: '';
  position: absolute;
  left: 50%; top: -10%;
  width: 120%; height: 60%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 240, 0.10) 0%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}
.logo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.logo-frame .corners { position: absolute; inset: 16px; pointer-events: none; }
.logo-frame .corners span {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--accent);
}
.logo-frame .corners span:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.logo-frame .corners span:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.logo-frame .corners span:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.logo-frame .corners span:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.logo-frame picture,
.logo-frame img {
  position: relative;
  z-index: 2;
  width: 88%;
  height: auto;
  margin: 0 auto;
  padding: 6%;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
  mix-blend-mode: screen;
}
.logo-frame picture { display: block; padding: 0; width: 100%; height: 100%; }
.logo-frame picture img { padding: 6%; width: 100%; }

.logo-caption {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.logo-caption .it {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 13px;
  color: var(--ink);
}

/* ==========================================================================
   Section heading
   ========================================================================== */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: end; margin-bottom: 48px; }
}
.section-head .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 5vw, 56px);
  color: var(--accent);
  line-height: 1;
  font-weight: 400;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.section-title em {
  color: var(--accent);
  font-style: italic;
  font-variation-settings: 'opsz' 144;
}

/* ==========================================================================
   Quote form
   ========================================================================== */
.quote-section { background: var(--bg); }
.quote-grid {
  display: block;
  max-width: 640px;
  margin: 0 auto;
}

.quote-form {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  border: 1px solid var(--line-strong);
  background: rgba(20, 24, 20, 0.45);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote-form-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.quote-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 0 0 6px;
}
.quote-form-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
  margin: 0;
}
.quote-estimate {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--accent);
  font-style: italic;
  line-height: 1;
}

.quote-field-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 14px;
  row-gap: 8px;
}
@media (min-width: 700px) { .quote-field-grid { grid-template-columns: 1fr 1fr; } }
.quote-field-wide { grid-column: 1 / -1; }

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quote-form label > span {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}
.quote-form label > span em {
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-dim);
  opacity: 0.8;
  font-size: 11px;
  margin-left: 6px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px; /* iOS no-zoom */
  padding: 8px 0;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.quote-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-dim) 50%),
                    linear-gradient(135deg, var(--ink-dim) 50%, transparent 50%);
  background-position: calc(100% - 14px) 16px, calc(100% - 9px) 16px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.quote-form select option {
  background: var(--bg);
  color: var(--ink);
}
.quote-form textarea {
  resize: vertical;
  min-height: 76px;
  line-height: 1.5;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-bottom-color: var(--accent-cyan);
  box-shadow: 0 1px 0 rgba(81, 215, 255, 0.34);
  outline: none;
}
.quote-form input:focus-visible,
.quote-form select:focus-visible,
.quote-form textarea:focus-visible {
  outline-color: var(--accent-cyan);
}

.quote-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.quote-submit-row .btn {
  min-height: 52px;
  padding-inline: 28px;
}
.quote-call-fallback {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s;
}
.quote-call-fallback:hover { border-bottom-color: var(--accent); }

.quote-form-note {
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  line-height: 1.55;
}
.quote-form-status {
  font-size: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.3);
  color: var(--ink);
}
.quote-form-status.is-success { border-color: var(--accent); color: var(--accent); }
.quote-form-status.is-error { border-color: #ff7a7a; color: #ff9a9a; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
}
details.faq {
  border-bottom: 1px solid var(--line);
}
details.faq:first-child { border-top: 1px solid var(--line-strong); }
details.faq summary {
  padding: 16px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+';
  color: var(--accent);
  font-size: 28px;
  font-weight: 300;
  transition: transform .25s ease;
  line-height: 1;
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq .body {
  padding: 0 0 18px;
  max-width: 720px;
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.55;
}
details.faq .body em {
  color: var(--accent);
  font-style: italic;
  font-family: var(--font-display);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 36px 0 24px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.foot-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .foot-grid { grid-template-columns: 1.4fr 1fr; gap: 36px; }
}
.foot-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}
.foot-mark img { width: 32px; height: 32px; object-fit: contain; }
.foot-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot-col-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 600;
}
.foot-contact-list {
  display: grid;
  gap: 10px;
}
.foot-contact-card {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  background: rgba(20, 24, 20, 0.45);
  border-radius: 14px;
  padding: 12px 14px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.foot-contact-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 600;
}
.foot-contact-value {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 24px);
  line-height: 1.15;
  color: var(--ink);
}
.foot-contact-note {
  font-size: 12px;
  color: rgba(236, 236, 228, 0.7);
  line-height: 1.35;
}
.foot-contact-card:first-child {
  border-color: rgba(182, 255, 92, 0.36);
  background: rgba(182, 255, 92, 0.06);
}
.foot-contact-card:first-child .foot-contact-label {
  color: rgba(182, 255, 92, 0.9);
}
.foot-contact-card:hover,
.foot-contact-card:focus-visible {
  border-color: var(--accent);
  background: rgba(22, 28, 22, 0.75);
  transform: translateY(-1px);
}
.foot-contact-card:hover .foot-contact-value,
.foot-contact-card:focus-visible .foot-contact-value {
  color: var(--accent);
}
.foot-contact-card:focus-visible {
  outline-offset: 2px;
}
@media (min-width: 800px) {
  .foot-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    align-items: center;
    gap: 28px;
  }
  .foot-col {
    justify-self: end;
    width: 100%;
  }
  .foot-contact-list {
    gap: 12px;
  }
  .foot-contact-card {
    padding: 14px 16px;
  }
  .foot-mark {
    gap: 18px;
    font-size: 36px;
  }
  .foot-mark img {
    width: 72px;
    height: 72px;
  }
}
.foot-bot {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}
.foot-bot a:hover { color: var(--accent); }

/* ==========================================================================
   Mobile call bar
   ========================================================================== */
.mobile-call-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 22px;
  min-height: var(--sticky-cta-height);
  background: var(--accent);
  color: #0c0e0c;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--accent-deep);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  pointer-events: none;
}
.mobile-call-bar svg { width: 20px; height: 20px; }
body.show-call-bar .mobile-call-bar:not(.is-hidden) {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 760px) {
  .mobile-call-bar { display: none; }
}

/* ============================================================
   v2 EDITORIAL — MOBILE POLISH PASS
   Single auditable block. Specs 1–12 from the polish-pass brief.
   ============================================================ */

/* Spec #10 (sr-only utility for visually-hidden $250 estimate echo) */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Cinematic hero — full-bleed logo image, edge-to-edge at every viewport.
   History:
     PR #2 introduced the cinematic hero with a CSS mask + max-width: 1000px
     centered, with the .hero-text block pulled up by negative margin
     (-7vw mobile / -3rem ≥1024px) to overlap the mask's fade zone.
     PR #4 follow-up (commit 864640b) removed the mask: the asset has its
     own natural water/lake reflection that blends to dark, and the mask
     was double-fading and clipping the reflection content.
     This commit removes the remaining mask-era artifacts:
       - max-width: 1000px on .hero-cinematic (was visually centering the
         image inside desktop gutters, leaving black bars >1000px)
       - .hero-text negative margin (was overlapping the now-removed fade
         zone, which after the mask removal was just covering the wand
         and the reflection)
     The <picture> is now a direct child of .hero, OUTSIDE the .container
     padding, so it touches both viewport edges at every width. The
     .hero-text block stays inside .container so eyebrow/headline/CTAs
     keep the standard horizontal padding.
     If a hard edge ever appears against the page bg in a future asset
     swap, re-introduce a much later gradient mask stop (e.g. black 92%,
     transparent 100%) rather than restoring the original 70/100.
     The cinematic <img> carries width="1402" height="1122" attrs so
     modern browsers compute aspect-ratio and reserve layout space
     before paint — no wrapper needed for CLS. */
.hero-cinematic {
  display: block;
  width: 100%;
  margin: 0;
}
@media (min-width: 760px) {
  /* Tablet+ cap — full-bleed at 1920px gives a 1536px tall image (1.25:1
     asset), which makes the hero feel oversized. Restore the PR #2
     max-width: 1000px constraint, but only above 760px so mobile stays
     edge-to-edge. Breakpoint matches .mobile-call-bar / .header-call
     hand-off so all three transitions land on the same line. */
  .hero-cinematic {
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  /* Desktop side-by-side — text-left (45%), image-right (55% via flex 1 1 0
     to absorb gap remainder). Source order is now .container before
     .hero-cinematic; flex row renders L→R, no row-reverse needed.
     min-width: 0 on both children defeats default min-content sizing that
     would otherwise let "Dependable" push the text column past 45%. */
  .hero {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
  }
  .hero > .container {
    flex: 0 0 45%;
    max-width: 45%;
    min-width: 0;
  }
  .hero > .hero-cinematic {
    flex: 1 1 0;
    max-width: none;
    margin: 0;
    min-width: 0;
  }
}
.hero-cinematic img {
  display: block;
  width: 100%;
  height: auto;
}
/* Radial feather — dissolves the rectangular asset edges into the dark hero
   background so the logo reads cinematic, not pasted. 75% ellipse with the
   hard core at 55% keeps the diamond + 702 + TURF CLEANING fully crisp;
   only the outer chrome/wand/water edges fall off. Tune the inner stop up
   (e.g. 60%, 65%) if the chrome 702 ever clips on a future asset swap. */
.hero-cinematic img,
.hero-cinematic {
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 55%, transparent 100%);
          mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 55%, transparent 100%);
}
.hero-text {
  position: relative;
  z-index: 2;
}

/* Primary lime CTA */
.btn-primary.btn-lime {
  background: var(--accent);
  color: #0c0e0c;
  text-align: center;
  justify-content: center;
}
.btn-primary.btn-lime:hover,
.btn-primary.btn-lime:focus-visible {
  background: var(--accent-deep);
  color: #ffffff;
}

/* Spec #5 — section chapter numbers (kept for any future numbered section). */
.section-head .num,
.svc-num {
  font-family: var(--font-body);
  letter-spacing: 0.18em;
}
/* Process step Roman numerals stay (i. ii. iii. iv.) — only usage of romans now */

/* Spec #6 — services: badge row only on differentiated services, captions removed
   Empty .svc-meta divs (rows 03, 04, 05) need to not collapse the grid. */
.svc-row .svc-meta:empty {
  display: block;
  min-height: 1px;
}

/* Spec #7 — tighter mobile vertical rhythm */
@media (max-width: 767px) {
  .section-pad {
    padding-block: clamp(18px, 4vw, 32px);
  }
}

/* Spec #8/#9 calculator overrides REMOVED in PR A.
   The prior `input[type="range"]` global block + `.estimate-input-row`
   nowrap rules were patches over the broken row-flex calculator structure.
   The PR A rebuild moves slider styling onto a scoped `.calc-slider`
   class and replaces the row with a `flex-wrap: wrap` `.calc-size-row`
   (no nowrap), which makes these overrides redundant and actively
   harmful (generic input[type=range] styling could leak to other forms;
   .estimate-input-row selectors no longer match any markup). */

/* Spec #12 / Frame lock superseded — footer/FAQ hide the sticky CTA, so a
   persistent body pad created loose blank scroll space at the bottom. */
@media (max-width: 759px) {
  body { padding-bottom: 0; }
}

/* ==========================================================================
   Packages section — Tidy Up + Big Kahuna
   ========================================================================== */
.packages-section {
  background: var(--bg);
  padding-top: clamp(12px, 2vw, 24px);
}
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .packages-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.package-card {
  border: 1px solid var(--line-strong);
  background: rgba(20, 24, 20, 0.45);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.package-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
.package-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
  margin: 0;
}
.package-tagline em {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--accent);
  font-size: 13px;
}
.package-includes {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.package-includes em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.package-recommendation {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink-dim);
  margin: 0;
}
/* Per-card price line. Italic-green Fraunces accent on the dollar value
   (or "Custom" lead) matches the in-card editorial accent already used by
   .package-tagline em / .package-includes em. Sits at the bottom of the
   .package-card flex column with auto top margin so cards with mismatched
   list lengths still align their price rails. */
.package-price {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin: auto 0 0;
  padding-top: 2px;
}
.package-price em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.package-price a {
  color: inherit;
  border-bottom: 1px solid var(--line);
  transition: border-color .2s ease, color .2s ease;
}
.package-price a:hover,
.package-price a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
