/* =========================================================
   Crosby's Heating & Air — Google Ads landing page
   Motion + design language modelled on plumio.webflow.io
   Font: Inter Tight · Accents from the Crosby logo
   ========================================================= */

/* ---------------------------------------------------------
   TOKENS
   --------------------------------------------------------- */
:root{
  /* neutrals (reference palette) */
  --ink-900:#142127;
  --ink-800:#1f2f36;
  --ink-700:#2b3c43;
  --ink-500:#5d6c7b;
  --ink-400:#7c898f;
  --ink-300:#b2babe;
  --ink-200:#d3dee2;
  --ink-100:#ebf1f3;
  --white:#fff;

  /* brand — flame orange + snowflake blue, straight off the logo */
  --orange:#ff7301;
  --orange-dark:#e56400;
  --blue:#1d5dff;
  --green:#b2d99a;
  --green-solid:#6fae45;
  --gold:#ffc107;

  /* fluid type — scales smoothly from 360px to 1600px viewports */
  --fs-h1:clamp(2.35rem, 1.15rem + 5.3vw, 4.5rem);
  --fs-h2:clamp(1.95rem, 1.05rem + 3.9vw, 3.5rem);
  --fs-h3:clamp(1.35rem, 1.1rem + 1.05vw, 1.75rem);
  --fs-h4:clamp(1.05rem, .96rem + .42vw, 1.25rem);
  --fs-lead:clamp(1rem, .95rem + .32vw, 1.12rem);
  --fs-body:1rem;
  --fs-sm:.9rem;
  --fs-xs:.8rem;

  /* fluid rhythm */
  --sp-section:clamp(4rem, 2.4rem + 6.4vw, 7rem);
  --sp-gap:clamp(1rem, .6rem + 1.4vw, 1.4rem);
  --sp-gutter:clamp(1.15rem, .6rem + 1.6vw, 1.5rem);

  --radius-sm:10px;
  --radius:14px;
  --radius-lg:clamp(16px, 1.1vw + 12px, 24px);
  --radius-pill:120px;

  --container:1220px;
  --header-h:76px;
  --tap:48px;                    /* minimum touch target */

  --ease:cubic-bezier(.22,.61,.36,1);
  --shadow-sm:0 2px 8px rgba(20,33,39,.06);
  --shadow:0 12px 40px rgba(20,33,39,.10);
  --shadow-lg:0 30px 80px rgba(20,33,39,.18);
}

/* ---------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box}
/* overflow-x:clip (not hidden) — `hidden` would turn these into scroll
   containers, which breaks position:sticky and fights the Lenis scroller */
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;overflow-x:clip}
body{
  margin:0;
  font-family:"Inter Tight",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  font-size:var(--fs-body);
  line-height:1.6;
  color:var(--ink-900);
  background:var(--white);
  overflow-x:clip;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;height:auto;display:block;border-style:none}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}
input,select,textarea{font:inherit;color:inherit;max-width:100%}
h1,h2,h3,h4,h5,h6{margin:0;font-weight:500;line-height:1.12;letter-spacing:-.015em}
p{margin:0}
ul,ol{margin:0;padding:0;list-style:none}
address{font-style:normal}

/* [hidden] must beat any component display rule, or elements meant to be
   hidden (like the thank-you summary) render anyway */
[hidden]{display:none !important}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0 0 0 0);white-space:nowrap;border:0}
.skip-link{position:absolute;left:-999px;top:0;z-index:3000;background:var(--ink-900);color:#fff;
  padding:12px 20px;border-radius:0 0 10px 0}
.skip-link:focus{left:0}

/* Lenis */
html.lenis,html.lenis body{height:auto}
.lenis.lenis-smooth{scroll-behavior:auto !important}
.lenis.lenis-stopped{overflow:hidden}

.container{width:100%;max-width:var(--container);margin-inline:auto;padding-inline:var(--sp-gutter)}

.ico{width:18px;height:18px;flex:none;fill:none;stroke:currentColor;stroke-width:1.8;
     stroke-linecap:round;stroke-linejoin:round}

/* ---------------------------------------------------------
   BUTTONS
   One shape language: pill, 600 weight, icon trailing.
   Every variant shares the same lift, press and focus
   behaviour so they read as one family.
   --------------------------------------------------------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.6rem;
  min-height:var(--tap);padding:.8rem 1.55rem;border-radius:var(--radius-pill);
  font-size:.95rem;font-weight:600;letter-spacing:-.01em;line-height:1.2;
  text-align:center;border:1px solid transparent;position:relative;
  overflow:hidden;isolation:isolate;white-space:nowrap;
  -webkit-tap-highlight-color:transparent;
  transition:background .3s var(--ease),color .3s var(--ease),
             transform .22s var(--ease),box-shadow .3s var(--ease),
             border-color .3s var(--ease),opacity .2s var(--ease);
}
/* a soft sheen that sweeps across on hover */
.btn::after{
  content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;
  background:linear-gradient(120deg,transparent 20%,rgba(255,255,255,.22) 50%,transparent 80%);
  transform:translateX(-120%);transition:transform .65s var(--ease);
}
.btn:hover::after{transform:translateX(120%)}
.btn:hover{transform:translateY(-2px)}
.btn:active{transform:translateY(0) scale(.985);transition-duration:.08s}

