/* ===================================================================
   CAM Pools — landing page styles
   Palette pulled from the logo: green #2E7F3D · charcoal #1E1E1F · white
   Type: Barlow Condensed (display) + Barlow (body)
   =================================================================== */

/* ---------- Tokens ---------- */
:root {
  --green:        #2E7F3D;
  --green-bright: #36963f;
  --green-deep:   #205c2c;
  --green-700:    #184a22;
  --green-tint:   #eaf3e8;
  --green-tint-2: #f3f8f1;

  --ink:        #16181a;   /* deep charcoal for big type */
  --charcoal:   #1e1f1e;   /* logo charcoal */
  --graphite:   #2a2f2c;
  --muted:      #5d665f;
  --muted-soft: #8b968d;

  --paper:      #ffffff;
  --paper-soft: #f6f8f4;
  --line:       #e6ebe4;
  --line-strong:#d4dccf;

  --font-display: "Barlow Condensed", system-ui, sans-serif;
  --font-body:    "Barlow", system-ui, sans-serif;

  --container: 1200px;
  --radius:   14px;
  --radius-sm:10px;
  --radius-lg:22px;

  --shadow-sm: 0 2px 8px rgba(20,30,22,.06);
  --shadow-md: 0 14px 34px -14px rgba(20,40,24,.20);
  --shadow-lg: 0 30px 70px -24px rgba(16,40,22,.32);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.js .reveal { opacity: 0; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font-family: inherit; font-size: 16px; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
[id] { scroll-margin-top: clamp(80px, 11vw, 104px); }

.ico { width: 1.1em; height: 1.1em; flex: none; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--green); color: #fff; padding: .6rem 1rem; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

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

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  font-size: clamp(.82rem, 1.5vw, .95rem);
  color: var(--green);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--green); border-radius: 2px; }
.eyebrow--light { color: #aef0b8; }
.eyebrow--light::before { background: #aef0b8; }

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section__head { max-width: 720px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.01em;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  margin-top: .7rem;
  color: var(--ink);
}
.section__intro { margin-top: 1.1rem; color: var(--muted); font-size: clamp(1.02rem, 2vw, 1.18rem); }

.grid { display: grid; gap: 1.4rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--green);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.05rem; letter-spacing: .02em;
  text-transform: uppercase;
  padding: .85rem 1.5rem; border-radius: 999px;
  background: var(--bg); color: #fff;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn .ico { width: 1.05em; height: 1.05em; }
.btn--primary {
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
  box-shadow: 0 10px 24px -10px rgba(32,92,44,.7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(32,92,44,.8); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: rgba(255,255,255,.08); color: #fff;
  border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.12rem; }
.btn--block { width: 100%; }

/* ===================================================================
   UTILITY BAR
   =================================================================== */
.utilitybar { background: var(--charcoal); color: #cfd8d0; font-size: .9rem; }
.utilitybar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; }
.utilitybar__badge { display: inline-flex; flex-wrap: wrap; align-items: center; gap: .3rem .55rem; font-weight: 500; letter-spacing: .01em; }
.utilitybar__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 4px rgba(54,150,63,.25); }
.utilitybar__lic { color: #9fb1a4; font-variant-numeric: tabular-nums; }
.utilitybar__contact { display: flex; align-items: center; gap: 1.4rem; }
.utilitybar__link { display: inline-flex; align-items: center; gap: .45rem; color: #e7eee8; font-weight: 500; white-space: nowrap; transition: color .2s; }
.utilitybar__link:hover { color: #fff; }
.utilitybar__link .ico { width: 15px; height: 15px; color: var(--green-bright); }

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s; }
.header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1rem; }

.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 54px; width: auto; transition: transform .3s var(--ease); }
.brand:hover .brand__logo { transform: scale(1.04); }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav__link { font-weight: 500; color: var(--graphite); position: relative; padding: .3rem 0; transition: color .2s; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--green); transition: width .25s var(--ease); }
.nav__link:hover { color: var(--green-deep); }
.nav__link:hover::after { width: 100%; }
.nav__phone { display: none; align-items: center; gap: .4rem; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.nav__phone .ico { color: var(--green); width: 17px; height: 17px; }
.nav__phone:hover { color: var(--green-deep); }

.navtoggle { display: none; width: 46px; height: 46px; border-radius: 10px; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px; border: 1px solid var(--line-strong); background: #fff; }
.navtoggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15,20,16,.92) 0%, rgba(16,28,18,.74) 42%, rgba(20,45,26,.35) 72%, rgba(30,80,40,.25) 100%),
    linear-gradient(to top, rgba(13,18,14,.85), rgba(13,18,14,0) 40%);
}
.hero__grain { position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); }

