/* ============================================================
   LF Builders — handcrafted design system (rebuild 2026)
   Carries the original identity: teal #20a7ad, ink, dot-grid
   paper, Allura script accents, saw-blade reveals, rotating
   border CTAs. One file, no frameworks.
   ============================================================ */

@font-face {
  font-family: "Allura";
  src: url("../../fonts/Allura/Allura-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #20a7ad;
  --brand-dark: #157a7f;
  --brand-deep: #0e5a5e;
  --ink: #080b0d;
  --ink-soft: #2c3438;
  --muted-text: #5a6468;
  --bg: #fff;
  --muted: #f5f7f8;
  --ring: rgba(32, 167, 173, 0.35);
  --line: rgba(8, 11, 13, 0.1);
  --gold: #c98a2b;

  --shadow-sm: 0 6.7px 5.3px rgba(0, 0, 0, 0.03), 0 22.3px 17.9px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 10px 15px rgba(0, 0, 0, 0.08);
  --shadow-pop: 0 18px 45px -28px rgba(8, 11, 13, 0.35), 0 12px 18px -16px rgba(32, 167, 173, 0.34);

  --step--1: clamp(0.78rem, 0.75rem + 0.2vw, 0.86rem);
  --step-0: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  --step-1: clamp(1.05rem, 1rem + 0.6vw, 1.25rem);
  --step-2: clamp(1.25rem, 1.15rem + 1vw, 1.55rem);
  --step-3: clamp(1.55rem, 1.3rem + 1.8vw, 2rem);
  --step-4: clamp(1.95rem, 1.7rem + 2.4vw, 2.7rem);
  --step-5: clamp(2.3rem, 1.9rem + 3.4vw, 3.4rem);

  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-script: "Allura", cursive;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;

  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
  --wrap: 1120px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  /* signature dot-grid paper + teal washes */
  background-image:
    radial-gradient(1px 1px at 16px 16px, rgba(8, 11, 13, 0.08) 1px, transparent 1.5px),
    radial-gradient(1200px 600px at 85% -10%, rgba(32, 167, 173, 0.14) 0%, transparent 60%),
    radial-gradient(900px 500px at -10% 40%, rgba(32, 167, 173, 0.1) 0%, transparent 60%);
  background-size: 32px 32px, auto, auto;
  background-repeat: repeat, no-repeat, no-repeat;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--ink); text-wrap: balance; }
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
p  { max-width: 68ch; }

a { color: var(--brand-dark); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--brand-deep); text-decoration: underline; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: var(--brand); color: #fff; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }

.script-accent {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--brand-dark);
  font-size: 1.45em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-2deg);
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.site-header__brand { display: flex; align-items: center; gap: 0.6rem; }
.site-header__brand img { width: 86px; height: 29px; }

.site-header__tag {
  font-family: var(--font-script);
  color: var(--brand-dark);
  font-size: 1.25rem;
  white-space: nowrap;
}
@media (max-width: 1280px) { .site-header__tag { display: none; } }
@media (min-width: 921px) and (max-width: 1100px) {
  .site-nav a { padding: 0.45rem 0.45rem; font-size: 0.8rem; }
  .site-nav__phone { padding: 0.35rem 0.65rem !important; }
}

.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.site-nav a {
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: var(--step--1);
  white-space: nowrap;
}
.site-nav a:hover { background: var(--muted); color: var(--ink); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--brand-deep); font-weight: 700; }

.site-nav__phone {
  border: 2px solid var(--brand);
  border-radius: 999px !important;
  color: var(--brand-deep) !important;
  font-weight: 700 !important;
  padding: 0.4rem 0.9rem !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  line-height: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    padding: 0.75rem 1rem 1rem;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.7rem 0.8rem; font-size: var(--step-0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: var(--step-0);
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-pop); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); color: #fff; }