/* --- primary: the money button --- */
.btn--primary{
  background:linear-gradient(180deg,#ff8524,var(--orange) 55%,var(--orange-dark));
  color:var(--white);
  box-shadow:0 6px 18px rgba(255,115,1,.30),inset 0 1px 0 rgba(255,255,255,.28);
}
.btn--primary:hover{
  background:linear-gradient(180deg,#ff7a10,var(--orange-dark));
  box-shadow:0 12px 30px rgba(255,115,1,.42),inset 0 1px 0 rgba(255,255,255,.3);
}
.btn--primary:active{box-shadow:0 4px 12px rgba(255,115,1,.32),inset 0 2px 5px rgba(0,0,0,.16)}

/* --- dark --- */
.btn--dark{background:var(--ink-900);color:var(--white);
  box-shadow:0 4px 14px rgba(20,33,39,.20),inset 0 1px 0 rgba(255,255,255,.08)}
.btn--dark:hover{background:var(--ink-800);box-shadow:0 10px 24px rgba(20,33,39,.28)}

/* --- light (sits on dark backgrounds) --- */
.btn--light{background:var(--white);color:var(--ink-900);box-shadow:0 4px 14px rgba(0,0,0,.14)}
.btn--light:hover{background:var(--ink-100);box-shadow:0 10px 26px rgba(0,0,0,.20)}

/* --- ghost on light --- */
.btn--ghost{background:transparent;color:var(--ink-900);border-color:var(--ink-200)}
.btn--ghost:hover{border-color:var(--ink-900);background:var(--ink-100);box-shadow:var(--shadow-sm)}

/* --- ghost on dark --- */
.btn--ghost-light{background:rgba(255,255,255,.06);color:var(--white);
  border-color:rgba(255,255,255,.22);backdrop-filter:blur(6px)}
.btn--ghost-light:hover{background:rgba(255,255,255,.13);border-color:rgba(255,255,255,.42)}

/* --- sizes --- */
.btn--lg{padding:1rem 1.9rem;font-size:1rem}
.btn--xl{padding:1.15rem 2.2rem;font-size:1.02rem}
.btn--block{width:100%}

/* --- trailing icon motion --- */
.ico--arrow{transition:transform .3s var(--ease)}
.btn:hover .ico--arrow{transform:translateX(4px)}
.btn--ghost-light:hover .ico--arrow,
.btn[href^="index"]:hover .ico--arrow{transform:translateX(-4px)}

/* --- disabled / loading --- */
.btn:disabled,.btn.is-loading{cursor:not-allowed;transform:none}
.btn:disabled{opacity:.65}
.btn.is-loading::after{display:none}
.btn.is-loading .ico--arrow{
  border:2px solid rgba(255,255,255,.35);border-top-color:var(--white);
  border-radius:50%;width:16px;height:16px;stroke:none;
  animation:btn-spin .7s linear infinite;
}
.btn.is-loading .ico--arrow path{display:none}
@keyframes btn-spin{to{transform:rotate(360deg)}}

/* button groups line up and wrap cleanly */
.btn + .btn{margin:0}

/* ---------------------------------------------------------
   TOP BAR
   --------------------------------------------------------- */
.topbar{background:var(--ink-900);color:var(--ink-300);font-size:.84rem}
.topbar__inner{display:flex;align-items:center;gap:clamp(14px,2vw,26px);min-height:42px}
.topbar__item{display:inline-flex;align-items:center;gap:8px;white-space:nowrap}
.topbar__item .ico{width:15px;height:15px;color:var(--orange)}
.topbar__phone{margin-left:auto;display:inline-flex;align-items:center;gap:8px;
  color:var(--white);font-weight:600;white-space:nowrap;transition:color .25s var(--ease)}
.topbar__phone:hover{color:var(--orange)}
.topbar__phone .ico{width:15px;height:15px;color:var(--orange)}

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */
.header{
  position:sticky;top:0;z-index:900;background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--ink-100);
  transition:box-shadow .35s var(--ease),background .35s var(--ease);
}
.header.is-stuck{box-shadow:0 6px 30px rgba(20,33,39,.08);background:rgba(255,255,255,.97)}
.header__inner{display:flex;align-items:center;gap:clamp(14px,2vw,28px);min-height:var(--header-h)}
.header__logo img{height:clamp(34px,3.4vw,46px);width:auto}
.nav{display:flex;align-items:center;gap:clamp(14px,1.8vw,26px)}
.nav a{font-size:.94rem;font-weight:500;color:var(--ink-700);position:relative;padding:6px 0;
  white-space:nowrap;transition:color .25s var(--ease)}
.nav a::after{content:"";position:absolute;left:0;bottom:0;height:2px;width:0;background:var(--orange);
  transition:width .3s var(--ease);border-radius:2px}
.nav a:hover{color:var(--ink-900)}
.nav a:hover::after,.nav a.is-active::after{width:100%}
.nav a.is-active{color:var(--ink-900)}
.header__cta{margin-left:auto;display:flex;align-items:center;gap:10px}


/* ---------------------------------------------------------
   1 · HERO
   --------------------------------------------------------- */
.hero{position:relative;overflow:hidden;background:var(--ink-900);isolation:isolate}
.hero__bg{position:absolute;inset:0;background-size:cover;background-position:center;
  transform:scale(1.1);will-change:transform}
.hero__scrim{position:absolute;inset:0;
  background:
    radial-gradient(120% 90% at 50% 0%,rgba(20,33,39,.55),transparent 60%),
    linear-gradient(180deg,rgba(20,33,39,.90) 0%,rgba(20,33,39,.84) 45%,rgba(20,33,39,.95) 100%);
}
.hero__fade{position:absolute;left:0;right:0;bottom:0;height:110px;z-index:2;
  background:linear-gradient(180deg,transparent,var(--ink-900));pointer-events:none}
.hero__inner{
  position:relative;z-index:3;text-align:center;
  display:grid;justify-items:center;
  padding-block:clamp(3.5rem,2rem + 7vw,6.5rem) clamp(4.5rem,3rem + 7vw,7.5rem);
  max-width:960px;
}

.pill{
  display:inline-flex;align-items:center;gap:9px;padding:.55rem 1.1rem;border-radius:var(--radius-pill);
  background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.16);
  color:var(--ink-100);font-size:.84rem;font-weight:500;line-height:1.35;
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
}
.pill .ico{width:15px;height:15px;color:var(--orange)}
.pill--light{background:var(--white);border-color:var(--ink-200);color:var(--ink-700);box-shadow:var(--shadow-sm)}
.pill--light .ico{color:var(--orange)}

.hero__title{
  margin:clamp(1.1rem,.8rem + 1vw,1.5rem) 0 clamp(.9rem,.7rem + .8vw,1.25rem);
  color:var(--white);font-size:var(--fs-h1);font-weight:500;letter-spacing:-.025em;line-height:1.04;
  max-width:16ch;
}
.hero__title em{font-style:normal;color:var(--orange)}
.hero__sub{max-width:60ch;color:var(--ink-300);font-size:var(--fs-lead);line-height:1.65}

/* inline quick-quote bar */
.quickbar{
  width:min(720px,100%);margin-top:clamp(1.6rem,1rem + 2vw,2.4rem);
  display:grid;grid-template-columns:1fr 1fr auto;gap:8px;
  padding:8px;border-radius:var(--radius-pill);
  background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.20);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
}
.quickbar__field{display:flex;align-items:center;gap:10px;padding:0 1.1rem;
  background:var(--white);border-radius:var(--radius-pill);min-height:var(--tap)}
.quickbar__field .ico{width:17px;height:17px;color:var(--ink-400)}
.quickbar__field input{width:100%;border:0;outline:none;background:transparent;
  font-size:.95rem;padding:.7rem 0;min-width:0}
