/* ==========================================================================
   Cleaning Spark Solutions — Design System
   Palette: warm paper + ink, forest green, electric citrus "spark"
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Palette derived from the Cleaning Spark Solutions logo:
     emerald #00A86B -> teal #039C93 -> cyan #22B4D8 on deep navy #0E2033 */
  --paper: #F4F7F9;
  --paper-2: #E7EEF2;
  --white: #FFFFFF;
  --ink: #0E1B26;
  --ink-2: #3B4C59;
  --ink-3: #6B7C89;
  --line: #D5E1E8;

  --deep: #0E2033;        /* navy - headers, dark bands */
  --deep-2: #16324B;
  --brand: #00A86B;       /* logo emerald */
  --brand-2: #039C93;     /* logo teal */
  --spark: #22B4D8;       /* logo cyan - primary accent */
  --spark-dim: #1AA0C4;
  --spark-soft: #D6F1FA;
  --clay: #C4553F;

  --ok: #00A86B;
  --star: #F5A623;

  --ff-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --r-sm: 6px;
  --r: 14px;
  --r-lg: 24px;
  --r-xl: 34px;

  --shadow-sm: 0 1px 2px rgba(21, 24, 27, .06), 0 2px 8px rgba(21, 24, 27, .04);
  --shadow: 0 4px 14px rgba(21, 24, 27, .07), 0 14px 40px rgba(21, 24, 27, .06);
  --shadow-lg: 0 18px 50px rgba(14, 59, 46, .16);

  --wrap: 1180px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --sect: clamp(3.6rem, 8vw, 7rem);

  --ease: cubic-bezier(.22, .68, .32, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--ff-body);
  font-size: clamp(1rem, .97rem + .16vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  color: var(--ink);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.022em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 1.35rem + 4.6vw, 4.35rem); }
h2 { font-size: clamp(1.95rem, 1.3rem + 2.7vw, 3.05rem); }
h3 { font-size: clamp(1.3rem, 1.1rem + .85vw, 1.75rem); }
h4 { font-size: 1.1rem; letter-spacing: -.012em; }
p { text-wrap: pretty; }

::selection { background: var(--spark); color: var(--ink); }
:focus-visible { outline: 3px solid var(--deep); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap-wide { max-width: 1400px; }
.wrap-narrow { max-width: 780px; }
.section { padding-block: var(--sect); content-visibility: auto; contain-intrinsic-size: auto 720px; }
.section-sm { padding-block: clamp(2.5rem, 5vw, 4rem); content-visibility: auto; contain-intrinsic-size: auto 320px; }
.pband { content-visibility: auto; contain-intrinsic-size: auto 680px; }
.stack > * + * { margin-top: 1rem; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-body);
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--deep);
}
.eyebrow::before {
  content: ""; width: 24px; height: 2px; background: var(--spark-dim); border-radius: 2px;
}
.eyebrow--light { color: var(--spark); }
.eyebrow--light::before { background: var(--spark); }

.lead { font-size: clamp(1.06rem, 1rem + .35vw, 1.24rem); color: var(--ink-2); line-height: 1.6; }
.muted { color: var(--ink-3); }

/* Hand-drawn underline accent */
.mark { position: relative; display: inline-block; white-space: nowrap; }
.mark::after {
  content: ""; position: absolute; left: -.06em; right: -.06em; bottom: .04em; height: .34em;
  background: var(--spark); z-index: -1; border-radius: 3px;
  transform: rotate(-.6deg);
}
.mark-ink { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--spark); --fg: #06222C; --bd: var(--spark);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--bg); color: var(--fg); border: 1.5px solid var(--bd);
  font-family: var(--ff-body); font-weight: 650; font-size: .96rem; letter-spacing: -.005em;
  padding: .92rem 1.6rem; border-radius: 100px; cursor: pointer;
  text-decoration: none; text-align: center;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .2s, color .2s, border-color .2s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(34,180,216,.42); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; transition: transform .22s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--spark { --bg: var(--spark); --fg: var(--ink); --bd: var(--spark); }
.btn--spark:hover { box-shadow: 0 10px 24px rgba(184, 214, 46, .45); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--line); }
.btn--ghost:hover { --bd: var(--ink); box-shadow: none; }
.btn--ghost-light { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.32); }
.btn--ghost-light:hover { --bd: #fff; background: rgba(255,255,255,.08); box-shadow: none; }
.btn--white { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.btn--lg { padding: 1.08rem 2rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Text link with arrow */
.tlink {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 650; color: var(--deep); text-decoration: none;
  border-bottom: 1.5px solid transparent; padding-bottom: 1px;
  transition: border-color .2s, gap .2s var(--ease);
}
.tlink:hover { border-color: var(--deep); gap: .7rem; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 242, 236, .86);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 22px rgba(21,24,27,.05); }
.header__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  min-height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: .68rem; text-decoration: none; flex: none; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--ff-display); font-weight: 800; font-size: 1.075rem;
  color: var(--ink); letter-spacing: -.028em;
}
.brand__tag { font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-2); font-weight: 600; }

.nav { display: flex; align-items: center; gap: .1rem; }
.nav a {
  position: relative; text-decoration: none; color: var(--ink-2);
  font-weight: 550; font-size: .93rem; padding: .5rem .78rem; border-radius: 8px;
  transition: color .18s, background .18s;
}
.nav a:hover { color: var(--ink); background: rgba(14, 59, 46, .06); }
.nav a[aria-current="page"] { color: var(--deep); font-weight: 700; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: .78rem; right: .78rem; bottom: .18rem;
  height: 2px; background: var(--spark-dim); border-radius: 2px;
}

/* Dropdown — hover + keyboard + click safe.
   A padded ::before bridge stops the menu closing when the pointer
   travels from the trigger down into the panel. */
.has-sub { position: relative; }
.has-sub > a { display: inline-flex; align-items: center; gap: .3rem; }
.sub__chev { transition: transform .22s var(--ease); opacity: .55; }
.has-sub:hover > a .sub__chev,
.has-sub.is-open > a .sub__chev { transform: rotate(180deg); opacity: 1; }

