/* ============================================================
   SEABASS LAWN CARE — site.css
   Light, premium, green-forward. Crisp/intentional (no blur blobs).
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --paper:    #F7F8F3;
  --paper-2:  #FFFFFF;
  --sand:     #EEF1E7;
  --ink:      #16261C;
  --body:     #45524A;
  --muted:    #6B776F;
  --line:     #E3E7DD;

  --turf:     #1E7B3C;
  --turf-600: #17672F;
  --turf-700: #0F4E23;
  --forest:   #0E2A1A;
  --forest-2: #123522;

  --amber:    #F2A63B;
  --gold:     #F5B301;

  --nav-h: 78px;
  --page-max: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(16, 38, 24, 0.06);
  --shadow-md: 0 14px 34px rgba(16, 38, 24, 0.12);
  --shadow-lg: 0 26px 60px rgba(10, 32, 20, 0.22);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--body);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--turf); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--turf); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--page-max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(72px, 9vw, 128px) 0; }

.kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--turf); margin-bottom: 14px;
}
.kicker-light { color: #BFE6C7; }
.h2 {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.85rem); line-height: 1.08;
  letter-spacing: -0.02em; color: var(--ink);
}
.h2-light { color: #fff; }
.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 60px); }
.section-intro { margin-top: 16px; font-size: 1.08rem; color: var(--muted); max-width: 60ch; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.98rem;
  letter-spacing: 0.005em; border: 2px solid transparent;
  transition: background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
  will-change: transform;
}
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-solid { background: var(--turf); color: #fff; box-shadow: 0 8px 20px rgba(30, 123, 60, 0.28); }
.btn-solid:hover, .btn-solid:focus-visible { background: var(--turf-600); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(30, 123, 60, 0.36); }
.btn-ghost-light { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.75); backdrop-filter: blur(2px); }
.btn-ghost-light:hover, .btn-ghost-light:focus-visible { background: #fff; color: var(--turf-700); border-color: #fff; transform: translateY(-2px); }
.btn-ghost-solid { background: #fff; color: var(--turf-700); border-color: var(--turf); box-shadow: var(--shadow-md); }
.btn-ghost-solid:hover, .btn-ghost-solid:focus-visible { background: var(--turf); color: #fff; transform: translateY(-2px); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.96rem;
  color: var(--turf-700);
}
.arrow-link .arr { transition: transform .22s var(--ease); }
.arrow-link:hover .arr, .arrow-link:focus-visible .arr { transform: translateX(4px); }
.arrow-link-light { color: #fff; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* noise overlay (prevents flat-dark-color dither hairline) */
.noise-overlay {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  position: absolute; inset: 0; pointer-events: none; opacity: 0.035; mix-blend-mode: overlay;
}