.quickbar__field input::placeholder{color:#9fadb4}
.quickbar__field.is-invalid{box-shadow:0 0 0 2px #ff6b5e}
.quickbar__go{white-space:nowrap}

.quickbar__err{margin-top:.7rem;font-size:.87rem;font-weight:500;color:#ff8a7e;
  min-height:1.2em;text-align:center}
.quickbar__err:empty{margin-top:0;min-height:0}
.quickbar__consent{margin-top:.55rem;max-width:52ch;font-size:.76rem;line-height:1.5;
  color:var(--ink-400);text-align:center}

.hero__alt{margin-top:1rem;display:flex;align-items:center;gap:8px;
  color:var(--ink-400);font-size:.92rem;flex-wrap:wrap;justify-content:center}
.hero__call{display:inline-flex;align-items:center;gap:7px;color:var(--white);font-weight:600;
  border-bottom:1px solid rgba(255,255,255,.3);padding-bottom:1px;transition:color .25s var(--ease)}
.hero__call:hover{color:var(--orange);border-color:var(--orange)}
.hero__call .ico{width:15px;height:15px;color:var(--orange)}

.hero__trust{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;
  margin-top:clamp(1.8rem,1.2rem + 2vw,2.6rem)}
.trust-chip{display:inline-flex;align-items:center;gap:8px;padding:.5rem 1rem;
  border-radius:var(--radius-pill);background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.13);color:var(--ink-300);font-size:.85rem;white-space:nowrap}
.trust-chip strong{color:var(--white)}
.trust-chip .ico{width:14px;height:14px;color:var(--green)}
.trust-chip__stars{color:var(--gold);letter-spacing:1px;font-size:.85rem}

/* ---------------------------------------------------------
   2 · MARQUEE
   --------------------------------------------------------- */
.marquee{background:var(--ink-900);color:var(--ink-400);overflow:hidden;
  border-block:1px solid rgba(255,255,255,.08);padding:1rem 0;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
.marquee__track{display:flex;align-items:center;gap:2rem;width:max-content;
  animation:scroll-x 42s linear infinite}
.marquee__track span{font-size:.95rem;font-weight:500;white-space:nowrap}
.marquee__track i{color:var(--orange);font-style:normal;font-size:.7rem}
@keyframes scroll-x{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.marquee:hover .marquee__track{animation-play-state:paused}

/* ---------------------------------------------------------
   SECTION SHELL
   --------------------------------------------------------- */
.section{padding-block:var(--sp-section)}
.section--muted{background:var(--ink-100)}
.section--dark{background:var(--ink-900);color:var(--white)}

.sec-head{margin-bottom:clamp(2.2rem,1.4rem + 2.6vw,3.5rem)}
.sec-head--center{margin-inline:auto;text-align:center;display:grid;justify-items:center;
  gap:clamp(.9rem,.6rem + .8vw,1.2rem);max-width:760px}
.sec-head--split{display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(1.5rem,1rem + 3vw,3.5rem);
  align-items:end}
.sec-head--split .pill{margin-bottom:1rem}
.sec-title{font-size:var(--fs-h2);font-weight:500;letter-spacing:-.022em;line-height:1.08;max-width:20ch}
.sec-head--center .sec-title{max-width:22ch}
.sec-title--light{color:var(--white)}
.sec-sub{color:var(--ink-500);font-size:var(--fs-lead);line-height:1.68;max-width:58ch}
.sec-sub--light{color:var(--ink-300)}

/* ---------------------------------------------------------
   3 · SYMPTOM PICKER
   --------------------------------------------------------- */
.help-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--sp-gap)}
.help-card{
  position:relative;text-align:left;display:grid;gap:.4rem;align-content:start;
  padding:clamp(1.3rem,1rem + 1vw,1.75rem);min-height:170px;
  border:1px solid var(--ink-200);border-radius:var(--radius-lg);background:var(--white);
  transition:border-color .35s var(--ease),transform .35s var(--ease),
             box-shadow .35s var(--ease),background .35s var(--ease);
}
.help-card:hover,.help-card:focus-visible{transform:translateY(-5px);border-color:transparent;
  box-shadow:var(--shadow);background:var(--white)}
.help-card__ico{width:44px;height:44px;border-radius:12px;background:var(--ink-100);
  display:grid;place-items:center;margin-bottom:.85rem;
  transition:background .35s var(--ease),color .35s var(--ease)}
.help-card__ico svg{width:21px;height:21px;fill:none;stroke:var(--ink-700);stroke-width:1.8;
  stroke-linecap:round;stroke-linejoin:round;transition:stroke .35s var(--ease)}
.help-card:hover .help-card__ico{background:var(--orange)}
.help-card:hover .help-card__ico svg{stroke:var(--white)}
.help-card__title{font-size:var(--fs-h4);font-weight:600;letter-spacing:-.015em;color:var(--ink-900)}
.help-card__sub{font-size:var(--fs-sm);color:var(--ink-500);line-height:1.55}
.help-card__go{position:absolute;top:clamp(1.3rem,1rem + 1vw,1.75rem);right:clamp(1.3rem,1rem + 1vw,1.75rem);
  width:30px;height:30px;border-radius:50%;background:var(--ink-100);display:grid;place-items:center;
  transition:background .3s var(--ease),transform .3s var(--ease)}
.help-card__go svg{width:13px;height:13px;fill:none;stroke:var(--ink-700);stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round;transition:stroke .3s var(--ease)}
.help-card:hover .help-card__go{background:var(--ink-900);transform:rotate(45deg)}
.help-card:hover .help-card__go svg{stroke:var(--white)}

/* ---------------------------------------------------------
   4 · SERVICES (bento)
   --------------------------------------------------------- */
.bento{display:grid;grid-template-columns:repeat(5,1fr);gap:var(--sp-gap)}
.bento__item{position:relative;overflow:hidden;border-radius:var(--radius-lg);
  grid-column:span 2;min-height:clamp(340px,34vw,430px);display:flex;align-items:flex-end;
  isolation:isolate;transition:transform .45s var(--ease),box-shadow .45s var(--ease)}
.bento__item--wide{grid-column:span 3}
.bento__item:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.bento__item>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2;
  transition:transform .8s var(--ease)}
.bento__item:hover>img{transform:scale(1.06)}
.bento__overlay{position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,rgba(20,33,39,.15) 0%,rgba(20,33,39,.72) 48%,rgba(20,33,39,.94) 100%)}
.bento__body{padding:clamp(1.4rem,1rem + 1.4vw,2rem);color:var(--white);width:100%}
.bento__tag{display:inline-block;margin-bottom:.7rem;padding:.35rem .8rem;border-radius:var(--radius-pill);
  background:var(--orange);color:var(--white);font-size:.72rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.05em}
.bento__body h3{font-size:var(--fs-h3);font-weight:600;letter-spacing:-.02em}
.bento__body>p{margin-top:.5rem;font-size:var(--fs-sm);color:var(--ink-300);line-height:1.6;max-width:46ch}
.bento__list{display:flex;flex-wrap:wrap;gap:.45rem;margin:1rem 0 1.2rem}
.bento__list li{padding:.34rem .75rem;border-radius:var(--radius-pill);font-size:.79rem;
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.16);color:var(--ink-100)}
.bento__cta{display:inline-flex;align-items:center;gap:.7rem;font-size:.94rem;font-weight:600;
  min-height:var(--tap);transition:color .25s var(--ease)}
.bento__cta:hover{color:var(--orange)}
.arrow{width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,.16);
  display:grid;place-items:center;flex:none;
  transition:background .3s var(--ease),transform .3s var(--ease),color .3s var(--ease)}