.sub {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: min(620px, 78vw);
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow); padding: .7rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: .12rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s, transform .22s var(--ease), visibility .18s;
  z-index: 60;
}
/* invisible hover bridge */
.sub::before {
  content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px;
}
.has-sub:hover .sub,
.has-sub:focus-within .sub,
.has-sub.is-open .sub {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.sub a {
  display: flex; flex-direction: column; gap: .12rem;
  min-width: 0;
  padding: .6rem .7rem; border-radius: 10px;
  font-size: .88rem; font-weight: 650; color: var(--ink); line-height: 1.3;
}
.sub a small {
  font-weight: 450; color: var(--ink-3); font-size: .755rem; line-height: 1.35;
  /* .has-sub sets white-space:nowrap to keep the nav label on one line; that
     inherits down here and made these descriptions run past the panel edge.
     Reset it and clamp to a single tidy block. */
  white-space: normal;
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.sub a:hover, .sub a:focus-visible { background: var(--paper); color: var(--brand-2); }
.sub a::after { display: none; }

.header__cta { display: flex; align-items: center; gap: .7rem; flex: none; }
.header__tel {
  display: inline-flex; align-items: center; gap: .45rem; text-decoration: none;
  font-weight: 700; font-size: .93rem; color: var(--ink); white-space: nowrap;
}
.header__tel:hover { color: var(--deep); }
.header__tel svg { color: var(--deep); }

.burger {
  display: none; width: 46px; height: 46px; border: 1.5px solid var(--line); background: transparent;
  border-radius: 12px; cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center;
}
.burger span { display: block; width: 19px; height: 1.8px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .18s; }
.burger span + span { margin-top: 4.6px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.4px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.4px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 76px 0 0; z-index: 99; background: var(--paper);
  padding: 1.4rem var(--gut) 2.5rem; overflow-y: auto;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: opacity .22s, transform .28s var(--ease), visibility .22s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer a { display: block; text-decoration: none; color: var(--ink); font-family: var(--ff-display); font-weight: 700; font-size: 1.5rem; padding: .62rem 0; border-bottom: 1px solid var(--line); }
.drawer .drawer__sub a { font-family: var(--ff-body); font-size: 1rem; font-weight: 550; color: var(--ink-2); padding: .5rem 0 .5rem 1rem; }
.drawer__foot { margin-top: 1.6rem; display: grid; gap: .7rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(2.4rem, 5vw, 4.2rem) clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 4vw, 3.6rem); align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem; background: var(--white);
  border: 1px solid var(--line); border-radius: 100px; padding: .42rem .95rem .42rem .5rem;
  font-size: .82rem; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm);
  margin-bottom: 1.3rem;
}
.hero__badge b { color: var(--ink); font-weight: 750; }
.hero__stars { color: var(--star); letter-spacing: -1px; font-size: .95rem; }
.hero h1 { margin-bottom: 1.1rem; }
.hero__sub { max-width: 34rem; margin-bottom: 1.9rem; }
.hero__points { display: flex; flex-wrap: wrap; gap: .55rem 1.4rem; margin-top: 1.9rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.hero__points li { display: flex; align-items: center; gap: .45rem; font-size: .88rem; font-weight: 600; color: var(--ink-2); }
.hero__points svg { color: var(--deep); flex: none; }

.hero__media { position: relative; }
.hero__img {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.35; position: relative; background: var(--paper-2);
}
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__float {
  position: absolute; left: -18px; bottom: 26px; z-index: 2;
  background: var(--white); border-radius: var(--r-lg); padding: .9rem 1.15rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: .8rem;
  border: 1px solid var(--line);
}
.hero__float-ico { width: 40px; height: 40px; border-radius: 12px; background: var(--deep); color: var(--spark); display: grid; place-items: center; flex: none; }
.hero__float b { display: block; font-family: var(--ff-display); font-size: 1.32rem; color: var(--ink); line-height: 1; }
.hero__float span { font-size: .78rem; color: var(--ink-3); }
.hero__stamp {
  position: absolute; top: -14px; right: -10px; z-index: 2;
  background: var(--spark); color: var(--ink); font-family: var(--ff-display); font-weight: 800;
  font-size: .8rem; letter-spacing: -.01em; padding: .55rem 1rem; border-radius: 100px;
  transform: rotate(4deg); box-shadow: 0 6px 18px rgba(184,214,46,.42);
}
.hero__blob {
  position: absolute; width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  right: -14vw; top: -18vw; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(216,242,78,.34), rgba(216,242,78,0) 68%);
  pointer-events: none;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--deep); color: rgba(255,255,255,.9); padding: .95rem 0; overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.08);
}
.marquee__track { display: flex; gap: 2.6rem; width: max-content; animation: slide 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span { display: inline-flex; align-items: center; gap: 2.6rem; font-size: .86rem; font-weight: 600; letter-spacing: .02em; white-space: nowrap; }
.marquee span::after { content: "✦"; color: var(--spark); font-size: .7rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Cards / surfaces ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.3rem, 2.4vw, 1.9rem);
}
.card--flat { box-shadow: none; }
.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2.6rem); }
.bg-paper2 { background: var(--paper-2); }
.bg-white { background: var(--white); }
.bg-deep { background: var(--deep); color: rgba(255,255,255,.84); }
.bg-deep h1, .bg-deep h2, .bg-deep h3, .bg-deep h4 { color: #fff; }
.bg-ink { background: var(--ink); color: rgba(255,255,255,.8); }
.bg-ink h2, .bg-ink h3 { color: #fff; }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.svc {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  text-decoration: none; color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #C9C2B2; }
.svc__img { aspect-ratio: 16 / 10.4; overflow: hidden; background: var(--paper-2); }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.svc:hover .svc__img img { transform: scale(1.055); }
.svc__body { padding: 1.25rem 1.35rem 1.45rem; display: flex; flex-direction: column; flex: 1; }
.svc__num {
  position: absolute; top: .85rem; left: .85rem; z-index: 2;
  background: rgba(21,24,27,.62); backdrop-filter: blur(6px); color: #fff;
  font-family: var(--ff-display); font-weight: 700; font-size: .7rem; letter-spacing: .06em;
  padding: .25rem .6rem; border-radius: 100px;
}
.svc h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.svc p { font-size: .91rem; color: var(--ink-3); line-height: 1.55; flex: 1; }
.svc__go {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem;
  font-size: .85rem; font-weight: 700; color: var(--deep);
}
.svc__go svg { transition: transform .25s var(--ease); }
.svc:hover .svc__go svg { transform: translateX(4px); }
.svc__tag {
  position: absolute; top: .85rem; right: .85rem; z-index: 2; background: var(--spark);
  color: var(--ink); font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: .3rem .62rem; border-radius: 100px;
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: var(--white); padding: 1.6rem 1.2rem; text-align: center; }
.stat b { display: block; font-family: var(--ff-display); font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.7rem); color: var(--deep); line-height: 1; letter-spacing: -.03em; }
.stat span { display: block; margin-top: .38rem; font-size: .82rem; font-weight: 600; color: var(--ink-3); letter-spacing: .02em; }

/* ---------- Trust strip ---------- */
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem 1rem; }
.trust li {
  display: inline-flex; align-items: center; gap: .5rem; background: var(--white);
  border: 1px solid var(--line); border-radius: 100px; padding: .5rem 1rem;
  font-size: .845rem; font-weight: 620; color: var(--ink-2);
}
.trust svg { color: var(--deep); flex: none; }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(1.2rem, 2.4vw, 2rem); counter-reset: s; }
.step { position: relative; padding-top: 2.9rem; }
.step::before {
  counter-increment: s; content: "0" counter(s);
  position: absolute; top: 0; left: 0;
  font-family: var(--ff-display); font-weight: 800; font-size: 1.05rem;
  color: var(--deep); background: var(--spark); border-radius: 100px; padding: .3rem .78rem;
}
.step h3 { font-size: 1.18rem; margin-bottom: .45rem; }
.step p { font-size: .93rem; color: var(--ink-3); }

/* ---------- Checklist ---------- */
.checks { list-style: none; padding: 0; display: grid; gap: .68rem; }
.checks li { position: relative; padding-left: 1.85rem; font-size: .96rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .34em; width: 1.15rem; height: 1.15rem;
  border-radius: 50%; background: var(--deep);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='11' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='11' fill='black'/></svg>") center/contain no-repeat;
}
.checks li::after {
  content: ""; position: absolute; left: .28rem; top: .62em; width: .62rem; height: .34rem;
  border-left: 2px solid var(--spark); border-bottom: 2px solid var(--spark);
  transform: rotate(-45deg);
}
.checks--2 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .68rem 1.6rem; }

.crosses { list-style: none; padding: 0; display: grid; gap: .6rem; }
.crosses li { position: relative; padding-left: 1.7rem; font-size: .93rem; color: var(--ink-3); }
.crosses li::before { content: "×"; position: absolute; left: .35rem; top: -.06em; font-size: 1.25rem; color: var(--clay); font-weight: 700; line-height: 1.4; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 4rem); align-items: center; }
.split--wide-l { grid-template-columns: 1.15fr .85fr; }
.split__img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.split__img--tall { aspect-ratio: 3/3.6; }

/* ---------- Page hero (interior) ---------- */
.phero { position: relative; background: var(--deep); color: rgba(255,255,255,.82); overflow: hidden; }
.phero::after {
  content: ""; position: absolute; right: -10%; top: -40%; width: 60%; height: 180%;
  background: radial-gradient(circle at 50% 50%, rgba(216,242,78,.16), transparent 65%);
  pointer-events: none;
}
.phero__inner { position: relative; z-index: 1; padding-block: clamp(2.6rem, 6vw, 4.6rem) clamp(2.8rem, 6vw, 4.6rem); max-width: 46rem; }
.phero h1 { color: #fff; margin-bottom: 1rem; font-size: clamp(2.1rem, 1.35rem + 3.3vw, 3.5rem); }
.phero p { font-size: clamp(1.02rem, .98rem + .3vw, 1.18rem); color: rgba(255,255,255,.8); }
.phero .btn-group { margin-top: 1.9rem; }
.phero--img .phero__inner { max-width: 40rem; }
.phero__bg { position: absolute; inset: 0; z-index: 0; opacity: .2; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; }

/* Breadcrumbs */
.crumbs { padding-top: 1.2rem; font-size: .8rem; color: rgba(255,255,255,.6); position: relative; z-index: 1; }
.crumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.crumbs li::after { content: "/"; margin-left: .4rem; opacity: .45; }
.crumbs li:last-child::after { display: none; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--spark); }
.crumbs [aria-current] { color: rgba(255,255,255,.9); }