/* ---------- Brand logo lockup ---------- */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 40px; height: 40px; flex: none; color: var(--turf); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.32rem;
  letter-spacing: -0.02em; color: var(--ink);
}
.brand-tag {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.6rem;
  text-transform: uppercase; letter-spacing: 0.34em; color: var(--turf); margin-top: 3px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background-color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.nav-inner { width: 100%; max-width: var(--page-max); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* brand hidden while transparent over hero; joins the bar once solid */
.nav-brand { opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility 0s linear .3s; }
.nav--solid .nav-brand { opacity: 1; visibility: visible; transition: opacity .3s var(--ease); }
.nav--solid { background: rgba(247, 248, 243, 0.94); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom-color: var(--line); box-shadow: 0 6px 22px rgba(16,38,24,0.06); }

.nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-link {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem; color: #fff;
  text-shadow: 0 1px 10px rgba(9, 26, 16, 0.55); transition: color .2s var(--ease), opacity .2s var(--ease);
}
.nav-link:hover, .nav-link:focus-visible { opacity: 0.75; }
.nav--solid .nav-link { color: var(--ink); text-shadow: none; }
.nav--solid .nav-link:hover, .nav--solid .nav-link:focus-visible { color: var(--turf); opacity: 1; }
.nav-cta { color: #fff !important; text-shadow: none; }
.nav--solid .nav-cta { color: #fff !important; }

.menu-btn { display: none; width: 46px; height: 46px; position: relative; background: transparent; border: 0; }
.menu-btn .bar { position: absolute; left: 11px; right: 11px; height: 2px; border-radius: 2px; background: #fff;
  box-shadow: 0 1px 6px rgba(9,26,16,0.5); transition: transform .3s var(--ease), opacity .25s var(--ease), background-color .25s; }
.nav--solid .menu-btn .bar { background: var(--ink); box-shadow: none; }
.menu-btn .bar:nth-child(1) { top: 16px; }
.menu-btn .bar:nth-child(2) { top: 22px; }
.menu-btn .bar:nth-child(3) { top: 28px; }
.menu-btn[aria-expanded="true"] .bar { background: var(--ink); box-shadow: none; }
.menu-btn[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 95; background: linear-gradient(180deg, #123522, #0E2A1A);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.4rem; color: #fff; }
.mobile-menu a.btn { font-size: 1.05rem; margin-top: 8px; }
.mobile-menu a:not(.btn):hover { color: var(--amber); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; overflow: visible; isolation: isolate; background: var(--forest); }
.hero-media { position: absolute; top: 0; left: 0; right: 0; height: 100svh; overflow: hidden; z-index: 0; }
.hero-media video, .hero-media .hero-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 62%;
  opacity: 0; transition: opacity 1s ease;
}
.hero-media video.active, .hero-media .hero-poster.active { opacity: 1; }

/* brand-green readability wash on the LEFT only — video stays clear on the right */
.hero-wash { position: absolute; top: 0; left: 0; right: 0; height: 100svh; z-index: 1; pointer-events: none;
  background:
    linear-gradient(96deg, rgba(9, 26, 16, 0.82) 0%, rgba(11, 32, 20, 0.55) 34%, rgba(11, 32, 20, 0.12) 52%, rgba(11,32,20,0) 66%),
    linear-gradient(0deg, rgba(9,26,16,0.42) 0%, rgba(9,26,16,0) 26%);
}

.hero-brand { position: absolute; z-index: 3; top: calc((var(--nav-h) - 44px) / 2 + 4px);
  left: calc(max((100% - var(--page-max)) / 2, 0px) + var(--gutter)); }
.hero-brand .brand-mark { width: 44px; height: 44px; color: #fff; }
.hero-brand .brand-name { color: #fff; text-shadow: 0 2px 14px rgba(9,26,16,0.5); }
.hero-brand .brand-tag { color: #CDEBD4; }

.hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--page-max); margin-inline: auto;
  padding: calc(var(--nav-h) + 30px) var(--gutter) 46px;
  min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1fr) 430px;
  gap: clamp(32px, 5vw, 76px); align-items: center;
}
.hero-copy { color: #fff; max-width: 640px; }
.hero-eyebrow { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.14em; color: #CDEBD4; margin-bottom: 18px;
  text-shadow: 0 1px 10px rgba(9,26,16,0.4); }
.hero-title { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.02; letter-spacing: -0.025em; color: #fff; text-shadow: 0 3px 26px rgba(9,26,16,0.45); }
.hero-sub { margin-top: 20px; font-size: 1.12rem; line-height: 1.6; color: rgba(255,255,255,0.92); max-width: 52ch;
  text-shadow: 0 1px 12px rgba(9,26,16,0.4); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* trust badges */
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.badge { display: inline-flex; align-items: center; gap: 11px; padding: 10px 15px;
  background: rgba(255, 255, 255, 0.96); border-radius: 12px; box-shadow: var(--shadow-md); }
.badge-g { width: 26px; height: 26px; flex: none; }
.badge-ico { width: 24px; height: 24px; flex: none; color: var(--turf); }
.badge-text { display: flex; flex-direction: column; line-height: 1.12; }
.badge-top { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.94rem; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.badge-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; }
.badge-sub { font-size: 0.74rem; color: var(--muted); font-weight: 500; }

/* quote box — straddles hero + services */
.quote-box {
  align-self: end; z-index: 5; width: 100%;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(22px, 2vw, 30px); box-shadow: var(--shadow-lg);
  margin-bottom: calc(-1 * var(--q-overlap, 0px) - 46px);
}
/* desktop: pull the quote box down so it straddles hero + services */
@media (min-width: 861px) { .quote-box { --q-overlap: 64px; } }
.quote-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--ink); letter-spacing: -0.01em; }
.quote-sub { margin-top: 4px; font-size: 0.92rem; color: var(--muted); margin-bottom: 16px; }
.field { margin-bottom: 12px; }
.field label { display: block; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); margin-bottom: 6px; }
.field .opt { color: var(--muted); font-weight: 500; letter-spacing: 0.02em; text-transform: none; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 0.98rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 10px; padding: 11px 13px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 52px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--turf); box-shadow: 0 0 0 3px rgba(30,123,60,0.14); }
.field input.field-error, .field select.field-error { border-color: #d1462f; box-shadow: 0 0 0 3px rgba(209,70,47,0.14); }
.quote-box .btn-block { margin-top: 6px; }
.quote-status { font-size: 0.85rem; color: var(--turf-700); margin-top: 10px; min-height: 1.2em; }
.quote-status a { color: var(--turf-700); font-weight: 600; text-decoration: underline; }
.quote-alt { font-size: 0.85rem; color: var(--muted); margin-top: 10px; text-align: center; }
.quote-alt a { color: var(--turf-700); font-weight: 600; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--paper); padding-top: clamp(96px, 12vw, 168px); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #cfe0c8; }
.service-media { aspect-ratio: 3 / 2; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.05); }
.service-body { padding: 22px 22px 24px; }
.service-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.24rem; color: var(--ink); letter-spacing: -0.01em; }
.service-body p { margin: 9px 0 15px; font-size: 0.98rem; color: var(--body); }

/* ============================================================
   ABOUT — scenic image band
   ============================================================ */
.about { position: relative; min-height: 84svh; display: flex; align-items: center; overflow: hidden; background: var(--forest); }
.about-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.about-wash { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(92deg, rgba(9,26,16,0.9) 0%, rgba(11,32,20,0.72) 40%, rgba(11,32,20,0.2) 66%, rgba(11,32,20,0) 82%); }
.about-inner { position: relative; z-index: 2; padding-block: clamp(64px, 8vw, 104px); }
.about-content { max-width: 620px; }
.about-copy { margin-top: 18px; font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,0.9); }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; margin: 26px 0 30px; }
.about-points li { display: flex; align-items: center; gap: 10px; font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 1rem; color: #fff; }
.about-points svg { width: 22px; height: 22px; flex: none; color: var(--amber); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--sand); padding-bottom: clamp(56px, 7vw, 92px); }
.gallery-viewport { margin-top: 6px; }
.gallery-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px var(--gutter) 20px; scroll-padding-left: var(--gutter);
  scrollbar-width: none; -ms-overflow-style: none; }