.arrow svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round}
.bento__cta:hover .arrow{background:var(--orange);color:var(--white);transform:rotate(45deg)}

/* ---------------------------------------------------------
   5 · KEY FEATURES (curtain wipe)
   --------------------------------------------------------- */
.features{position:relative;background:var(--ink-900);color:var(--white);overflow:hidden}
.features__glow{position:absolute;width:clamp(90px,14vw,210px);pointer-events:none;opacity:.5}
.features__glow--l{left:0;top:0;bottom:0;background:linear-gradient(180deg,var(--green),transparent 62%)}
.features__glow--r{right:0;bottom:0;height:60%;background:linear-gradient(0deg,var(--green),transparent 70%)}
.features__inner{position:relative;z-index:2}

.feat-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:var(--sp-gap)}
.feat{
  position:relative;overflow:hidden;isolation:isolate;grid-column:span 2;
  background:var(--ink-800);border-radius:var(--radius-lg);
  padding:clamp(1.4rem,1rem + 1.2vw,1.75rem);
  min-height:clamp(190px,20vw,220px);display:flex;flex-direction:column;
  transition:background .4s var(--ease),transform .4s var(--ease);
}
.feat:nth-child(4),.feat:nth-child(5){grid-column:span 3}
.feat:hover{background:var(--ink-700);transform:translateY(-5px)}
.feat__ico{width:34px;height:34px;margin-bottom:auto}
.feat__ico svg{width:26px;height:26px;fill:none;stroke:var(--white);stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round}
.feat h3{margin-top:clamp(2rem,1.4rem + 2vw,2.75rem);font-size:var(--fs-h4);font-weight:600;color:var(--white)}
.feat p{margin-top:.55rem;font-size:var(--fs-sm);color:var(--ink-300);line-height:1.6}

/* the two panels that uncover each card on scroll */
.feat__wipe{position:absolute;top:0;bottom:0;width:50.5%;background:var(--ink-900);z-index:3;
  transform:scaleY(1);will-change:transform}
.feat__wipe--l{left:0;transform-origin:top}
.feat__wipe--r{right:0;transform-origin:bottom}
.no-anim .feat__wipe{transform:scaleY(0)}

/* ---------------------------------------------------------
   6 · MEET THE CREW
   --------------------------------------------------------- */
.crew__inner{display:grid;grid-template-columns:.95fr 1.05fr;gap:clamp(2rem,1rem + 4vw,4.5rem);
  align-items:center}
.crew__media{position:relative;border-radius:var(--radius-lg);overflow:hidden}
.crew__media>img{width:100%;height:clamp(340px,42vw,540px);object-fit:cover}
.float-card{position:absolute;left:clamp(14px,2vw,26px);right:clamp(14px,2vw,26px);
  bottom:clamp(14px,2vw,26px);max-width:290px;
  background:var(--white);color:var(--ink-900);border-radius:18px;
  padding:clamp(1rem,.8rem + .6vw,1.3rem);box-shadow:var(--shadow-lg)}
.float-card__row{display:flex;align-items:center;gap:9px;font-size:.88rem;font-weight:600}
.float-card__star{color:var(--gold);font-size:1.05rem}
.float-card__num{margin-top:.45rem;font-size:clamp(1.9rem,1.4rem + 1.6vw,2.4rem);font-weight:600;
  letter-spacing:-.03em;line-height:1}
.float-card__num small{font-size:.8rem;font-weight:500;color:var(--ink-400);letter-spacing:0}
.float-card__foot{margin-top:.7rem;padding-top:.7rem;border-top:1px solid var(--ink-100);
  display:flex;align-items:center;gap:8px;font-size:.8rem;color:var(--ink-500)}
.float-card__foot .ico{width:15px;height:15px;color:var(--green-solid)}

.crew__copy .pill{margin-bottom:1.1rem}
.crew__copy .sec-title{margin-bottom:1rem}
.counters{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--sp-gap);
  margin:clamp(1.8rem,1.2rem + 2vw,2.6rem) 0;
  padding-block:clamp(1.4rem,1rem + 1.4vw,1.8rem);
  border-block:1px solid var(--ink-200)}
.counter__num{font-size:clamp(1.7rem,1.2rem + 1.7vw,2.3rem);font-weight:600;
  letter-spacing:-.03em;line-height:1;color:var(--ink-900)}
.counter__label{margin-top:.35rem;font-size:.82rem;color:var(--ink-400);line-height:1.4}
.crew__actions{display:flex;flex-wrap:wrap;gap:.8rem}

/* ---------------------------------------------------------
   7 · PROCESS TIMELINE
   --------------------------------------------------------- */
.timeline{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--sp-gap);position:relative}
.timeline::before{content:"";position:absolute;left:0;right:0;top:24px;height:2px;
  background:linear-gradient(90deg,var(--ink-200),var(--orange),var(--ink-200));opacity:.65}
.tl{position:relative;padding-top:64px}
.tl__dot{position:absolute;top:0;left:0;width:50px;height:50px;border-radius:50%;
  background:var(--white);border:2px solid var(--orange);color:var(--orange);
  display:grid;place-items:center;font-size:.85rem;font-weight:700;letter-spacing:.02em;
  box-shadow:0 0 0 6px var(--ink-100);transition:background .35s var(--ease),color .35s var(--ease)}
.tl:hover .tl__dot{background:var(--orange);color:var(--white)}
.tl h3{font-size:var(--fs-h4);font-weight:600;letter-spacing:-.015em}
.tl p{margin-top:.5rem;font-size:var(--fs-sm);color:var(--ink-500);line-height:1.6;max-width:34ch}

/* ---------------------------------------------------------
   8 · BOOKING
   --------------------------------------------------------- */
.book{background:var(--ink-900);color:var(--white)}
.book__inner{display:grid;grid-template-columns:1fr minmax(0,440px);
  gap:clamp(2rem,1rem + 4vw,4rem);align-items:start}
.book__aside .pill{margin-bottom:1.1rem}
.book__aside .sec-title{margin-bottom:1rem}

.book__info{display:grid;gap:1.1rem;margin:clamp(1.8rem,1.2rem + 2vw,2.4rem) 0}
.book__info li{display:flex;gap:.9rem;align-items:flex-start}
.book__ico{width:42px;height:42px;border-radius:12px;display:grid;place-items:center;flex:none}
.book__ico svg{width:19px;height:19px;fill:none;stroke:var(--white);stroke-width:1.8;
  stroke-linecap:round;stroke-linejoin:round}
.book__ico--orange{background:var(--orange)}
.book__ico--blue{background:var(--blue)}
.book__ico--green{background:var(--green-solid)}
.book__info li>span:last-child{display:grid;gap:.15rem;font-size:.94rem;color:var(--ink-300);line-height:1.5}
.book__info strong{color:var(--white);font-size:.82rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.06em}
.book__info a{transition:color .25s var(--ease)}
.book__info a:hover{color:var(--orange)}