/* ---------- Accordion (FAQ) ---------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.2rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 1.25rem 0; font-family: var(--ff-display); font-weight: 700; font-size: 1.06rem;
  color: var(--ink); letter-spacing: -.012em; line-height: 1.35;
}
.acc__btn:hover { color: var(--deep); }
.acc__ico { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; position: relative; margin-top: .1rem; transition: background .22s, border-color .22s, transform .28s var(--ease); }
.acc__ico::before, .acc__ico::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; }
.acc__ico::before { width: 11px; height: 1.8px; }
.acc__ico::after { width: 1.8px; height: 11px; transition: opacity .22s, transform .28s var(--ease); }
.acc__btn[aria-expanded="true"] .acc__ico { background: var(--spark); border-color: var(--spark); transform: rotate(180deg); }
.acc__btn[aria-expanded="true"] .acc__ico::after { opacity: 0; }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.acc__panel[data-open="true"] { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel p { padding-bottom: 1.3rem; max-width: 62ch; color: var(--ink-2); font-size: .97rem; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.quote {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem; display: flex; flex-direction: column; gap: 1rem;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quote__stars { color: var(--star); font-size: .95rem; letter-spacing: 1px; }
.quote blockquote { font-size: .99rem; line-height: 1.62; color: var(--ink-2); }
.quote figcaption { margin-top: auto; padding-top: .9rem; border-top: 1px solid var(--paper-2); display: flex; align-items: center; gap: .7rem; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--deep); color: var(--spark); font-family: var(--ff-display); font-weight: 800; font-size: .92rem;
}
.quote figcaption b { display: block; font-size: .9rem; color: var(--ink); font-weight: 700; }
.quote figcaption span { font-size: .78rem; color: var(--ink-3); }
.quote__svc { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--deep); }

/* ---------- Suburb pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pills a, .pills span {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 100px;
  padding: .48rem 1rem; font-size: .865rem; font-weight: 600; color: var(--ink-2); text-decoration: none;
  transition: all .2s var(--ease);
}
.pills a:hover { background: var(--deep); border-color: var(--deep); color: #fff; transform: translateY(-2px); }
.pills--light a, .pills--light span { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.88); }
.pills--light a:hover { background: var(--spark); border-color: var(--spark); color: var(--ink); }

.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.area {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem 1.5rem;
}
.area h3 { font-size: 1.12rem; margin-bottom: .3rem; display: flex; align-items: center; gap: .5rem; }
.area h3 svg { color: var(--deep); flex: none; }
.area p { font-size: .87rem; color: var(--ink-3); margin-bottom: .9rem; }
.area ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .3rem .5rem; }
.area li { font-size: .82rem; color: var(--ink-2); }
.area li::after { content: "·"; margin-left: .5rem; color: var(--line); }
.area li:last-child::after { display: none; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.price { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.7rem; position: relative; display: flex; flex-direction: column; }
.price--hi { border-color: var(--deep); border-width: 2px; box-shadow: var(--shadow); }
.price__flag { position: absolute; top: -11px; left: 1.7rem; background: var(--deep); color: var(--spark); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .28rem .7rem; border-radius: 100px; }
.price h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.price__amt { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1.1; margin: .5rem 0 .1rem; }
.price__amt small { font-family: var(--ff-body); font-size: .82rem; font-weight: 500; color: var(--ink-3); letter-spacing: 0; }
.price__note { font-size: .82rem; color: var(--ink-3); margin-bottom: 1.1rem; }
.price .checks { margin-bottom: 1.4rem; flex: 1; }
.price .checks li { font-size: .89rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.6rem, 3.5vw, 3.2rem); align-items: start; }
.cinfo { display: grid; gap: .9rem; }
.cinfo__row { display: flex; gap: .95rem; align-items: flex-start; padding: 1rem 1.15rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); transition: border-color .2s, transform .2s var(--ease); text-decoration: none; color: inherit; }
a.cinfo__row:hover { border-color: var(--deep); transform: translateX(3px); }
.cinfo__ico { width: 40px; height: 40px; border-radius: 11px; background: var(--paper-2); color: var(--deep); display: grid; place-items: center; flex: none; }
.cinfo__row b { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); font-weight: 700; margin-bottom: .18rem; }
.cinfo__row span { font-size: 1rem; font-weight: 620; color: var(--ink); }
.cinfo__row small { display: block; font-size: .83rem; color: var(--ink-3); font-weight: 400; margin-top: .1rem; }

.form { display: grid; gap: 1.05rem; }
.field { display: grid; gap: .38rem; }
.field > label { font-size: .82rem; font-weight: 700; color: var(--ink); letter-spacing: -.005em; }
.field .req { color: var(--clay); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r);
  padding: .82rem 1rem; font-size: .96rem; color: var(--ink);
  transition: border-color .18s, box-shadow .18s;
}
.field textarea { resize: vertical; min-height: 118px; }
.field input::placeholder, .field textarea::placeholder { color: #A7A091; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--deep); box-shadow: 0 0 0 4px rgba(14,59,46,.1);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B747D' stroke-width='2.5' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
.field small.hint { font-size: .78rem; color: var(--ink-3); }
.field .err { font-size: .78rem; color: var(--clay); font-weight: 600; display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--clay); }
.field.is-invalid .err { display: block; }
.form__note { font-size: .8rem; color: var(--ink-3); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--deep); color: rgba(255,255,255,.82); overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; left: -5%; bottom: -60%; width: 46%; height: 190%;
  background: radial-gradient(circle at 50% 50%, rgba(216,242,78,.18), transparent 62%);
}
.cta-band__inner { position: relative; z-index: 1; text-align: center; max-width: 44rem; margin-inline: auto; }
.cta-band h2 { color: #fff; margin-bottom: .85rem; }
.cta-band p { margin-bottom: 1.9rem; font-size: 1.06rem; }
.cta-band .btn-group { justify-content: center; }
.cta-band__fine { margin-top: 1.5rem; font-size: .84rem; color: rgba(255,255,255,.58); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.62); padding-block: clamp(3rem, 6vw, 4.5rem) 0; font-size: .91rem; }
.footer h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin-bottom: 1.05rem; font-family: var(--ff-body); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.15fr; gap: clamp(1.6rem, 3vw, 2.6rem); padding-bottom: 2.8rem; }
.footer ul { list-style: none; padding: 0; display: grid; gap: .58rem; }
.footer a { text-decoration: none; transition: color .18s; }
.footer a:hover { color: var(--spark); }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__tag { color: rgba(255,255,255,.42); }
.footer__about { margin: 1.05rem 0 1.3rem; max-width: 30ch; line-height: 1.65; }
.footer__meta { display: grid; gap: .4rem; font-size: .84rem; }
.footer__meta b { color: rgba(255,255,255,.9); font-weight: 600; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.45);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer__social { display: flex; gap: .55rem; margin-top: 1.2rem; }
.footer__social a { width: 38px; height: 38px; border-radius: 11px; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: rgba(255,255,255,.72); }
.footer__social a:hover { background: var(--spark); border-color: var(--spark); color: var(--ink); }

/* ---------- Mobile sticky action bar ---------- */
.mbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); padding: .6rem .7rem calc(.6rem + env(safe-area-inset-bottom));
  gap: .55rem;
  box-shadow: 0 -6px 22px rgba(21,24,27,.07);
}
.mbar .btn { flex: 1; padding: .82rem 1rem; font-size: .92rem; }

/* Desktop floating quote */
.floatq {
  position: fixed; right: 22px; bottom: 22px; z-index: 95;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--deep); color: #fff; text-decoration: none;
  padding: .95rem 1.5rem; border-radius: 100px; font-weight: 650; font-size: .95rem;
  box-shadow: 0 12px 32px rgba(14,59,46,.32);
  transform: translateY(90px); opacity: 0;
  transition: transform .38s var(--ease), opacity .3s, box-shadow .25s;
}
.floatq.is-in { transform: none; opacity: 1; }
.floatq:hover { box-shadow: 0 16px 40px rgba(14,59,46,.42); }
.floatq__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--spark); box-shadow: 0 0 0 0 rgba(216,242,78,.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(216,242,78,0); } 100% { box-shadow: 0 0 0 0 rgba(216,242,78,0); } }

/* ---------- Reveal on scroll ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--line); border: 0; }
.tag {
  display: inline-block; background: var(--paper-2); color: var(--ink-2);
  font-size: .74rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .3rem .68rem; border-radius: 100px;
}
.center { text-align: center; }
.sec-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.sec-head.center { margin-inline: auto; }
.sec-head h2 { margin-block: .8rem .8rem; }
.rich h2 { margin-top: 2.4rem; margin-bottom: .9rem; }
.rich h3 { margin-top: 1.9rem; margin-bottom: .6rem; }
.rich p { margin-bottom: 1rem; }
.rich ul { margin: 0 0 1.2rem 1.1rem; display: grid; gap: .45rem; }
.rich > *:first-child { margin-top: 0; }

/* Related services */
.rel { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .9rem; }
.rel a {
  display: flex; align-items: center; gap: .85rem; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r); padding: .95rem 1.1rem;
  text-decoration: none; font-weight: 620; font-size: .93rem; color: var(--ink);
  transition: all .22s var(--ease);
}
.rel a:hover { border-color: var(--deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.rel a img { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; flex: none; }
.rel a svg { margin-left: auto; color: var(--deep); flex: none; }

/* 404 */
.e404 { text-align: center; padding-block: clamp(4rem, 12vw, 8rem); }
.e404 .code { font-family: var(--ff-display); font-size: clamp(5rem, 18vw, 11rem); font-weight: 800; color: var(--deep); line-height: .85; letter-spacing: -.05em; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .sub { min-width: 420px; }
}
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero__media { order: -1; max-width: 560px; }
  .hero__img { aspect-ratio: 16/11; }
  .split, .split--wide-l, .contact-grid { grid-template-columns: 1fr; }
  .split__img--tall { aspect-ratio: 16/11; }
  .split .order-first { order: -1; }
}
@media (max-width: 860px) {
  .nav, .header__tel { display: none; }
  .burger { display: flex; }
  .header__cta .btn { display: none; }
  .mbar { display: flex; }
  .floatq { display: none; }
  body { padding-bottom: 68px; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__float { left: 8px; bottom: 12px; padding: .7rem .9rem; }
  .hero__float b { font-size: 1.1rem; }
  .stats { grid-template-columns: 1fr 1fr; }
  .btn-group .btn { width: 100%; }
}

/* ---------- Print ---------- */
@media print {
  .header, .footer, .mbar, .floatq, .cta-band, .marquee { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ==========================================================================
   Additions — awards, pricing table, socials, drawer accordion
   ========================================================================== */

/* Awards */
.awards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.award {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.4rem 1.2rem; text-align: center;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}
.award:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--spark); }
.award__ico {
  width: 42px; height: 42px; border-radius: 50%; margin: 0 auto .8rem;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--spark)); color: #fff;
}
.award b { display: block; font-family: var(--ff-display); font-size: 1.5rem; color: var(--ink); line-height: 1; }
.award span { display: block; margin-top: .35rem; font-size: .88rem; font-weight: 620; color: var(--ink-2); line-height: 1.35; }
.award small { display: block; margin-top: .3rem; font-size: .74rem; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; }