.gallery-track::-webkit-scrollbar { display: none; }
.shot { flex: 0 0 clamp(280px, 42vw, 520px); scroll-snap-align: start; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; background: #ddd; }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.gallery-controls { display: flex; gap: 12px; margin-top: 22px; }
.round-btn { width: 52px; height: 52px; border-radius: 50%; background: var(--paper-2); border: 1.5px solid var(--line);
  color: var(--ink); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
  transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease); }
.round-btn svg { width: 22px; height: 22px; }
.round-btn:hover { background: var(--turf); color: #fff; border-color: var(--turf); transform: translateY(-2px); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--paper); }
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px;
  margin-bottom: clamp(30px, 4vw, 48px); }
.rating-lockup { display: inline-flex; align-items: center; gap: 14px; background: var(--sand);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 20px; }
.rating-g { width: 34px; height: 34px; flex: none; }
.rating-num { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--ink);
  display: flex; align-items: baseline; gap: 10px; line-height: 1; }
.rating-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.rating-cap { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

.review-feature { position: relative; background: linear-gradient(120deg, var(--turf-700), var(--turf));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); margin-bottom: 26px;
  box-shadow: var(--shadow-md); }
.review-feature p { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.3; letter-spacing: -0.01em; }
.review-feature cite { display: block; margin-top: 14px; font-style: normal; font-weight: 600; color: #CDEBD4; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); }
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 12px; }
.review-card blockquote { font-size: 1.02rem; color: var(--body); line-height: 1.6; }
.review-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; flex: none; display: inline-flex;
  align-items: center; justify-content: center; background: var(--turf); color: #fff;
  font-family: 'Outfit', sans-serif; font-weight: 800; }