.book__areas-label{font-size:.82rem;font-weight:600;text-transform:uppercase;letter-spacing:.06em;
  color:var(--white);margin-bottom:.8rem}
.areas__list{display:flex;flex-wrap:wrap;gap:.5rem}
.area{display:inline-flex;align-items:center;gap:7px;padding:.45rem .95rem;border-radius:var(--radius-pill);
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.14);
  font-size:.85rem;color:var(--ink-300)}
.area::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--orange);flex:none}
.areas__note{margin-top:.9rem;font-size:.85rem;color:var(--ink-400);line-height:1.6;max-width:46ch}

/* form card */
.quote-card{background:var(--white);color:var(--ink-900);border-radius:var(--radius-lg);
  padding:clamp(1.5rem,1.1rem + 1.4vw,2rem);box-shadow:var(--shadow-lg);position:relative}
.quote-card__head{text-align:center;margin-bottom:1.4rem}
.quote-card__logo{height:38px;width:auto;margin:0 auto .9rem}
.quote-card__title{font-size:var(--fs-h3);font-weight:600;letter-spacing:-.02em}
.quote-card__sub{margin-top:.45rem;font-size:.85rem;color:var(--ink-500);line-height:1.5}

.field{margin-bottom:.9rem}
.field label{display:block;font-size:.85rem;font-weight:600;margin-bottom:.4rem;color:var(--ink-700)}
.field label span{color:var(--orange)}
.field input,.field select,.field textarea{
  width:100%;padding:.8rem .95rem;border:1px solid var(--ink-200);border-radius:var(--radius-sm);
  background:var(--white);font-size:1rem;min-height:var(--tap);
  transition:border-color .25s var(--ease),box-shadow .25s var(--ease);resize:vertical}