.hero__inner { position: relative; padding: clamp(4.5rem, 12vw, 9rem) 0 clamp(6rem, 13vw, 10rem); }
.hero__content { max-width: 760px; }
.hero__title { font-family: var(--font-display); font-weight: 700; line-height: .98; letter-spacing: -.012em;
  font-size: clamp(2.9rem, 8vw, 5.6rem); margin-top: 1.1rem; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero__title .accent { color: #b6f0bf; }
.hero__lead { margin-top: 1.4rem; font-size: clamp(1.08rem, 2.2vw, 1.32rem); max-width: 620px; color: #e7efe8; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.1rem 1.8rem; margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.2); }
.hero__trust li { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .98rem; color: #eef5ef; }
.hero__trust .ico { color: #9be8a6; width: 19px; height: 19px; stroke-width: 2.6; }

/* angled bottom edge echoing the logo's geometry */
.hero__angle { position: absolute; left: 0; right: 0; bottom: -1px; height: clamp(40px, 6vw, 88px);
  background: var(--paper); z-index: 1; clip-path: polygon(0 100%, 100% 100%, 100% 0); }

/* ===================================================================
   CLIENTS STRIP
   =================================================================== */
.clients { background: var(--paper); padding: 1.6rem 0 .4rem; }
.clients__inner { text-align: center; }
.clients__label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em;
  font-weight: 600; color: var(--muted-soft); font-size: .82rem; }
.clients__list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .8rem 1.6rem; margin-top: 1rem; }
.clients__list li { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  font-size: clamp(1rem, 2.1vw, 1.32rem); color: var(--graphite); }
.clients__list .sep { width: 7px; height: 7px; background: var(--green); border-radius: 50%; transform: rotate(45deg); }

/* ===================================================================
   SERVICES
   =================================================================== */
.services { background:
  radial-gradient(120% 80% at 100% 0, var(--green-tint-2) 0%, transparent 55%),
  var(--paper); }
.services__grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem 1.7rem; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: linear-gradient(90deg, var(--green-bright), var(--green-deep)); transition: width .35s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { width: 100%; }
.card__icon { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: var(--green-tint); color: var(--green-deep); margin-bottom: 1.2rem; transition: background .3s, color .3s, transform .3s var(--ease); }
.card__icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.card:hover .card__icon { background: var(--green); color: #fff; transform: rotate(-4deg) scale(1.05); }
.card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; line-height: 1.05; color: var(--ink); }
.card__text { margin-top: .65rem; color: var(--muted); font-size: 1.01rem; }
.card__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  font-size: .92rem; color: var(--green-deep); }
.card__link span { transition: transform .25s var(--ease); }
.card__link:hover span { transform: translateX(5px); }

.services__more { text-align: center; margin-top: 2.6rem; font-size: 1.1rem; color: var(--muted); }
.services__more a { color: var(--green-deep); font-weight: 600; border-bottom: 2px solid var(--green-tint); }
.services__more a:hover { border-color: var(--green); }

/* --- Weekly service feature card --- */
.svc-feature { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(1.4rem, 3.5vw, 3rem);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 3rem); box-shadow: var(--shadow-md); align-items: center; }
.svc-tag { display: inline-flex; align-items: center; gap: .5rem; background: var(--green-tint);
  color: var(--green-700); font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .07em; font-size: .82rem; padding: .42rem .9rem; border-radius: 999px; }
.svc-tag svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.svc-feature__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  line-height: 1; color: var(--ink); margin: .9rem 0 .55rem; }
.svc-feature__text { color: var(--muted); font-size: 1.06rem; }
.svc-report { display: flex; gap: .85rem; align-items: flex-start; margin: 1.3rem 0 1.7rem;
  background: var(--green-tint-2); border-left: 3px solid var(--green); border-radius: 12px; padding: .9rem 1.1rem; }
.svc-report__ico { flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--green); color: #fff; }
.svc-report__ico svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.svc-report p { font-size: .97rem; color: var(--graphite); margin: 0; }
.svc-feature__panel { background: linear-gradient(160deg, var(--green-tint), var(--green-tint-2));
  border: 1px solid #d9ead6; border-radius: var(--radius); padding: clamp(1.3rem, 2.5vw, 1.9rem); }
.svc-panel__label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em;
  font-weight: 600; color: var(--green-deep); font-size: .85rem; margin-bottom: 1.1rem; }