.review-who { display: flex; flex-direction: column; line-height: 1.25; }
.review-name { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--ink); }
.review-meta { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--sand); }
.faq-inner { max-width: 860px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 4px; position: relative;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.12rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  margin-top: -7px; border-right: 2.4px solid var(--turf); border-bottom: 2.4px solid var(--turf);
  transform: rotate(45deg); transition: transform .25s var(--ease); }
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-a { padding: 0 44px 22px 4px; }
.faq-a p { color: var(--body); font-size: 1rem; }
.faq-a a { color: var(--turf-700); font-weight: 600; text-decoration: underline; }

/* ============================================================
   CTA — background-video band
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: var(--forest); }
.cta-band video, .cta-band .cta-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 70%; }
.cta-wash { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(9,26,16,0.82) 4%, rgba(11,32,20,0.32) 46%, rgba(11,32,20,0.08) 100%); }
.cta-content { position: relative; z-index: 2; padding-block: clamp(88px, 12vw, 150px); max-width: 760px; }
.cta-title { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.06; letter-spacing: -0.025em; color: #fff; text-shadow: 0 2px 22px rgba(9,26,16,0.4); }
.cta-sub { margin-top: 16px; font-size: 1.14rem; color: rgba(255,255,255,0.92); max-width: 54ch; text-shadow: 0 1px 12px rgba(9,26,16,0.4); }
.cta-ctas { margin-top: 30px; }

/* ============================================================
   FOOTER  (flat-dark → gradient + noise to kill dither hairline)
   ============================================================ */
.footer { position: relative; background: linear-gradient(180deg, #123522, #0E2A1A); color: rgba(255,255,255,0.78);
  padding: clamp(56px, 7vw, 84px) 0 30px; overflow: hidden; }
.footer-inner { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brandmark .brand-mark { width: 40px; height: 40px; color: #fff; }
.footer-brandmark .brand-name { color: #fff; }
.footer-brandmark .brand-tag { color: #9FD3AB; }
.footer-blurb { margin-top: 16px; font-size: 0.96rem; max-width: 38ch; color: rgba(255,255,255,0.72); }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col span { font-size: 0.96rem; color: rgba(255,255,255,0.74); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  margin-top: clamp(40px, 5vw, 60px); padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* ============================================================
   MOBILE STICKY CTA — two floating buttons (no panel)
   ============================================================ */
.sticky-cta { display: none; position: fixed; z-index: 90; left: 14px; right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px)); gap: 12px;
  transform: translateY(160%); opacity: 0; transition: transform .35s var(--ease), opacity .3s var(--ease); pointer-events: none; }
.sticky-cta.show { transform: none; opacity: 1; pointer-events: auto; }
.sticky-cta .btn { flex: 1; padding: 15px 10px; font-size: 1.02rem; box-shadow: var(--shadow-lg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr) 380px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }

  .hero { min-height: 100svh; }
  .hero-media, .hero-wash { height: 100%; }
  .hero-media video, .hero-media .hero-poster { object-position: 58% center; }
  /* mobile: keep the TOP clear so the action shows the instant the site opens;
     darken only the bottom, where the text sits. */
  .hero-wash { background:
    linear-gradient(180deg, rgba(9,26,16,0.14) 0%, rgba(9,26,16,0.04) 26%, rgba(9,26,16,0.4) 60%, rgba(9,26,16,0.82) 100%); }
  .hero-inner { grid-template-columns: 1fr; align-items: start; gap: 18px;
    padding: 0 var(--gutter) 36px; }
  /* hero copy fills the first screen with content pinned to the bottom —
     the upper band stays a clear, animated action shot. */
  .hero-copy { max-width: none; min-height: calc(100svh - 34px);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding-top: calc(var(--nav-h) + 20px); }
  .hero-eyebrow { margin-bottom: 12px; }
  .quote-box { align-self: auto; margin-bottom: 0; max-width: 560px; }
  .hero-brand .brand-mark { width: 40px; height: 40px; }

  .review-grid { grid-template-columns: 1fr; }
  .reviews-head { align-items: flex-start; }

  .sticky-cta { display: flex; }
}

@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .hero-title { font-size: clamp(2.3rem, 10vw, 3rem); }
  .hero-ctas .btn { flex: 1; }
  .brand-name { font-size: 1.2rem; }
}

/* fold-fit safety for very short/landscape screens */
@media (max-width: 860px) and (min-height: 620px) {
  .hero-inner { align-items: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