.field textarea{min-height:88px}
.field input::placeholder,.field textarea::placeholder{color:#9fadb4}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--orange);box-shadow:0 0 0 3px rgba(255,115,1,.14)}
.field.is-invalid input,.field.is-invalid select{border-color:#e0483d;box-shadow:0 0 0 3px rgba(224,72,61,.12)}
.err{display:block;color:#e0483d;font-size:.78rem;margin-top:.3rem}
.err--consent{margin:-.35rem 0 .5rem}

.consent{display:flex;gap:.65rem;align-items:flex-start;margin:.4rem 0 .9rem;
  font-size:.79rem;color:var(--ink-500);line-height:1.5;cursor:pointer}
.consent input{margin-top:2px;width:18px;height:18px;accent-color:var(--orange);flex:none}
.form__or{text-align:center;font-size:.79rem;color:var(--ink-400);margin:.9rem 0 .6rem}

/* ---------------------------------------------------------
   9 · REVIEWS
   --------------------------------------------------------- */
.reviews{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--sp-gap)}
.review{margin:0;background:var(--white);border:1px solid var(--ink-100);border-radius:var(--radius-lg);
  padding:clamp(1.3rem,1rem + 1vw,1.65rem);display:flex;flex-direction:column;
  transition:transform .4s var(--ease),box-shadow .4s var(--ease)}
.review:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.review__stars{color:var(--gold);font-size:.88rem;letter-spacing:2px;margin-bottom:.85rem}
.review blockquote{margin:0;font-size:.9rem;line-height:1.65;color:var(--ink-700)}
.review figcaption{margin-top:auto;padding-top:1rem;border-top:1px solid var(--ink-100);
  display:flex;align-items:center;gap:.75rem}
.review figcaption>span:last-child{display:grid}
.review figcaption strong{font-size:.9rem;font-weight:600}
.review figcaption small{font-size:.78rem;color:var(--ink-400)}
.avatar{width:38px;height:38px;border-radius:50%;background:var(--ink-900);color:var(--white);
  display:grid;place-items:center;font-size:.95rem;font-weight:600;flex:none}

/* ---------------------------------------------------------
   10 · FAQ
   --------------------------------------------------------- */
.faq__inner{display:grid;grid-template-columns:.92fr 1.08fr;gap:clamp(2rem,1rem + 4vw,4rem);
  align-items:start}
.faq__aside .pill{margin-bottom:1.1rem}
.faq__aside .sec-title{margin-bottom:1rem}

.faq-card{margin-top:clamp(1.6rem,1.1rem + 2vw,2.4rem);position:relative;overflow:hidden;
  border-radius:var(--radius-lg);padding:clamp(1.6rem,1.2rem + 1.6vw,2.1rem);
  text-align:center;color:var(--white);
  background:linear-gradient(145deg,var(--ink-700),var(--ink-900))}
.faq-card::before{content:"";position:absolute;inset:-40% -10% auto;height:180%;pointer-events:none;
  background:radial-gradient(60% 45% at 30% 25%,rgba(255,255,255,.16),transparent 62%),
             radial-gradient(50% 40% at 80% 70%,rgba(255,255,255,.10),transparent 60%)}
.faq-card__inner{position:relative;z-index:2;display:grid;justify-items:center;gap:.5rem}
.faq-card__avatar{width:76px;height:76px;border-radius:50%;object-fit:cover;
  border:3px solid rgba(255,255,255,.35);margin-bottom:.4rem}
.faq-card__title{font-size:var(--fs-h3);font-weight:600;letter-spacing:-.02em}
.faq-card__text{font-size:.9rem;color:var(--ink-300);line-height:1.6;max-width:34ch}
.faq-card .btn{margin-top:.8rem}

.faq__list{display:grid;gap:.7rem}
.faq__item{background:var(--white);border:1px solid var(--ink-200);border-radius:var(--radius);
  overflow:hidden;transition:border-color .3s var(--ease),box-shadow .3s var(--ease),background .3s var(--ease)}
.faq__item summary{list-style:none;cursor:pointer;min-height:var(--tap);
  padding:clamp(.95rem,.8rem + .5vw,1.2rem) clamp(1rem,.85rem + .6vw,1.35rem);
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  font-size:clamp(.95rem,.9rem + .3vw,1.05rem);font-weight:600;letter-spacing:-.01em;
  transition:color .25s var(--ease)}
.faq__item summary::-webkit-details-marker{display:none}
.faq__plus{position:relative;width:22px;height:22px;flex:none}
.faq__plus::before,.faq__plus::after{content:"";position:absolute;left:50%;top:50%;
  background:currentColor;border-radius:2px;transform:translate(-50%,-50%);
  transition:transform .35s var(--ease),opacity .25s var(--ease)}
.faq__plus::before{width:15px;height:2px}
.faq__plus::after{width:2px;height:15px}
.faq__item[open] .faq__plus::after{transform:translate(-50%,-50%) rotate(90deg);opacity:0}
/* the animated box carries NO padding of its own — with border-box,
   height:0 would still leave the padding visible as a sliver.
   The padding lives on the paragraph instead, so it collapses to nothing. */
.faq__ans{padding:0}
.faq__ans p{font-size:.95rem;color:var(--ink-500);line-height:1.7;
  padding:0 clamp(1rem,.85rem + .6vw,1.35rem) clamp(1rem,.85rem + .6vw,1.35rem)}

/* dark variant used on this page */
.faq .faq__item{background:var(--ink-800);border-color:transparent;color:var(--white)}
.faq .faq__item[open]{background:var(--ink-700)}
.faq .faq__item summary{color:var(--white)}
.faq .faq__item summary:hover,.faq .faq__item[open] summary{color:var(--orange)}
.faq .faq__ans p{color:var(--ink-300)}

/* ---------------------------------------------------------
   11 · FINAL CTA
   --------------------------------------------------------- */
.cta-final{background:var(--ink-800);color:var(--white);padding-block:var(--sp-section);
  position:relative;overflow:hidden}
.cta-final::before,.cta-final::after{content:"";position:absolute;border-radius:50%;pointer-events:none}
.cta-final::before{width:min(620px,90vw);aspect-ratio:1;top:-32%;right:-12%;
  background:radial-gradient(circle,rgba(255,115,1,.22),transparent 68%)}
.cta-final::after{width:min(520px,80vw);aspect-ratio:1;bottom:-32%;left:-12%;
  background:radial-gradient(circle,rgba(29,93,255,.18),transparent 68%)}
.cta-final__inner{position:relative;z-index:2;text-align:center;display:grid;justify-items:center;
  gap:clamp(.9rem,.6rem + .8vw,1.2rem)}
.cta-final__title{font-size:var(--fs-h2);font-weight:500;letter-spacing:-.022em;max-width:18ch}
.cta-final__inner>p{max-width:56ch;color:var(--ink-300);font-size:var(--fs-lead);line-height:1.65}
.cta-final__actions{display:flex;flex-wrap:wrap;gap:.8rem;justify-content:center;margin-top:.5rem}
.cta-final__meta{display:flex;flex-wrap:wrap;gap:.7rem clamp(1rem,.6rem + 1.6vw,1.8rem);
  justify-content:center;margin-top:.7rem}
.cta-final__meta span{display:inline-flex;align-items:center;gap:8px;font-size:.87rem;color:var(--ink-300)}
.cta-final__meta .ico{width:15px;height:15px;color:var(--green)}

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */
.footer{background:var(--ink-900);color:var(--ink-300);padding-top:clamp(3rem,2rem + 3.4vw,4.4rem)}
.footer__inner{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:clamp(1.8rem,1.2rem + 2.4vw,2.8rem)}
.footer__logo{height:clamp(42px,4vw,52px);width:auto;
  opacity:.92;margin-bottom:1rem}
.footer__brand p{font-size:.9rem;line-height:1.7;max-width:34ch}
.footer__col h4{font-size:.94rem;font-weight:600;color:var(--white);margin-bottom:1rem}
.footer__col a,.footer__col p,.footer__col address{display:block;font-size:.9rem;line-height:1.9;
  transition:color .25s var(--ease)}
.footer__col a{min-height:34px}
.footer__col a:hover{color:var(--orange)}
.footer__col strong{color:var(--white);font-weight:600}
.footer__bottom{margin-top:clamp(2rem,1.4rem + 2.4vw,3.2rem);
  padding:1.3rem var(--sp-gutter);border-top:1px solid rgba(255,255,255,.10);
  display:flex;flex-wrap:wrap;gap:.7rem;justify-content:space-between;
  font-size:.8rem;color:var(--ink-400)}

/* =========================================================
   THANK-YOU PAGE
   ========================================================= */
.ty-body{background:var(--ink-900)}
/* the translucent header goes muddy over a dark page — make it solid
   so the logo keeps its real colours */
.ty-body .header,.ty-body .header.is-stuck{background:var(--white);backdrop-filter:none}
.ty{position:relative;overflow:hidden;background:var(--ink-900);color:var(--white);
  padding-block:clamp(3rem,2rem + 5vw,5.5rem) clamp(3.5rem,2.4rem + 5vw,6rem)}
.ty__glow{position:absolute;border-radius:50%;pointer-events:none}
.ty__glow--a{width:min(680px,95vw);aspect-ratio:1;top:-34%;right:-14%;
  background:radial-gradient(circle,rgba(255,115,1,.22),transparent 66%)}
.ty__glow--b{width:min(560px,85vw);aspect-ratio:1;bottom:-30%;left:-14%;
  background:radial-gradient(circle,rgba(29,93,255,.18),transparent 68%)}
.ty__inner{position:relative;z-index:2;display:grid;justify-items:center;text-align:center;
  gap:clamp(.9rem,.6rem + .8vw,1.2rem);max-width:820px}

/* animated tick */
.ty__check{width:84px;height:84px;border-radius:50%;display:grid;place-items:center;
  background:rgba(111,174,69,.16);border:1px solid rgba(178,217,154,.42);margin-bottom:.4rem;
  animation:ty-pop .55s var(--ease) both}
.ty__check svg{width:38px;height:38px;fill:none;stroke:var(--green);stroke-width:2.6;
  stroke-linecap:round;stroke-linejoin:round;
  stroke-dasharray:32;stroke-dashoffset:32;animation:ty-draw .5s var(--ease) .3s forwards}
@keyframes ty-pop{from{opacity:0;transform:scale(.75)}to{opacity:1;transform:scale(1)}}
@keyframes ty-draw{to{stroke-dashoffset:0}}

.ty__title{font-size:var(--fs-h2);font-weight:500;letter-spacing:-.022em;max-width:18ch;
  animation:ty-rise .6s var(--ease) .15s both}
.ty__lead{max-width:56ch;color:var(--ink-300);font-size:var(--fs-lead);line-height:1.7;
  animation:ty-rise .6s var(--ease) .25s both}
.ty__lead strong{color:var(--white)}
@keyframes ty-rise{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}

/* what they sent */
.ty__summary{width:100%;max-width:520px;margin-top:.6rem;text-align:left;
  background:var(--ink-800);border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-lg);padding:clamp(1.2rem,1rem + 1vw,1.6rem);
  animation:ty-rise .6s var(--ease) .35s both}
.ty__summary-title{font-size:.78rem;font-weight:600;text-transform:uppercase;letter-spacing:.08em;
  color:var(--ink-400);margin-bottom:.9rem}
.ty__dl{display:grid;gap:.7rem;margin:0}
.ty__row{display:grid;grid-template-columns:88px 1fr;gap:1rem;align-items:baseline}
.ty__row dt{font-size:.82rem;color:var(--ink-400)}
.ty__row dd{margin:0;font-size:.95rem;color:var(--white);word-break:break-word}

.ty__actions{display:flex;flex-wrap:wrap;gap:.8rem;justify-content:center;margin-top:.8rem;
  animation:ty-rise .6s var(--ease) .45s both}

/* next steps */
.ty__steps{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--sp-gap);width:100%;
  margin-top:clamp(2rem,1.4rem + 2.4vw,3rem);text-align:left;
  animation:ty-rise .6s var(--ease) .55s both}