.btn--ghost { background: #fff; border-color: var(--brand); color: var(--brand-deep); }
.btn--ghost:hover { background: var(--muted); color: var(--brand-deep); }

.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #1d2428; color: #fff; }

.btn--lg { padding: 1rem 2.1rem; font-size: var(--step-1); }

/* signature rotating-border CTA */
.rotating-border {
  --rb-angle: 0deg;
  position: relative;
  display: inline-block;
  border-radius: 999px;
  padding: 4px;
  background: conic-gradient(from var(--rb-angle), var(--brand), #8ed8db, var(--gold), var(--brand));
  animation: rb-spin 4s linear infinite;
}
@property --rb-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes rb-spin { to { --rb-angle: 360deg; } }
@supports not (background: conic-gradient(from var(--rb-angle), red, blue)) {
  .rotating-border { background: linear-gradient(120deg, var(--brand), var(--gold)); animation: none; }
}
.rotating-border .btn { margin: 0; width: 100%; }

/* gentle hammer wiggle, kept from the original */
.btn--wiggle { animation: slight-wiggle 1.6s linear infinite; }
.btn--wiggle:hover { animation: none; }
@keyframes slight-wiggle {
  0%, 50%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(0.5deg); }
  75% { transform: rotate(-0.5deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
  display: grid;
  align-items: center;
  min-height: clamp(540px, 86svh, 780px);
  background: var(--ink);
}

.hero__media,
.hero__media img,
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 11, 13, 0.55) 0%, rgba(8, 11, 13, 0.65) 60%, rgba(8, 11, 13, 0.82) 100%);
}

.hero .wrap { padding: clamp(3rem, 8vw, 5rem) 0; }

.hero__kicker {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 1rem + 2.4vw, 2.6rem);
  color: #9be3e6;
  display: block;
  margin-bottom: 0.25rem;
  transform: rotate(-2deg);
  transform-origin: left;
}