/* Pricing table */
.ptable-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ptable { width: 100%; border-collapse: collapse; min-width: 420px; }
.ptable td { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.ptable tr:last-child td { border-bottom: 0; }
.ptable a { color: var(--ink); text-decoration: none; font-weight: 620; }
.ptable a:hover { color: var(--brand-2); text-decoration: underline; }
.ptable .pt-right { text-align: right; white-space: nowrap; }
.ptable .pt-right b { color: var(--brand-2); font-size: 1rem; }
.ptable .muted { font-size: .82rem; }

/* Social buttons */
.social-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.1rem; }
.social-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 100px;
  padding: .58rem 1.1rem; font-size: .88rem; font-weight: 650;
  color: var(--ink); text-decoration: none;
  transition: all .2s var(--ease);
}
.social-btn:hover { border-color: var(--brand); color: var(--brand-2); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* App-icon style social links — footer */
.footer__social { display: flex; gap: .55rem; align-items: center; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px;
  color: #fff; transition: transform .2s var(--ease), opacity .2s;
}
.footer__social a:hover { transform: translateY(-2px); opacity: .85; }
.social-fb { background: #1877F2; }
.social-google { background: #fff; border: 1px solid #dadce0; }
.social-google svg { color: #4285F4; }
.social-yelp { background: #d32323; }
.social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* App-icon style social buttons — contact page */
.social-btn.social-fb { background: #1877F2; color: #fff; border-color: #1877F2; }
.social-btn.social-fb:hover { background: #0d5cbf; border-color: #0d5cbf; color: #fff; }
.social-btn.social-google { background: #fff; color: #3c4043; border-color: #dadce0; }
.social-btn.social-google:hover { background: #f1f3f4; border-color: #dadce0; color: #3c4043; }
.social-btn.social-yelp { background: #d32323; color: #fff; border-color: #d32323; }
.social-btn.social-yelp:hover { background: #b01c1c; border-color: #b01c1c; color: #fff; }
.social-btn.social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; border-color: transparent; }
.social-btn.social-ig:hover { opacity: .9; color: #fff; }

/* Checkbox field */
.field--check { display: flex; flex-direction: row; align-items: flex-start; gap: .6rem; }
.field--check input { width: auto; margin-top: .25rem; accent-color: var(--brand); flex: none; }
.field--check label { font-weight: 450; font-size: .9rem; color: var(--ink-2); }

/* Drawer services accordion */
.drawer__toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: 0; border-bottom: 1px solid var(--line); cursor: pointer;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.5rem; color: var(--ink);
  padding: .62rem 0; text-align: left;
}
.drawer__plus { position: relative; width: 20px; height: 20px; flex: none; }
.drawer__plus::before, .drawer__plus::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--ink); border-radius: 2px;
  transform: translate(-50%,-50%);
}
.drawer__plus::before { width: 15px; height: 2px; }
.drawer__plus::after { width: 2px; height: 15px; transition: transform .25s var(--ease), opacity .2s; }
.drawer__toggle[aria-expanded="true"] .drawer__plus::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.drawer__sub { display: none; padding-left: .2rem; }
.drawer__sub.is-open { display: block; }
.drawer__sub a {
  font-family: var(--ff-body) !important; font-size: 1rem !important;
  font-weight: 550 !important; color: var(--ink-2) !important; padding: .52rem 0 .52rem 1rem !important;
}

/* Brand lockup */
.brand__mark { flex: none; }
.brand__name { letter-spacing: -.03em; }
.brand__tag { letter-spacing: .18em; }

/* ==========================================================================
   Nav hardening — the "Services" tab must never wrap or drop its chevron,
   even if this stylesheet is served stale/partially or a font is slow.
   ========================================================================== */
.nav { flex-wrap: nowrap; }
.nav > a,
.has-sub { white-space: nowrap; }
.has-sub > a {
  display: inline-flex !important;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
}
.sub__chev {
  display: inline-block !important;
  flex: none;
  vertical-align: middle;
}

/* Intermediate widths: nav + phone + button stop fitting before the
   860px mobile breakpoint. Tighten, then drop the phone text (the number
   is still one tap away in the sticky bar and the footer). */
@media (max-width: 1180px) {
  .nav a { padding-inline: .58rem; font-size: .9rem; }
  .header__cta { gap: .5rem; }
}
@media (max-width: 1040px) {
  .nav a { padding-inline: .45rem; font-size: .875rem; }
  .header__tel { display: none; }
}

/* ==========================================================================
   Breadcrumbs — clearer affordance + schema-matched visible trail
   ========================================================================== */
.crumbs { padding-top: 1.35rem; padding-bottom: .1rem; font-size: .815rem; }
.crumbs ol { align-items: center; gap: .45rem; }
.crumbs li { display: inline-flex; align-items: center; gap: .45rem; }
.crumbs li::after {
  content: "›"; margin-left: .1rem; opacity: .5; font-size: 1.05em; line-height: 1;
}
.crumbs a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .18s, border-color .18s;
}
.crumbs a:hover { color: var(--spark); border-bottom-color: var(--spark); }
.crumbs [aria-current] { color: #fff; font-weight: 600; }

/* Breadcrumbs on light backgrounds (if a page hero is ever light) */
.crumbs--dark { color: var(--ink-3); }
.crumbs--dark a { color: var(--ink-3); }
.crumbs--dark a:hover { color: var(--brand-2); border-bottom-color: var(--brand-2); }
.crumbs--dark [aria-current] { color: var(--ink); }

/* Footer: the single Services column holds 14 items — split it into two
   sub-columns on wider screens so the footer doesn't run excessively tall. */
.footer ul.footer__cols {
  display: block !important;   /* beat the .footer ul { display:grid } rule */
  columns: 2;
  column-gap: 1.9rem;
}
/* Give the Services column extra width so 2 sub-columns don't force
   every label onto three lines. */
.footer__grid { grid-template-columns: 1.45fr 1.75fr 1fr 1fr; }
@media (max-width: 1080px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .footer__grid { grid-template-columns: 1fr; } }
.footer__cols li { break-inside: avoid; margin-bottom: .58rem; }
@media (max-width: 900px) { .footer__cols { columns: 1; } }

/* 'All suburbs' link needs to be legible on the dark footer */
.footer .tlink {
  display: inline-flex; color: var(--spark);
  border-bottom-color: transparent;
}
.footer .tlink:hover { border-bottom-color: var(--spark); }

/* Stats band directly under the hero — sits tight to the hero, no big gap */
.stats-band { padding-top: 0; padding-bottom: clamp(2rem, 4vw, 3rem); }
.stats--hero { box-shadow: var(--shadow-sm); }
.stats--hero .stat b { color: var(--brand-2); }

/* ==========================================================================
   Quote form — add-on chips, consent, instant contact
   ========================================================================== */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { position: relative; cursor: pointer; }
.chip input {
  position: absolute; opacity: 0; width: 0; height: 0; margin: 0;
}
.chip span {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--white); border: 1.5px solid var(--line); border-radius: 100px;
  padding: .55rem 1.05rem; font-size: .89rem; font-weight: 600; color: var(--ink-2);
  transition: all .18s var(--ease); user-select: none;
}
.chip span::before {
  content: ""; width: 15px; height: 15px; border-radius: 50%;
  border: 1.5px solid var(--line); flex: none; transition: all .18s var(--ease);
}
.chip:hover span { border-color: var(--brand); color: var(--ink); }
.chip input:checked + span {
  background: var(--spark-soft); border-color: var(--spark); color: var(--ink);
}
.chip input:checked + span::before {
  background: var(--spark); border-color: var(--spark);
  box-shadow: inset 0 0 0 2px var(--white);
}
.chip input:focus-visible + span { outline: 3px solid var(--deep); outline-offset: 2px; }

/* Consent row */
.field--check .req { color: var(--clay); }
.field--check.is-invalid label { color: var(--clay); }
.hp-check { position: absolute !important; left: -9999px !important; }

/* Instant contact row under the form */
.instant { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.instant__label {
  display: block; font-size: .74rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: .8rem;
}
.instant__row { display: flex; flex-wrap: wrap; gap: .6rem; }
.instant__row .btn { flex: 1; min-width: 118px; padding: .8rem 1rem; font-size: .9rem; }

/* Footer payment methods + website credit */
.footer__pay { margin-top: 1.4rem; }
.footer__pay h4 { margin-bottom: .5rem; }
.footer__pay p { font-size: .875rem; line-height: 1.6; color: rgba(255,255,255,.72); }
.footer__credit { color: rgba(255,255,255,.45); }
.footer__credit a { color: rgba(255,255,255,.72); }
.footer__credit a:hover { color: var(--spark); }
.footer__bottom { gap: .5rem 1.6rem; }

/* ==========================================================================
   VISUAL LAYER — backgrounds, texture, depth and graphic accents
   Everything here is CSS/SVG so it costs no extra image requests.
   ========================================================================== */

/* ---------- 1. Ambient page background ----------
   A soft dual-tint wash so the page is never flat white. */
body {
  background-color: var(--paper);
  background-image:
    radial-gradient(58rem 34rem at 88% -6%,  rgba(34,180,216,.13), transparent 62%),
    radial-gradient(48rem 30rem at -8% 14%,  rgba(0,168,107,.09),  transparent 60%),
    radial-gradient(46rem 30rem at 106% 82%, rgba(34,180,216,.08), transparent 62%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media (max-width: 860px) { body { background-attachment: scroll; } }

/* ---------- 2. Subtle dot texture on tinted bands ---------- */
.bg-paper2 {
  position: relative;
  background-color: var(--paper-2);
  background-image: radial-gradient(rgba(14,32,51,.055) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ---------- 3. Dark sections: mesh gradient + grid, not flat navy ---------- */
.bg-deep, .phero, .cta-band, .footer {
  position: relative;
  isolation: isolate;
}
.bg-deep::before, .phero::before, .cta-band::after, .footer::before {
  content: "";
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    radial-gradient(38rem 26rem at 12% 8%,   rgba(34,180,216,.30), transparent 60%),
    radial-gradient(34rem 24rem at 88% 92%,  rgba(0,168,107,.24),  transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 40%);
}
/* faint grid lines over the dark bands */
.bg-deep::after, .cta-band::before {
  content: "";
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .55;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 78%);
          mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 78%);
}

/* ---------- 4. White sections get a tint + hairline, not stark white ---------- */
.bg-white {
  background-color: #fff;
  background-image: linear-gradient(180deg, rgba(214,241,250,.34), rgba(255,255,255,0) 32%);
  border-top: 1px solid rgba(14,32,51,.05);
  border-bottom: 1px solid rgba(14,32,51,.05);
}

/* ---------- 5. Section-edge curve, so bands don't butt together flatly ---------- */
.curve-top { position: relative; }
.curve-top::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 46px;
  background: inherit;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 100%, #000 62%, transparent 63%);
          mask-image: radial-gradient(120% 100% at 50% 100%, #000 62%, transparent 63%);
  transform: translateY(-45px);
  pointer-events: none;
}

/* ---------- 6. Cards: real depth + a brand accent on hover ---------- */
.svc, .card, .quote, .area, .price, .award, .stat {
  position: relative;
  background-image: linear-gradient(180deg, rgba(214,241,250,.28), rgba(255,255,255,0) 44%);
}
.svc::after, .card::after, .quote::after, .area::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--spark));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  opacity: 0; transition: opacity .3s var(--ease); pointer-events: none;
}
.svc:hover::after, .card:hover::after, .quote:hover::after, .area:hover::after { opacity: 1; }
.svc:hover, .quote:hover, .area:hover { box-shadow: var(--shadow-lg); }

/* Service card image: gradient scrim so the label always reads */
.svc__img { position: relative; }
.svc__img::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(14,32,51,.16) 0%, transparent 34%, rgba(14,32,51,.10) 100%);
}

/* ---------- 7. Stats band: gradient fill + accent rule ---------- */
.stats { background: var(--line); }
.stat {
  background-color: #fff;
  background-image: linear-gradient(180deg, rgba(214,241,250,.55), #fff 62%);
}
.stat { position: relative; overflow: hidden; }
.stat::before {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  top: 10px; width: 44px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--brand), var(--spark));
}
.stat { padding-top: 1.95rem; }
.stats--hero { box-shadow: 0 10px 34px rgba(14,32,51,.09); }

/* ---------- 8. Numbered process steps: connector line ---------- */
.steps { position: relative; }
.step::after {
  content: ""; position: absolute; top: 1.05rem; left: 3.6rem; right: -1rem; height: 2px;
  background: repeating-linear-gradient(90deg, var(--spark) 0 7px, transparent 7px 14px);
  opacity: .5;
}
.step:last-child::after { display: none; }
@media (max-width: 780px) { .step::after { display: none; } }

/* ---------- 9. Eyebrow pill treatment ---------- */
.eyebrow {
  background: rgba(34,180,216,.11);
  padding: .34rem .8rem .34rem .7rem;
  border-radius: 100px;
}
.eyebrow--light { background: rgba(255,255,255,.11); }

/* ---------- 10. Hero: richer ambient shapes ---------- */
.hero::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: -12%; bottom: -30%; width: 40rem; height: 40rem; max-width: 70vw; max-height: 70vw;
  background: radial-gradient(circle, rgba(0,168,107,.14), transparent 66%);
}
.hero__img { position: relative; }
.hero__img::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.32);
}
/* floating accent ring behind the hero image */
.hero__media::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  right: -3.5rem; top: -3.5rem; width: 13rem; height: 13rem; border-radius: 50%;
  border: 2px dashed rgba(34,180,216,.34);
  animation: spin 46s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero__media::before { animation: none; } }