.ty__step{background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-lg);padding:clamp(1.15rem,1rem + .8vw,1.5rem)}
.ty__step-dot{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;
  background:rgba(255,255,255,.10);color:var(--ink-300);
  font-size:.85rem;font-weight:700;margin-bottom:.9rem}
.ty__step--done .ty__step-dot{background:var(--green-solid);color:var(--white)}
.ty__step-dot svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2.6;
  stroke-linecap:round;stroke-linejoin:round}
.ty__step h3{font-size:1rem;font-weight:600;color:var(--white)}
.ty__step p{margin-top:.4rem;font-size:.87rem;color:var(--ink-400);line-height:1.6}

.ty__meta{display:flex;flex-wrap:wrap;gap:.7rem clamp(1rem,.6rem + 1.6vw,1.8rem);
  justify-content:center;margin-top:clamp(1.6rem,1.2rem + 1.6vw,2.2rem)}
.ty__meta span{display:inline-flex;align-items:center;gap:8px;font-size:.87rem;color:var(--ink-400)}
.ty__meta .ico{width:15px;height:15px;color:var(--green)}

@media (max-width:720px){
  .ty__steps{grid-template-columns:1fr}
  .ty__actions .btn{width:100%}
}
/* no sticky call bar on this page — reclaim the space the shared
   mobile rules reserve for it */
@media (max-width:900px){
  .ty-body .footer__bottom{padding-bottom:1.3rem}
}
@media (max-width:420px){
  .ty__row{grid-template-columns:1fr;gap:.15rem}
}

/* ---------------------------------------------------------
   STICKY MOBILE CTA
   --------------------------------------------------------- */
.mobile-bar{
  position:fixed;left:0;right:0;bottom:0;z-index:950;display:none;gap:.6rem;
  padding:.6rem .85rem calc(.6rem + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.97);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-top:1px solid var(--ink-200);box-shadow:0 -6px 26px rgba(20,33,39,.12);
  transform:translateY(130%);transition:transform .4s var(--ease);
}
.mobile-bar.is-visible{transform:translateY(0)}
.mobile-bar__btn{flex:1;display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:var(--tap);padding:.85rem .6rem;border-radius:var(--radius-pill);
  font-size:.95rem;font-weight:600}
.mobile-bar__btn--call{background:var(--orange);color:var(--white)}
.mobile-bar__btn--quote{background:var(--ink-900);color:var(--white)}

/* ---------------------------------------------------------
   SCROLL-REVEAL BASE STATES (JS clears these)
   --------------------------------------------------------- */
.js [data-anim],.js [data-anim-child]>*,.js [data-split]{opacity:0}
/* padding/negative-margin pair stops the line mask clipping descenders */
/* Per-word mask. The padding/negative-margin pair stops descenders
   (g, y, p) being clipped by the overflow that creates the reveal. */
.sw{display:inline-block;overflow:hidden;vertical-align:top;
  padding-bottom:.16em;margin-bottom:-.16em}
.sw__i{display:inline-block;will-change:transform}
/* kept for any markup that still uses the older line wrapper */
.split-line{display:block;overflow:hidden;padding-bottom:.16em;margin-bottom:-.16em}
.split-line>span{display:block;will-change:transform}

/* =========================================================
   RESPONSIVE
   Breakpoints: 1240 · 1080 · 900 · 720 · 560 · 400
   ========================================================= */

/* --- large laptop --- */
@media (max-width:1240px){
  .nav{gap:16px}
  .nav a{font-size:.88rem}
}

/* --- small laptop / large tablet landscape --- */
@media (max-width:1080px){
  .nav{display:none}
  .help-grid{grid-template-columns:repeat(2,1fr)}
  .bento{grid-template-columns:repeat(2,1fr)}
  .bento__item,.bento__item--wide{grid-column:span 1}
  .feat-grid{grid-template-columns:repeat(4,1fr)}
  .feat,.feat:nth-child(4),.feat:nth-child(5){grid-column:span 2}
  .reviews{grid-template-columns:repeat(2,1fr)}
  .book__inner{grid-template-columns:1fr;gap:2.5rem}
  .quote-card{max-width:560px;width:100%;justify-self:center}

}

/* --- touch targets: every link/control clears 44px on touch sizes --- */
@media (max-width:900px){
  .topbar__phone,
  .hero__call,
  .book__info a,
  .footer__credit a,
  .footer__col a{
    min-height:44px;display:inline-flex;align-items:center;gap:8px;
  }
  .topbar__phone{padding-inline:4px}
  .header__logo{display:inline-flex;align-items:center;min-height:44px}
  .consent{min-height:44px}
  .consent input{width:22px;height:22px;margin-top:0}
  /* the topbar is a single centred call link on phones — give it room */
  .topbar__inner{min-height:48px}
}

/* --- tablet portrait --- */
@media (max-width:900px){
  .sec-head--split{grid-template-columns:1fr;gap:1.2rem;align-items:start}
  .crew__inner{grid-template-columns:1fr;gap:2.5rem}
  .crew__media{order:-1}
  .faq__inner{grid-template-columns:1fr;gap:2.2rem}
  .footer__inner{grid-template-columns:1fr 1fr}
  .timeline{grid-template-columns:repeat(2,1fr);row-gap:2.2rem}
  .timeline::before{display:none}
  .quickbar{grid-template-columns:1fr 1fr;border-radius:var(--radius-lg)}
  .quickbar__go{grid-column:1/-1}
  .header__cta .btn--phone span{display:none}
  .header__cta .btn--phone{padding-inline:1rem}
  /* tablets are a real ad segment — give them the sticky call bar too */
  .mobile-bar{display:flex}
  .footer__bottom{padding-bottom:calc(5.5rem + env(safe-area-inset-bottom))}
}

/* --- large phone / small tablet --- */
@media (max-width:720px){
  .topbar__item{display:none}
  .topbar__phone{margin-inline:auto}
  .mobile-bar{display:flex}
  .help-grid{grid-template-columns:1fr}
  .help-card{min-height:0}
  .bento{grid-template-columns:1fr}
  .bento__item{min-height:300px}
  .feat-grid{grid-template-columns:1fr}
  .feat,.feat:nth-child(4),.feat:nth-child(5){grid-column:span 1}
  .feat{min-height:0}
  .feat h3{margin-top:1.6rem}
  .reviews{grid-template-columns:1fr}
  .counters{grid-template-columns:repeat(2,1fr);gap:1.4rem}
  .footer__inner{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column;gap:.4rem;padding-bottom:calc(5.5rem + env(safe-area-inset-bottom))}
  .cta-final__actions .btn{width:100%}
  .crew__actions .btn{flex:1 1 100%}
  .hero__inner{padding-block:2.75rem 4rem}
  .header__quote{display:none}       /* sticky bar covers this on mobile */
}