.svc-checklist { display: grid; gap: 1rem; }
.svc-checklist li { display: flex; gap: .7rem; align-items: flex-start; }
.svc-checklist .ico { flex: none; width: 24px; height: 24px; padding: 4px; border-radius: 50%;
  background: var(--green); color: #fff; stroke-width: 3; margin-top: 1px; }
.svc-checklist span { color: var(--graphite); font-size: .98rem; }
.svc-checklist strong { color: var(--ink); }

/* --- Repair / replace / install cards --- */
.svc-duo { grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 1.4rem; }
.svc-card { display: flex; flex-direction: column; }
.svc-card .card__link { margin-top: auto; }
.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1rem 0 1.3rem; }
.chip { font-family: var(--font-display); font-weight: 600; font-size: .86rem; letter-spacing: .01em;
  background: var(--green-tint); color: var(--green-700); padding: .35rem .72rem; border-radius: 999px; border: 1px solid #d2e7d0; }

/* ===================================================================
   PROCESS  (dark band)
   =================================================================== */
.process { position: relative; background: var(--charcoal); color: #fff; overflow: hidden; }
.process::before { content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(80% 120% at 10% -10%, rgba(46,127,61,.45), transparent 50%),
              radial-gradient(70% 100% at 100% 120%, rgba(46,127,61,.30), transparent 55%); }
.process .container { position: relative; }
.process .section__title { color: #fff; }
.process .section__intro { color: #c4cec6; }
.process__grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding: 2.2rem 1.8rem; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); }
.step__num { font-family: var(--font-display); font-weight: 700; font-size: 3.2rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(150,232,166,.6); display: block; margin-bottom: .8rem; }
.step__title { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: #fff; }
.step__text { margin-top: .6rem; color: #c4cec6; font-size: 1.01rem; }

/* ===================================================================
   WHY US
   =================================================================== */
.why { background: var(--paper-soft); }
.why__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.why__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/4.4; }
.why__badge { position: absolute; left: 1.3rem; bottom: 1.3rem; background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px); border-radius: 14px; padding: .9rem 1.2rem; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; line-height: 1.1; }
.why__badge strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--green-deep); }
.why__badge span { font-size: .9rem; color: var(--muted); font-weight: 500; }
.why__lead { margin-top: 1.1rem; color: var(--muted); font-size: 1.12rem; }
.why__list { margin: 1.8rem 0; display: grid; gap: 1.05rem; }
.why__list li { display: flex; gap: .85rem; align-items: flex-start; }
.why__list .ico { color: #fff; background: var(--green); border-radius: 50%; width: 26px; height: 26px; padding: 5px; flex: none; stroke-width: 3; margin-top: 2px; }
.why__list div { color: var(--graphite); }
.why__list strong { color: var(--ink); }

/* ===================================================================
   STATS BAND
   =================================================================== */
.stats { background: linear-gradient(120deg, var(--green-deep), var(--green) 55%, var(--green-bright)); color: #fff; padding: clamp(2.4rem, 5vw, 3.4rem) 0; }
.stats__grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat { padding: .6rem; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,.25); }
.stat__big { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.1rem); line-height: 1; display: block; }
.stat__label { display: block; margin-top: .5rem; font-weight: 500; color: #e2f3e5; font-size: .98rem; }

/* ===================================================================
   QUOTE / CONTACT
   =================================================================== */
.quote { position: relative; background: var(--charcoal); color: #fff; overflow: hidden; }
.quote::before { content: ""; position: absolute; inset: 0; opacity: .6;
  background: radial-gradient(60% 80% at 0% 0%, rgba(46,127,61,.4), transparent 55%),
              radial-gradient(60% 90% at 100% 100%, rgba(46,127,61,.32), transparent 55%); }
.quote__inner { position: relative; display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.quote .section__title { color: #fff; }
.quote__lead { margin-top: 1.1rem; color: #c8d2ca; font-size: 1.12rem; max-width: 460px; }
.quote__contacts { margin-top: 2.1rem; display: grid; gap: 1rem; }
.quote__contacts li a, .quote__area { display: flex; align-items: center; gap: 1rem; padding: .55rem 0; }
.quote__ico { width: 50px; height: 50px; flex: none; border-radius: 13px; display: grid; place-items: center;
  background: rgba(150,232,166,.12); color: #9be8a6; }
.quote__ico svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.quote__contacts small { display: block; color: #9aa89d; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.quote__contacts strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: #fff; }
.quote__contacts li a:hover strong { color: #b6f0bf; }
.quote__area strong { color: #eaf2eb; }

/* Form card */
.quote__formwrap { background: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-lg); color: var(--ink); }
.qform__title { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--ink); margin-bottom: 1.3rem; }
.qform__row { margin-bottom: 1rem; }
.qform__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--graphite); letter-spacing: .01em; }
.req { color: var(--green); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--paper-soft); color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s; }
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: #9aa69c; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(46,127,61,.14); }
.field.has-error input, .field.has-error select { border-color: #cc4b37; box-shadow: 0 0 0 4px rgba(204,75,55,.12); }
.field__err { color: #cc4b37; font-size: .85rem; font-weight: 600; display: none; }
.field.has-error .field__err { display: block; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

#submitBtn { margin-top: .6rem; }
#submitBtn.is-loading { opacity: .75; pointer-events: none; }
.qform__note { margin-top: .9rem; font-size: .9rem; color: var(--muted); text-align: center; }
.qform__status { margin-top: 1rem; padding: .9rem 1rem; border-radius: var(--radius-sm); font-weight: 600; display: none; }
.qform__status.is-success { display: block; background: var(--green-tint); color: var(--green-700); border: 1px solid #bfe0c2; }
.qform__status.is-error { display: block; background: #fdecea; color: #a3301f; border: 1px solid #f3c7c0; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--ink); color: #b9c3bb; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.4rem; padding: clamp(3rem, 6vw, 4.5rem) 0 2.8rem; }
.footer__logobadge { display: inline-grid; place-items: center; background: #fff; border-radius: 16px; padding: .5rem .7rem; width: max-content; }
.footer__logobadge img { height: 66px; width: auto; }
.footer__tag { margin-top: 1.1rem; max-width: 320px; font-size: .98rem; color: #9faba1; }
.footer__social { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-top: 1.2rem;
  border-radius: 11px; border: 1px solid rgba(255,255,255,.18); color: #cfd8d0; transition: all .25s var(--ease); }
.footer__social svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.footer__social:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-2px); }
.footer__col h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: 1rem; color: #fff; margin-bottom: 1.1rem; }
.footer__col ul { display: grid; gap: .6rem; }
.footer__col a { color: #b9c3bb; transition: color .2s; font-size: .98rem; }
.footer__col a:hover { color: #9be8a6; }
.footer__contact li { font-size: .98rem; }
.footer__cta { margin-top: 1.3rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.4rem 0; }
.footer__bottominner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__bottom p { font-size: .88rem; color: #8a958c; }
.footer__fineprint { color: #717c73; }

/* ===================================================================
   STICKY MOBILE CALL BAR
   =================================================================== */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(22,24,26,.92); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,.12); }
.callbar__btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .03em;
  padding: .85rem; border-radius: 12px; font-size: 1.05rem; }
.callbar__btn .ico { width: 18px; height: 18px; }
.callbar__btn--call { background: #fff; color: var(--ink); }
.callbar__btn--quote { background: linear-gradient(135deg, var(--green-bright), var(--green-deep)); color: #fff; }

/* ===================================================================
   REVEAL ANIMATION
   =================================================================== */
.reveal { transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1 !important; transform: none; }
/* Failsafe: force everything visible if the reveal script never boots */
html.reveal-all .reveal { opacity: 1 !important; transform: none !important; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
  .services__grid, .process__grid { grid-template-columns: repeat(2, 1fr); }
  .why__inner, .quote__inner { grid-template-columns: 1fr; }
  .why__media { max-width: 520px; }
  .quote__formwrap { order: -1; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .stat:nth-child(3)::before { display: none; }
}

@media (max-width: 820px) {
  /* Drawer sits just below the sticky header. top:100% resolves against the header,
     which is this fixed child's containing block (it has backdrop-filter). */
  .nav { position: fixed; top: 100%; right: 0; height: 100dvh; width: min(84vw, 350px); flex-direction: column;
    align-items: stretch; justify-content: flex-start; gap: .3rem; padding: 1.4rem 1.5rem 2rem; overflow-y: auto;
    background: #fff; box-shadow: var(--shadow-lg); transform: translateX(110%); transition: transform .35s var(--ease); }
  .nav.is-open { transform: none; }
  .nav__link { padding: .8rem .2rem; border-bottom: 1px solid var(--line); font-size: 1.15rem; }
  .nav__link::after { display: none; }
  .nav__phone { display: inline-flex; padding: .8rem .2rem; }
  .nav__cta { margin-top: .8rem; }
  .navtoggle { display: flex; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(15,20,16,.5); z-index: 99; opacity: 0; visibility: hidden; transition: opacity .3s; }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
  .callbar { display: flex; }
  body { padding-bottom: 0; }
  .svc-feature { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .utilitybar__badge { font-size: .8rem; }
  .utilitybar__link--hide-sm { display: none; }
  .services__grid, .process__grid, .svc-duo { grid-template-columns: 1fr; }
  .qform__row--2 { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .hero__actions .btn { flex: 1; }
}

@media (max-width: 420px) {
  .footer__inner { grid-template-columns: 1fr; }
}

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