.hero h1 { color: #fff; max-width: 17ch; }

.hero__sub {
  margin-top: 1rem;
  font-size: var(--step-1);
  color: rgba(255, 255, 255, 0.92);
  max-width: 52ch;
}
.hero__sub a { color: #9be3e6; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; align-items: center; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  margin-top: 1.7rem;
  padding: 0;
  list-style: none;
}
.hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: var(--step--1);
  font-weight: 600;
}
.hero__proof .star { color: #ffd166; }

/* slimmer hero for inner pages */
.hero--inner { min-height: clamp(420px, 62svh, 560px); }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section--muted { background: linear-gradient(180deg, rgba(245, 247, 248, 0.6), rgba(245, 247, 248, 0.95)); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: rgba(255, 255, 255, 0.88); }

.section__head { max-width: 760px; margin-bottom: var(--space-4); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center p { margin-inline: auto; }
.section__head .script-accent { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.4rem); margin-bottom: 0.2rem; }
.section__head p { margin-top: 0.8rem; color: var(--muted-text); }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 1.2rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { font-size: var(--step-1); margin-bottom: 0.4rem; }
.card p { font-size: var(--step--1); color: var(--muted-text); }

.card--service { display: flex; flex-direction: column; overflow: hidden; padding: 0; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.card--service:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.card--service img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.card--service .card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.card--service .card__link { margin-top: auto; font-weight: 700; font-size: var(--step--1); color: var(--brand-deep); }
.card--service .card__link::after { content: " →"; }

.icon-dot {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(32, 167, 173, 0.12);
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}
.icon-dot svg { width: 24px; height: 24px; }

/* numbered process steps */
.steps { counter-reset: step; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); padding: 0; list-style: none; }
.steps li {
  counter-increment: step;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem 1.2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--brand);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.steps h3 { font-size: var(--step-0); margin-bottom: 0.3rem; }
.steps p { font-size: var(--step--1); color: var(--muted-text); }

/* checklists */
.checklist { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.checklist li { padding-left: 1.9rem; position: relative; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.32em;
  width: 1.1rem; height: 1.1rem;
  background: var(--brand);
  border-radius: 50%;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.97 5.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L5.32 9.38a.75.75 0 1 1 1.06-1.06l2.09 2.09 3.5-4.44z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.97 5.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L5.32 9.38a.75.75 0 1 1 1.06-1.06l2.09 2.09 3.5-4.44z"/></svg>') center / contain no-repeat;
}

/* ---------- Stats / trust bar ---------- */
.statbar { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; text-align: center; }
.statbar__num {
  font-size: var(--step-4);
  font-weight: 800;
  color: var(--brand-deep);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.statbar__label { font-size: var(--step--1); color: var(--muted-text); font-weight: 600; }

/* ---------- Galleries ---------- */
.gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(420px, 82%);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--brand) transparent;
}
.gallery > figure {
  scroll-snap-align: start;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery figcaption { padding: 0.6rem 0.9rem; font-size: var(--step--1); color: var(--muted-text); }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(380px, 88%);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0.25rem 0.9rem;
  scrollbar-width: thin;
  scrollbar-color: var(--brand) transparent;
}
.testimonial {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand);
  border-radius: var(--radius);
  padding: 1.3rem 1.3rem 1.1rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.testimonial blockquote { font-style: italic; color: var(--ink-soft); font-size: var(--step-0); }
.testimonial blockquote::before { content: "\201C"; font-family: var(--font-script); font-size: 1.6rem; color: var(--brand); margin-right: 0.15rem; }
.testimonial__stars { color: #f5a623; letter-spacing: 2px; font-size: 1rem; }
.testimonial cite { font-style: normal; font-size: var(--step--1); margin-top: auto; }
.testimonial cite strong { display: block; color: var(--ink); }
.testimonial__source { color: var(--muted-text); }
.testimonial__source--google { color: #1a73e8; font-weight: 600; }
.testimonial__source--homestars { color: #00a05a; font-weight: 600; }

.review-summary { display: flex; flex-wrap: wrap; gap: 1rem; align-items: stretch; margin-bottom: var(--space-3); }
.review-summary__card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.review-summary__rating { font-size: var(--step-3); font-weight: 800; color: var(--ink); }
.review-summary__stars { color: #f5a623; letter-spacing: 2px; }
.review-summary__meta { font-size: var(--step--1); color: var(--muted-text); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.8rem; max-width: 820px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  font-weight: 700;
  font-size: var(--step-0);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--brand);
  flex: 0 0 auto;
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.2rem 1.1rem; color: var(--muted-text); font-size: var(--step--1); }
.faq details > div p { margin-bottom: 0.5rem; }

/* ---------- Forum / community card ---------- */
.forum-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.6rem;
}
.forum-card__head { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.forum-card__head img { height: 34px; width: auto; }
.forum-card__topics { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.forum-card__topics li {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: var(--step--1);
  background: var(--muted);
}
.forum-card__topics a { font-weight: 600; }
.forum-card__topics .meta { color: var(--muted-text); display: block; font-size: 0.8rem; }
.forum-strip {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(120deg, rgba(32, 167, 173, 0.1), rgba(32, 167, 173, 0.03));
  border: 1px dashed var(--ring);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
}
.forum-strip p { font-size: var(--step-0); margin: 0; }
.forum-strip .script-accent { font-size: 1.5rem; }

/* ---------- Service areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; list-style: none; }
.areas li a, .areas li span {
  display: inline-block;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--ink-soft);
}
.areas li a:hover { border-color: var(--brand); color: var(--brand-deep); text-decoration: none; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(32, 167, 173, 0.35) 0%, transparent 60%),
    var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  gap: 1.3rem;
  justify-items: start;
}
.cta-band h2 { color: #fff; max-width: 22ch; }
.cta-band p { color: rgba(255, 255, 255, 0.88); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* ---------- Sticky mobile call bar ---------- */
.callbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 0.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
}
.callbar a:first-child { background: var(--ink); color: #fff; }
.callbar a:last-child { background: var(--brand); color: #fff; }
@media (max-width: 720px) {
  .callbar { display: grid; }
  body { padding-bottom: 58px; }
}

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: var(--step--1); color: rgba(255, 255, 255, 0.75); margin-bottom: 0.9rem; }
.crumbs a { color: rgba(255, 255, 255, 0.9); }
.crumbs span[aria-current] { color: #9be3e6; }

/* ---------- Tables ---------- */
.spec-table { width: 100%; border-collapse: collapse; font-size: var(--step--1); background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-table th, .spec-table td { text-align: left; padding: 0.8rem 1rem; border-bottom: 1px solid var(--line); }
.spec-table th { background: var(--muted); font-weight: 700; }
.spec-table tr:last-child td { border-bottom: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(1.3rem, 4vw, 2.2rem);
}
.field { display: grid; gap: 0.3rem; margin-bottom: 1rem; }
.field label { font-weight: 700; font-size: var(--step--1); }
.field input, .field textarea, .field select {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--ring);
}
.field .hint { font-size: 0.8rem; color: var(--muted-text); }
.field--error input, .field--error textarea { border-color: #c0392b; }
.field__error { color: #c0392b; font-size: 0.82rem; font-weight: 600; }
.form-status { margin-top: 0.8rem; font-weight: 700; font-size: var(--step--1); }
.form-status--ok { color: var(--brand-deep); }
.form-status--err { color: #c0392b; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.82); margin-top: var(--space-5); font-size: var(--step--1); }
.site-footer a { color: #9be3e6; }
.site-footer__grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); padding: 3rem 0 2rem; }
.site-footer h3 { color: #fff; font-size: var(--step-0); margin-bottom: 0.7rem; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 0.4rem; }
.site-footer__legal { border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 1.1rem 0 1.4rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between; align-items: center; }
.site-footer__charity { font-family: var(--font-script); font-size: 1.35rem; color: #9be3e6; margin: 1.1rem 0; }
.site-footer__legal-links { display: inline-flex; gap: 1.2rem; flex-wrap: wrap; }
.site-footer__social { display: flex; gap: 0.8rem; }
.site-footer__social a { line-height: 0; opacity: 0.85; }
.site-footer__social a:hover { opacity: 1; }
.site-footer__social svg { width: 22px; height: 22px; fill: currentColor; color: #fff; }

/* ---------- Reveal: signature saw-blade sweep ---------- */
html.js .reveal {
  opacity: 0;
  position: relative;
  transform: translate3d(0, clamp(8px, 1.4vw, 16px), 0);
  transition: opacity 0.36s var(--ease), transform 0.36s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
html.js .reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

html.js .reveal--saw::after {
  content: "";
  position: absolute;
  top: -20%; left: -60%;
  height: 140%;
  width: clamp(84px, 22vw, 200px);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-120%, 0, 0) rotate(-12deg);
  mix-blend-mode: multiply;
  background:
    repeating-linear-gradient(90deg, rgba(8, 11, 13, 0.2) 0 4px, transparent 4px 8px),
    linear-gradient(180deg, rgba(8, 11, 13, 0.12) 0%, rgba(32, 167, 173, 0.22) 35%, rgba(8, 11, 13, 0.12) 100%);
}
html.js .reveal--saw.is-visible::after {
  animation: saw-blade 0.52s var(--ease) both;
  animation-delay: var(--reveal-delay, 0ms);
}
@keyframes saw-blade {
  0% { opacity: 0; transform: translate3d(-120%, 0, 0) rotate(-12deg); }
  14% { opacity: 0.85; }
  55% { opacity: 0.35; transform: translate3d(120%, 0, 0) rotate(-12deg); }
  100% { opacity: 0; transform: translate3d(170%, 0, 0) rotate(-12deg); }
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .callbar, .site-footer__social, .hero__media { display: none !important; }
}


/* ---------- Review CTA (local-first) ---------- */
.review-cta {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: linear-gradient(120deg, rgba(32, 167, 173, 0.12), rgba(32, 167, 173, 0.03));
  border: 1px solid var(--ring);
  border-left: 5px solid var(--brand);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.review-cta p { margin: 0; font-size: var(--step-0); }
.review-cta .script-accent { font-size: 1.6rem; }

/* ---------- Star picker ---------- */
.starpick { display: flex; justify-content: center; gap: 0.4rem; margin: 1.1rem 0 0.4rem; }
.starpick button {
  font-size: clamp(2.2rem, 8vw, 3rem);
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: #d5dadc;
  transition: color 0.15s ease, transform 0.15s ease;
  padding: 0.2rem;
}
.starpick button.on { color: #f5a623; }
.starpick button:hover { transform: scale(1.12); }

/* ---------- Video feature ---------- */
.video-feature {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.6fr) minmax(min(260px, 100%), 1fr);
  align-items: center;
}
.video-feature video {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  background: var(--ink);
}
.video-feature__aside h3 { margin-bottom: 0.4rem; }
.video-feature__aside p { color: var(--muted-text); font-size: var(--step--1); }
.video-feature__links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.video-feature__links .btn { padding: 0.55rem 1.1rem; font-size: var(--step--1); }
@media (max-width: 860px) {
  .video-feature { grid-template-columns: 1fr; }
}

/* ---------- Gallery lightbox ---------- */
.gallery__zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
.lightbox {
  border: none;
  border-radius: var(--radius);
  padding: 0;
  background: transparent;
  max-width: min(1100px, 94vw);
  max-height: 92svh;
}
.lightbox::backdrop { background: rgba(8, 11, 13, 0.86); }
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 84svh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  display: block;
  margin-inline: auto;
}
.lightbox figcaption { color: #fff; text-align: center; padding: 0.7rem 0.5rem 0.3rem; font-size: var(--step--1); }
.lightbox__close {
  position: absolute;
  top: 0.4rem; right: 0.4rem;
  background: rgba(8, 11, 13, 0.65);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px; height: 42px;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ---------- Responsive hardening (all devices) ---------- */
/* tiny phones */
@media (max-width: 380px) {
  .wrap { width: calc(100% - 1.6rem); }
  .hero .wrap { padding: 2.2rem 0; }
  .hero__proof li { padding: 0.32rem 0.7rem; font-size: 0.74rem; }
  .btn--lg { padding: 0.85rem 1.4rem; font-size: 1rem; }
  .spec-table th, .spec-table td { padding: 0.55rem 0.65rem; font-size: 0.8rem; }
  .gallery { grid-auto-columns: 88%; }
  .testimonials { grid-auto-columns: 92%; }
  .cta-band { padding: 1.5rem 1.2rem; }
  .review-cta, .forum-strip { padding: 1rem 1.1rem; }
}
/* short landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero, .hero--inner { min-height: 120svh; }
  .hero .wrap { padding: 2rem 0; }
}
/* tablets: keep grids balanced when rows don't fill */
@media (min-width: 600px) and (max-width: 1024px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .statbar { grid-template-columns: repeat(2, 1fr); }
}
/* big desktops: don't over-stretch sparse rows */
@media (min-width: 1025px) {
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1600px) {
  :root { --wrap: 1200px; }
}
/* very large: cap hero height so video doesn't dominate */
@media (min-width: 1900px) {
  .hero { min-height: 760px; }
}


/* ---------- Deep-dive fixes (2026-06-11) ---------- */
/* keep all 5 process steps on one desktop row (no orphan) */
@media (min-width: 1025px) {
  .steps { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
}

/* header CTA */
.site-nav__cta {
  padding: 0.45rem 1.05rem !important;
  font-size: var(--step--1) !important;
  margin-left: 0.3rem;
  color: #fff !important;
}
@media (max-width: 920px) {
  .site-nav__cta { margin: 0.4rem 0 0; text-align: center; }
}

/* horizontal scrollers: edge fade + arrows so desktop users know to scroll */
.scroller-shell { position: relative; }
.scroller-shell::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 14px;
  width: 70px;
  pointer-events: none;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9));
  opacity: 1;
  transition: opacity 0.2s ease;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.scroller-shell.at-end::after { opacity: 0; }
.scroller-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--brand-deep);
  font-size: 1.3rem;
  line-height: 1;
}
.scroller-arrow:hover { background: #fff; border-color: var(--brand); }
.scroller-arrow--prev { left: -10px; }
.scroller-arrow--next { right: -10px; }
.scroller-arrow[disabled] { opacity: 0.35; cursor: default; }
@media (min-width: 768px) and (hover: hover) {
  .scroller-shell:hover .scroller-arrow, .scroller-shell:focus-within .scroller-arrow { display: inline-flex; }
}