/* --- phone --- */
@media (max-width:560px){
  .quickbar{grid-template-columns:1fr;padding:10px;gap:10px}
  .timeline{grid-template-columns:1fr;row-gap:1.6rem}
  .tl{padding-top:0;padding-left:66px;min-height:52px}
  .tl__dot{width:46px;height:46px;box-shadow:0 0 0 5px var(--ink-100)}
  .hero__trust{gap:8px}
  .trust-chip{font-size:.78rem;padding:.42rem .8rem}
  /* card drops below the photo and tucks under its bottom edge.
     position:relative + z-index are required — an unpositioned card
     would be painted *under* the <img>, putting text on the photo. */
  .float-card{
    position:relative;z-index:2;max-width:none;
    /* clear the absolute offsets from the desktop rule — under
       position:relative they'd shift the card off-centre */
    inset:auto;
    margin:-28px clamp(14px,4vw,22px) 0;
    border:1px solid var(--ink-100);box-shadow:var(--shadow);
  }
  .crew__media{overflow:visible;border-radius:0}
  .crew__media>img{border-radius:var(--radius-lg)}
  /* the copy needs air after the card, or the pill collides with it */
  .crew__inner{gap:2rem}
  .crew__copy .pill{margin-top:.5rem}
  .review blockquote{font-size:.92rem}
  .marquee__track{gap:1.35rem}
  .marquee__track span{font-size:.85rem}
}

/* --- very small phone --- */
@media (max-width:400px){
  :root{--sp-gutter:1rem}
  .btn{font-size:.9rem;padding-inline:1.15rem}
  .header__logo img{height:30px}
  .mobile-bar__btn{font-size:.88rem}
}

/* --- short landscape phones: trim vertical padding --- */
@media (max-height:520px) and (orientation:landscape){
  .hero__inner{padding-block:2rem 2.5rem}
}

/* --- retina / high-DPI polish --- */
@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){
  body{-webkit-font-smoothing:antialiased}
  .hero__bg{image-rendering:auto}
}

/* --- very wide screens: stop the hero art stretching --- */
@media (min-width:1600px){
  :root{--container:1320px}
}

/* ---------------------------------------------------------
   ACCESSIBILITY
   --------------------------------------------------------- */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;
    transition-duration:.01ms !important;scroll-behavior:auto !important}
  .js [data-anim],.js [data-anim-child]>*,.js [data-split]{opacity:1 !important}
  .feat__wipe{transform:scaleY(0) !important}
  .hero__bg{transform:none}
  .marquee__track{animation:none}
}
:focus-visible{outline:3px solid var(--orange);outline-offset:2px;border-radius:4px}
.section--dark :focus-visible,.book :focus-visible,.features :focus-visible,.faq :focus-visible{
  outline-color:var(--green)}

/* keep hover-only effects off touch devices */
@media (hover:none){
  .btn:hover,.help-card:hover,.bento__item:hover,.review:hover,.feat:hover,.stat:hover{transform:none}
  .bento__item:hover>img{transform:none}
}

/* =======================================================
   WORDPRESS ADDITIONS
   ======================================================= */

/* Honeypot. Positioned off-screen rather than display:none —
   modern bots skip fields that are explicitly hidden. */
.hp-field{position:absolute!important;left:-9999px!important;top:auto!important;
  width:1px!important;height:1px!important;overflow:hidden!important}

/* Server-rendered error for the no-JavaScript submit path */
.form__error-top{margin:0 0 1rem;padding:.85rem 1.1rem;border-radius:var(--radius-sm);
  background:rgba(224,72,61,.12);border:1px solid rgba(224,72,61,.4);
  color:#ffb4ac;font-size:.92rem;font-weight:500}

/* Developer credit */
.footer__credit{color:var(--ink-500);font-size:.82rem}
.footer__credit a{color:var(--ink-400);text-decoration:none;font-weight:600}
.footer__credit a:hover{color:var(--brand);text-decoration:underline}

/* The sticky header must clear the WordPress admin bar when logged in */
body.admin-bar .header{top:32px}
@media (max-width:782px){body.admin-bar .header{top:46px}}

/* --- content revision: hero support line, lede, urgent CTA --- */
.hero__sub--sm{font-size:clamp(.94rem,.9rem + .2vw,1.02rem);opacity:.82;
  margin-top:-.5rem;max-width:60ch}
/* the short punchy line above the body copy in the why-us block */
.sec-lede{font-size:clamp(1.02rem,.96rem + .35vw,1.18rem);font-weight:600;
  color:var(--ink-800);letter-spacing:-.01em;margin:.2rem 0 .1rem}
.sec-title--light + .sec-lede,.sec-lede--light{color:#fff}
/* emergency CTA reads hotter than the standard card links */
.bento__cta--urgent{color:var(--brand)}
.bento__cta--urgent .arrow{background:var(--brand);color:#fff;border-color:var(--brand)}

/* closing locality line under the hero trust chips */
.hero__local{margin:1.15rem auto 0;max-width:58ch;text-align:center;
  font-size:.88rem;line-height:1.6;color:rgba(255,255,255,.62)}
@media (max-width:560px){.hero__local{font-size:.83rem;margin-top:1rem}}

/* ---------------------------------------------------------
   FLOATING CALL BUTTON (desktop)
   The sticky .mobile-bar is display:none above 900px, which
   left desktop with no persistent call CTA. This fills that
   gap and is hidden below 901px so the two never coexist.
   --------------------------------------------------------- */
.fab-call{
  position:fixed;right:24px;bottom:24px;z-index:940;display:none;
  align-items:center;gap:12px;
  min-height:56px;padding:0 18px;
  background:var(--orange);color:var(--white);
  border-radius:var(--radius-pill);
  font-weight:700;font-size:1rem;text-decoration:none;white-space:nowrap;
  box-shadow:0 10px 30px rgba(243,106,30,.38),0 2px 8px rgba(20,33,39,.18);
  transform:translateY(140%);
  transition:transform .4s var(--ease),box-shadow .3s var(--ease),background .3s var(--ease);
}
.fab-call.is-visible{transform:translateY(0)}
.fab-call .ico{width:22px;height:22px;flex:none}

/* collapsed to a circle until hovered — the number slides out on demand */
.fab-call__label{
  max-width:0;overflow:hidden;opacity:0;
  transition:max-width .38s var(--ease),opacity .28s var(--ease);
}
.fab-call:hover,.fab-call:focus-visible{
  background:#ff8534;
  box-shadow:0 14px 38px rgba(243,106,30,.5),0 2px 8px rgba(20,33,39,.2);
}
.fab-call:hover .fab-call__label,
.fab-call:focus-visible .fab-call__label{max-width:190px;opacity:1}

@media (min-width:901px){ .fab-call{display:inline-flex} }

@media (prefers-reduced-motion:reduce){
  .fab-call{transition:none;transform:none}
  .fab-call__label{transition:none}
}