@media (max-width: 940px) { .hero__media::before { display: none; } }

/* ---------- 11. Trust pills + area pills lift ---------- */
.trust li {
  background-image: linear-gradient(180deg, #fff, rgba(214,241,250,.5));
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.trust li:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- 12. Section heading flourish ---------- */
.sec-head.center h2 { position: relative; display: inline-block; }
.sec-head.center h2::after {
  content: ""; display: block; width: 62px; height: 3px; margin: .85rem auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand), var(--spark));
}

/* ---------- 13. Buttons: gradient + sheen ---------- */
.btn:not(.btn--ghost):not(.btn--ghost-light) {
  background-image: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0) 58%);
}
.btn--spark { box-shadow: 0 4px 14px rgba(34,180,216,.28); }
.btn--spark:hover { box-shadow: 0 12px 28px rgba(34,180,216,.42); }

/* ---------- 14. Related-service tiles ---------- */
.rel a { background-image: linear-gradient(180deg, rgba(214,241,250,.4), #fff 60%); }
.rel a:hover { background-image: linear-gradient(180deg, rgba(214,241,250,.8), #fff 70%); }

/* ---------- 15. Accordion open state ---------- */
.acc__item { transition: background .22s; border-radius: var(--r); }
.acc__item:has(.acc__btn[aria-expanded="true"]) {
  background: linear-gradient(180deg, rgba(214,241,250,.45), transparent);
  padding-inline: 1rem;
  margin-inline: -1rem;
}

/* ---------- 16. Footer depth ---------- */
.footer { background-color: var(--ink); }
.footer__grid { position: relative; z-index: 1; }
.footer__bottom { position: relative; z-index: 1; }

/* ---------- 17. Marquee gradient edges ---------- */
.marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  background-image: linear-gradient(90deg, var(--deep), var(--deep-2) 50%, var(--deep));
}

/* ---------- 18. Panel (quote form) lift ---------- */
.panel {
  background-image: linear-gradient(180deg, rgba(214,241,250,.42), #fff 30%);
  box-shadow: var(--shadow);
}

/* ==========================================================================
   PARALLAX IMAGE BANDS — homepage
   Full-bleed cleaner photography fixed behind the scroll, with a dark scrim
   so text stays readable. Falls back to normal scroll on touch devices,
   where background-attachment:fixed is unreliable/janky.
   ========================================================================== */
.pband {
  position: relative;
  isolation: isolate;
  background-color: var(--deep);
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: rgba(255, 255, 255, .9);
  overflow: hidden;
}
.pband h2, .pband h3, .pband h4 { color: #fff; }

/* dark + brand scrim so any photo underneath still reads */
.pband::before {
  content: "";
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(105deg, rgba(9, 22, 34, .93) 0%, rgba(9, 22, 34, .80) 42%, rgba(9, 22, 34, .58) 100%),
    radial-gradient(46rem 30rem at 88% 12%, rgba(34, 180, 216, .34), transparent 62%),
    radial-gradient(38rem 26rem at 6% 92%, rgba(0, 168, 107, .28), transparent 60%);
}
/* faint grid, matches the other dark bands */
.pband::after {
  content: "";
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(75% 65% at 50% 45%, #000, transparent 80%);
          mask-image: radial-gradient(75% 65% at 50% 45%, #000, transparent 80%);
}

/* the actual photographs */
.pband--carpet   { background-image: url("../img/svc-carpet.jpg"); background-image: image-set(url("../img/svc-carpet.webp") type("image/webp"), url("../img/svc-carpet.jpg") type("image/jpeg")); }
.pband--team     { background-image: url("../img/team-van.jpg"); background-image: image-set(url("../img/team-van.webp") type("image/webp"), url("../img/team-van.jpg") type("image/jpeg")); }
.pband--window   { background-image: url("../img/svc-window.jpg"); background-image: image-set(url("../img/svc-window.webp") type("image/webp"), url("../img/svc-window.jpg") type("image/jpeg")); }
.pband--spring   { background-image: url("../img/svc-spring.jpg"); background-image: image-set(url("../img/svc-spring.webp") type("image/webp"), url("../img/svc-spring.jpg") type("image/jpeg")); }
.pband--oven     { background-image: url("../img/svc-oven.jpg"); background-image: image-set(url("../img/svc-oven.webp") type("image/webp"), url("../img/svc-oven.jpg") type("image/jpeg")); }

/* Touch / small screens: fixed attachment is unreliable, so scroll normally
   and load the lighter 700px variant. */
@media (max-width: 900px), (hover: none) {
  .pband { background-attachment: scroll; background-position: center; }
  .pband--carpet { background-image: url("../img/svc-carpet-700.jpg"); background-image: image-set(url("../img/svc-carpet-700.webp") type("image/webp"), url("../img/svc-carpet-700.jpg") type("image/jpeg")); }
  .pband--team   { background-image: url("../img/team-van-800.jpg"); background-image: image-set(url("../img/team-van-800.webp") type("image/webp"), url("../img/team-van-800.jpg") type("image/jpeg")); }
  .pband--window { background-image: url("../img/svc-window-700.jpg"); background-image: image-set(url("../img/svc-window-700.webp") type("image/webp"), url("../img/svc-window-700.jpg") type("image/jpeg")); }
  .pband--spring { background-image: url("../img/svc-spring-700.jpg"); background-image: image-set(url("../img/svc-spring-700.webp") type("image/webp"), url("../img/svc-spring-700.jpg") type("image/jpeg")); }
  .pband--oven   { background-image: url("../img/svc-oven-700.jpg"); background-image: image-set(url("../img/svc-oven-700.webp") type("image/webp"), url("../img/svc-oven-700.jpg") type("image/jpeg")); }
}

/* stat / trust items sitting on a parallax band */
.pband .stats { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.18); }
.pband .stat {
  background-color: rgba(11, 26, 38, .55);
  background-image: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pband .stat b { color: #fff; }
.pband .stat span { color: rgba(255,255,255,.72); }
.pband .trust li {
  background: rgba(255,255,255,.1);
  background-image: none;
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.92);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pband .trust svg { color: var(--spark); }
.pband .checks li { color: rgba(255,255,255,.88); }
.pband .lead, .pband p { color: rgba(255,255,255,.82); }

/* glass card for use over photography */
.glass {
  background: rgba(12, 28, 40, .58);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  color: rgba(255,255,255,.88);
}
.glass h2, .glass h3 { color: #fff; }
.glass .checks li::before { background: var(--spark); }
.glass .checks li::after { border-color: var(--ink); }

/* quote band: oversized mark */
.pquote { position: relative; text-align: center; max-width: 52rem; margin-inline: auto; }
.pquote { padding-top: 3.4rem; }
.pquote::before {
  content: "\201C";
  position: absolute; top: -1.6rem; left: 50%; transform: translateX(-50%);
  font-family: var(--ff-display); font-size: 8rem; line-height: 1;
  color: var(--spark); opacity: .22; pointer-events: none; z-index: -1;
}
.pquote blockquote {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.35rem, 1.05rem + 1.5vw, 2.2rem);
  line-height: 1.32; color: #fff; letter-spacing: -.02em; margin-bottom: 1.3rem;
}
.pquote figcaption { font-size: .95rem; color: rgba(255,255,255,.72); }
.pquote figcaption b { color: var(--spark); font-weight: 700; }
.pquote__stars { color: var(--star); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 1rem; }

/* ================================================================
   v12 — high-intent residential landing pages
   Exit package, carpet steam, window & track. Conversion components.
   ================================================================ */

/* ---------- landing hero ---------- */
.lhero {
  position: relative;
  background: var(--deep);
  color: #fff;
  padding: clamp(2rem, 5vw, 3.4rem) 0 clamp(3rem, 6vw, 4.6rem);
  overflow: hidden;
  isolation: isolate;
}
.lhero__bg { position: absolute; inset: 0; z-index: -2; }
.lhero__bg img { width: 100%; height: 100%; object-fit: cover; }
.lhero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(14,32,51,.96) 0%, rgba(14,32,51,.9) 46%, rgba(14,32,51,.72) 100%),
    radial-gradient(70% 100% at 80% 20%, rgba(34,180,216,.22), transparent 70%);
}
.lhero--alt::before {
  background:
    linear-gradient(100deg, rgba(14,32,51,.96) 0%, rgba(11,44,42,.9) 50%, rgba(14,32,51,.7) 100%),
    radial-gradient(70% 100% at 78% 24%, rgba(0,168,107,.26), transparent 70%);
}
.lhero--alt2::before {
  background:
    linear-gradient(100deg, rgba(14,32,51,.96) 0%, rgba(13,40,58,.9) 50%, rgba(14,32,51,.7) 100%),
    radial-gradient(70% 100% at 76% 22%, rgba(34,180,216,.3), transparent 70%);
}
.lhero .crumbs { position: relative; z-index: 1; margin-bottom: clamp(1.2rem, 3vw, 2rem); }
.lhero .crumbs a, .lhero .crumbs span { color: rgba(255,255,255,.72); }
.lhero .crumbs a:hover { color: #fff; }

.lhero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr);
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: start;
}
.lhero__copy h1 {
  font-size: clamp(1.95rem, 1.2rem + 3.1vw, 3.35rem);
  line-height: 1.08; letter-spacing: -.032em;
  margin: 1rem 0 1.1rem; color: #fff;
}
.lhero__copy .lead { color: rgba(255,255,255,.84); max-width: 46rem; margin-bottom: 1.7rem; }
.lhero .hero__badge { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }

/* trust badges */
.badges {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: .9rem 1.4rem;
}
.badge { display: flex; align-items: center; gap: .7rem; }
.badge__ico {
  flex: none; width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(34,180,216,.16);
  border: 1px solid rgba(34,180,216,.4);
  color: var(--spark);
}
.badge b { display: block; font-size: .87rem; font-weight: 700; color: #fff; line-height: 1.25; }
.badge span span { display: block; font-size: .78rem; color: rgba(255,255,255,.62); margin-top: .1rem; }

/* hero price card */
.lhero__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  border-radius: var(--r-xl);
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.lhero__flag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--spark); color: var(--deep);
  font-size: .74rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: .34rem .7rem; border-radius: 100px; margin-bottom: 1.1rem;
}
.lhero__from { display: block; font-size: .84rem; color: rgba(255,255,255,.68); }
.lhero__amt {
  display: block; font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2.6rem, 2rem + 2.4vw, 3.5rem); line-height: 1;
  color: #fff; letter-spacing: -.035em; margin: .2rem 0 .35rem;
}
.lhero__note { display: block; font-size: .78rem; color: rgba(255,255,255,.55); }
.lhero__list {
  list-style: none; padding: 1.2rem 0 1.3rem; margin: 1.2rem 0 0;
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid; gap: .6rem;
}
.lhero__list li {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .9rem; color: rgba(255,255,255,.86);
}
.lhero__list svg { flex: none; color: var(--brand); margin-top: .12rem; }

@media (max-width: 940px) {
  .lhero__grid { grid-template-columns: 1fr; }
  .lhero__side { max-width: 30rem; }
}

/* ---------- quote builder ---------- */
.qb {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.qb__head {
  padding: clamp(1.5rem, 3vw, 2.2rem) clamp(1.4rem, 3vw, 2.4rem) 0;
  max-width: 44rem;
}
.qb__head h3 {
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
  letter-spacing: -.025em; margin: .7rem 0 .6rem;
}
.qb__head p { color: var(--ink-3); font-size: .96rem; }
.qb__body {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .8fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.4rem, 3vw, 2.4rem) clamp(1.5rem, 3vw, 2.4rem);
}
.qb__row + .qb__row { margin-top: 1.5rem; }
.qb__label {
  display: block; font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink-3); margin-bottom: .7rem;
}
.qb__opts { display: flex; flex-wrap: wrap; gap: .5rem; }
.qb__opt {
  min-width: 3.1rem; padding: .62rem .9rem;
  font-family: var(--ff-body); font-size: .98rem; font-weight: 700;
  color: var(--ink-2); background: var(--paper);
  border: 1.5px solid var(--line); border-radius: 12px;
  cursor: pointer; transition: all .16s ease;
}
.qb__opt:hover { border-color: var(--spark); color: var(--deep); }
.qb__opt.is-on {
  background: var(--deep); border-color: var(--deep); color: #fff;
  box-shadow: 0 6px 16px rgba(14,32,51,.22);
}
.qb__opt:focus-visible { outline: 2px solid var(--spark); outline-offset: 2px; }

.qb__adds { display: grid; gap: .7rem; }
.qb__add {
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: start; gap: .85rem;
  padding: .95rem 1.05rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease;
}
.qb__add:hover { border-color: var(--spark); }
.qb__add input { position: absolute; opacity: 0; width: 0; height: 0; }
.qb__add-box {
  flex: none; width: 22px; height: 22px; border-radius: 7px;
  border: 1.5px solid var(--line); background: #fff;
  display: grid; place-items: center; margin-top: .1rem;
  color: transparent; transition: all .16s ease;
}
.qb__add input:checked ~ .qb__add-box {
  background: var(--brand); border-color: var(--brand); color: #fff;
}
.qb__add input:focus-visible ~ .qb__add-box { outline: 2px solid var(--spark); outline-offset: 2px; }
.qb__add:has(input:checked) { background: rgba(0,168,107,.05); border-color: rgba(0,168,107,.4); }
.qb__add-txt b { display: block; font-size: .96rem; margin-bottom: .18rem; }
.qb__add-txt span { display: block; font-size: .85rem; color: var(--ink-3); line-height: 1.45; }
.qb__add-amt {
  font-family: var(--ff-display); font-weight: 700; font-size: 1rem;
  color: var(--deep); white-space: nowrap;
}

/* output panel */
.qb__out {
  background: var(--deep);
  border-radius: var(--r-lg);
  padding: clamp(1.3rem, 2.6vw, 1.8rem);
  color: #fff;
  align-self: start;
  position: sticky; top: 90px;
}
.qb__total { text-align: center; padding-bottom: 1.1rem; border-bottom: 1px solid rgba(255,255,255,.14); }
.qb__total-lbl { display: block; font-size: .8rem; color: rgba(255,255,255,.6); letter-spacing: .04em; text-transform: uppercase; font-weight: 700; }
.qb__amt {
  display: block; font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2.6rem, 2rem + 2.6vw, 3.6rem); line-height: 1.02;
  letter-spacing: -.035em; margin: .25rem 0 .1rem;
}
.qb__save {
  display: inline-block; font-size: .82rem; font-weight: 700;
  color: #6BE0A8; min-height: 1.2em;
}
.qb__lines { list-style: none; padding: 1.1rem 0; margin: 0; display: grid; gap: .5rem; }
.qb__lines li {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: .89rem; color: rgba(255,255,255,.78);
}
.qb__lines li b { color: #fff; font-weight: 700; white-space: nowrap; }
.qb__lines li.is-disc { color: #6BE0A8; }
.qb__lines li.is-disc b { color: #6BE0A8; }
.qb__fine { font-size: .74rem; color: rgba(255,255,255,.5); line-height: 1.5; margin-top: .9rem; }

@media (max-width: 880px) {
  .qb__body { grid-template-columns: 1fr; }
  .qb__out { position: static; }
}

/* ---------- agent checklist ---------- */
.ck { border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; background: var(--white); }
.ck__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem clamp(1.1rem, 2.4vw, 1.7rem);
  background: var(--paper); border-bottom: 1px solid var(--line);
  font-size: .89rem; color: var(--ink-3);
}
.ck__bar b { color: var(--deep); font-weight: 800; }
.ck__all {
  font-family: var(--ff-body); font-size: .85rem; font-weight: 700;
  color: var(--spark-dim); background: none; border: none; cursor: pointer;
  padding: .3rem .1rem; border-bottom: 1.5px solid transparent;
}
.ck__all:hover { border-bottom-color: var(--spark-dim); }
.ck__group + .ck__group { border-top: 1px solid var(--line); }
.ck__btn {
  width: 100%; display: flex; align-items: center; gap: .9rem;
  padding: 1.05rem clamp(1.1rem, 2.4vw, 1.7rem);
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--ff-body); color: var(--ink);
}
.ck__btn:hover { background: var(--paper); }
.ck__ico {
  flex: none; width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(34,180,216,.1); color: var(--spark-dim);
}
.ck__title { flex: 1; font-weight: 700; font-size: 1rem; letter-spacing: -.01em; }
.ck__count { font-size: .78rem; color: var(--ink-3); font-weight: 600; white-space: nowrap; }
.ck__chev {
  flex: none; width: 10px; height: 10px; margin-left: .3rem;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .22s ease;
}
.ck__btn[aria-expanded="true"] .ck__chev { transform: rotate(-135deg) translate(-3px, -3px); }
.ck__btn[aria-expanded="true"] .ck__ico { background: var(--deep); color: #fff; }
.ck__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.ck__panel > div { overflow: hidden; }
/* the button sits inside an h3 for document outline, so the panel is the
   h3's sibling, not the button's. */
.ck__group h3:has(.ck__btn[aria-expanded="true"]) + .ck__panel { grid-template-rows: 1fr; }
.ck__list {
  list-style: none; margin: 0;
  padding: 0 clamp(1.1rem, 2.4vw, 1.7rem) 1.3rem clamp(1.1rem, 2.4vw, 1.7rem);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: .85rem 1.6rem;
}
.ck__list li { display: flex; align-items: flex-start; gap: .6rem; }
.ck__tick {
  flex: none; width: 19px; height: 19px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center; margin-top: .12rem;
}
.ck__list b { display: block; font-size: .92rem; font-weight: 700; margin-bottom: .12rem; }
.ck__list span span { display: block; font-size: .83rem; color: var(--ink-3); line-height: 1.45; }

/* ---------- bundle band (home page) ---------- */
.bundle {
  background: linear-gradient(102deg, #0E2033 0%, #13324D 52%, #0F3E4C 100%);
  color: #fff; position: relative; overflow: hidden;
  padding: clamp(2rem, 4.5vw, 3.2rem) 0;
}
.bundle::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(56% 130% at 88% 40%, rgba(34,180,216,.24), transparent 68%);
}
.bundle__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, .72fr);
  gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center;
}
.bundle__flag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(34,180,216,.16); border: 1px solid rgba(34,180,216,.42);
  color: var(--spark); font-size: .74rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase;
  padding: .36rem .74rem; border-radius: 100px; margin-bottom: 1rem;
}
.bundle__txt h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.9vw, 2.5rem);
  letter-spacing: -.03em; line-height: 1.12; color: #fff; margin-bottom: .85rem;
}
.bundle__txt p { color: rgba(255,255,255,.8); max-width: 44rem; font-size: 1rem; }
.bundle__txt p b { color: var(--spark); font-weight: 800; }
.bundle__txt em { font-style: italic; color: #fff; }
.bundle__pts {
  list-style: none; padding: 0; margin: 1.3rem 0 0;
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem;
}
.bundle__pts li { display: flex; align-items: center; gap: .45rem; font-size: .89rem; color: rgba(255,255,255,.86); }
.bundle__pts svg { color: var(--brand); flex: none; }
.bundle__act {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: var(--r-xl);
  padding: clamp(1.3rem, 2.6vw, 1.8rem); text-align: center;
}
.bundle__from { display: block; font-size: .82rem; color: rgba(255,255,255,.66); }
.bundle__amt {
  display: block; font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2.4rem, 1.9rem + 2.2vw, 3.2rem); line-height: 1;
  letter-spacing: -.035em; margin: .2rem 0 .3rem;
}
.bundle__note { display: block; font-size: .77rem; color: rgba(255,255,255,.54); margin-bottom: 1.2rem; }
.bundle__link {
  display: inline-block; margin-top: .8rem; font-size: .84rem;
  color: rgba(255,255,255,.75); border-bottom: 1px solid rgba(255,255,255,.28); padding-bottom: 2px;
}
.bundle__link:hover { color: #fff; border-bottom-color: var(--spark); }
@media (max-width: 900px) { .bundle__inner { grid-template-columns: 1fr; } }

/* ---------- vs comparison ---------- */
.vs { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; margin-top: 1.6rem; }
.vs__col { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.3rem 1.4rem; }
.vs__col h3 { font-size: 1rem; margin-bottom: .9rem; letter-spacing: -.01em; }
.vs__col--hi { border-color: var(--brand); box-shadow: 0 10px 30px rgba(0,168,107,.13); position: relative; }
.vs__col--hi h3 { color: var(--brand); }

/* ---------- receipt block ---------- */
.rcpt { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(1.4rem, 3.5vw, 3rem); align-items: start; }
.rcpt__doc { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.rcpt__doc-head { background: var(--deep); color: #fff; padding: 1rem 1.3rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.rcpt__doc-t { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; }
.rcpt__doc-n { font-size: .74rem; color: var(--spark); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.rcpt__doc-list { list-style: none; padding: .4rem 1.3rem 1.2rem; margin: 0; }
.rcpt__doc-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px dashed var(--line); font-size: .89rem; }
.rcpt__doc-list li:last-child { border-bottom: none; }
.rcpt__doc-list span { color: var(--ink-3); }
.rcpt__doc-list b { color: var(--deep); font-weight: 700; text-align: right; }
.rcpt__txt h3 { font-size: clamp(1.25rem, 1.05rem + .9vw, 1.7rem); letter-spacing: -.022em; margin-bottom: .9rem; }
.rcpt__txt p { color: var(--ink-2); margin-bottom: .9rem; }
@media (max-width: 820px) { .rcpt { grid-template-columns: 1fr; } }

/* ---------- scope columns ---------- */
.scope { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.1rem; }
.scope__col { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem 1.5rem 1.6rem; }
.scope__ico {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(135deg, rgba(0,168,107,.12), rgba(34,180,216,.14));
  color: var(--brand); margin-bottom: 1rem;
}
.scope__col h3 { font-size: 1.1rem; margin-bottom: .9rem; letter-spacing: -.015em; }

/* ---------- mini two-up ---------- */
.mini { display: grid; gap: 1rem; }
.mini__item { background: var(--paper); border-left: 3px solid var(--spark); border-radius: 0 var(--r) var(--r) 0; padding: 1.1rem 1.3rem; }
.mini__item b { display: block; font-size: 1rem; margin-bottom: .35rem; }
.mini__item p { font-size: .92rem; color: var(--ink-2); margin-bottom: .6rem; }

/* ---------- quote builder: inclusions note + bundle enquiry ---------- */
.qb__incl {
  display: flex; align-items: flex-start; gap: .5rem;
  background: rgba(0,168,107,.07);
  border: 1px solid rgba(0,168,107,.28);
  border-radius: 12px;
  padding: .7rem .85rem;
  font-size: .85rem; line-height: 1.45; color: var(--ink-2);
  margin-bottom: .85rem;
}
.qb__incl svg { flex: none; color: var(--brand); margin-top: .12rem; }
.qb__incl b { color: var(--deep); font-weight: 700; }
.qb__bundle {
  margin-top: .8rem; padding-top: .8rem;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .82rem; line-height: 1.5; color: rgba(255,255,255,.72);
}
.qb__bundle a { color: var(--spark); font-weight: 700; border-bottom: 1px solid rgba(34,180,216,.5); }
.qb__bundle a:hover { color: #fff; border-bottom-color: #fff; }
.qb__lines li small { font-size: .78rem; }
.qb__save { color: #6BE0A8; }
.bundle__inline { color: #fff; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.45); }
.bundle__inline:hover { border-bottom-color: var(--spark); }

/* checklist: bullets only, no sub-descriptions -> tighter 3-up grid */
.ck__list { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.ck__list b { margin-bottom: 0; }

/* ================================================================
   v18 — quote form: tighter typography + add-ons selection control
   ================================================================ */

/* Smaller, denser form type. Inputs stay >=16px on mobile so iOS
   doesn't zoom the viewport when a field gains focus. */
.form { gap: .85rem; }
.form .field { gap: .3rem; }
.form .field > label { font-size: .76rem; }
.form .field input,
.form .field select,
.form .field textarea {
  padding: .68rem .85rem;
  font-size: .88rem;
  border-radius: 10px;
}
.form .field select { background-position: right .85rem center; padding-right: 2.3rem; }
.form .field textarea { min-height: 100px; }
.form .field small.hint { font-size: .73rem; line-height: 1.45; }
.form .field .err { font-size: .73rem; }
.form .field-row { gap: .85rem; }
.form .form__note { font-size: .75rem; }
.form .field--check label { font-size: .8rem; line-height: 1.45; }
.form h2 { font-size: 1.4rem; }

@media (max-width: 640px) {
  /* 16px prevents the iOS focus-zoom; only applies to real inputs. */
  .form .field input,
  .form .field select,
  .form .field textarea { font-size: 16px; }
}

/* ---------- add-ons selection group ---------- */
.addons {
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  padding: .6rem .7rem .7rem;
}
.addons__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; margin-bottom: .55rem;
}
.addons__toggle {
  font-family: var(--ff-body);
  font-size: .74rem; font-weight: 700; letter-spacing: .01em;
  color: var(--deep); background: var(--white);
  border: 1.5px solid var(--line); border-radius: 100px;
  padding: .3rem .7rem; cursor: pointer;
  transition: border-color .18s, color .18s, background .18s;
}
.addons__toggle:hover { border-color: var(--spark); color: var(--spark-dim); }
.addons__toggle:focus-visible { outline: 2px solid var(--deep); outline-offset: 2px; }
.addons__count { font-size: .73rem; font-weight: 600; color: var(--ink-3); }
.addons__count.is-on { color: var(--brand); }

/* chips: smaller to match the tighter form */
.form .chips { gap: .4rem; }
.form .chip span {
  padding: .4rem .75rem;
  font-size: .79rem;
  gap: .35rem;
}
.form .chip span::before { width: 13px; height: 13px; }

/* ================================================================
   v19 — add-ons multi-select dropdown
   Collapsed, it is pixel-matched to the native selects beside it
   (Bedrooms / Property type). Open, it reveals real checkboxes so
   several add-ons can be chosen — a native <select multiple> can't
   do that without an ugly permanently-expanded list box.
   ================================================================ */
.msel { position: relative; }

.msel__btn {
  width: 100%; text-align: left; cursor: pointer;
  background: var(--white); border: 1.5px solid var(--line); border-radius: 10px;
  padding: .68rem .85rem; padding-right: 2.3rem;
  font-family: var(--ff-body); font-size: .88rem; color: var(--ink);
  transition: border-color .18s, box-shadow .18s;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B747D' stroke-width='2.5' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right .85rem center;
}
.msel__btn:hover { border-color: var(--spark); }
.msel__btn:focus-visible,
.msel__btn[aria-expanded="true"] {
  outline: none; border-color: var(--deep); box-shadow: 0 0 0 4px rgba(14,59,46,.1);
}
.msel__btn[aria-expanded="true"] { background-image: none; }
.msel__val { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.msel__val.is-placeholder { color: #A7A091; }

.msel__panel {
  position: absolute; z-index: 40; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow);
  padding: .55rem;
}
.msel__panel[hidden] { display: none; }

.msel__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: .6rem; padding: .1rem .3rem .5rem;
  border-bottom: 1px solid var(--line); margin-bottom: .4rem;
}
.msel__all {
  font-family: var(--ff-body); font-size: .73rem; font-weight: 700;
  color: var(--spark-dim); background: none; border: none; cursor: pointer;
  padding: .15rem .1rem; border-bottom: 1.5px solid transparent;
}
.msel__all:hover { border-bottom-color: var(--spark-dim); }
.msel__count { font-size: .72rem; font-weight: 600; color: var(--ink-3); }
.msel__count.is-on { color: var(--brand); }

.msel__list { max-height: 244px; overflow-y: auto; display: grid; gap: 1px; }

.msel__opt {
  display: flex; align-items: center; gap: .55rem;
  padding: .42rem .45rem; border-radius: 8px; cursor: pointer;
  font-size: .82rem; color: var(--ink-2); user-select: none;
}
.msel__opt:hover { background: var(--paper); color: var(--ink); }
.msel__opt input { position: absolute; opacity: 0; width: 0; height: 0; margin: 0; }
.msel__box {
  flex: none; width: 17px; height: 17px; border-radius: 5px;
  border: 1.5px solid var(--line); background: var(--white);
  display: grid; place-items: center; color: transparent;
  transition: background .16s, border-color .16s, color .16s;
}
.msel__opt input:checked ~ .msel__box {
  background: var(--brand); border-color: var(--brand); color: #fff;
}
.msel__opt input:focus-visible ~ .msel__box { outline: 2px solid var(--deep); outline-offset: 2px; }
.msel__opt input:checked ~ .msel__txt { color: var(--ink); font-weight: 600; }

.msel__done {
  width: 100%; margin-top: .45rem;
  font-family: var(--ff-body); font-size: .78rem; font-weight: 700;
  color: #fff; background: var(--deep); border: none;
  border-radius: 8px; padding: .5rem; cursor: pointer;
}
.msel__done:hover { background: var(--deep-2); }

@media (max-width: 640px) {
  /* match the 16px no-zoom rule applied to the real inputs */
  .msel__btn { font-size: 16px; }
  .msel__list { max-height: 210px; }
}

/* ================================================================
   v20 — per-pane external window quantity stepper
   ================================================================ */
.qb__add--qty { cursor: default; }
.qb__add--qty:hover { border-color: var(--line); }
.qb__add-box--static {
  background: rgba(34,180,216,.12);
  border-color: rgba(34,180,216,.4);
  color: var(--spark-dim);
}
.qb__rate {
  display: inline-block; margin-left: .4rem;
  font-size: .74rem; font-weight: 700; color: var(--spark-dim);
  background: rgba(34,180,216,.1); border-radius: 100px;
  padding: .1rem .5rem; vertical-align: middle;
}
.qty {
  display: flex; align-items: center; flex-wrap: wrap; gap: .4rem;
  margin-top: .6rem;
}
.qty__btn {
  width: 30px; height: 30px; flex: none;
  display: grid; place-items: center;
  font-family: var(--ff-body); font-size: 1.05rem; font-weight: 700; line-height: 1;
  color: var(--deep); background: var(--white);
  border: 1.5px solid var(--line); border-radius: 8px; cursor: pointer;
  transition: border-color .16s, color .16s, background .16s;
}
.qty__btn:hover:not(:disabled) { border-color: var(--spark); color: var(--spark-dim); }
.qty__btn:disabled { opacity: .4; cursor: not-allowed; }
.qty__btn:focus-visible { outline: 2px solid var(--deep); outline-offset: 2px; }
.qty__num {
  width: 62px; flex: none; text-align: center;
  font-family: var(--ff-body); font-size: .95rem; font-weight: 700; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: 8px; padding: .32rem .3rem;
  -moz-appearance: textfield;
}
.qty__num::-webkit-outer-spin-button,
.qty__num::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty__num:focus { outline: none; border-color: var(--deep); box-shadow: 0 0 0 3px rgba(14,59,46,.1); }
.qty__preset {
  font-family: var(--ff-body); font-size: .74rem; font-weight: 700;
  color: var(--spark-dim); background: none; border: none; cursor: pointer;
  padding: .2rem .1rem; border-bottom: 1.5px solid transparent;
}
.qty__preset:hover { border-bottom-color: var(--spark-dim); }
.qty__preset:focus-visible { outline: 2px solid var(--deep); outline-offset: 2px; }
@media (max-width: 640px) {
  .qty__num { font-size: 16px; }
  .qty__preset { flex-basis: 100%; text-align: left; margin-top: .1rem; }
}

/* .qb__add-txt span { display:block } was overriding the stepper's flex
   layout and collapsing the buttons onto separate rows. */
.qb__add-txt span.qty { display: flex; }
.qb__add-txt .qty__btn { display: grid; }
.qb__add-txt .qb__rate { display: inline-block; }

/* .qb__add input { position:absolute; opacity:0 } hides the add-on
   checkboxes — it must not swallow the quantity field. */
.qb__add .qty__num {
  position: static; opacity: 1;
  width: 62px; height: auto; margin: 0;
}
