@charset "utf-8";
/* ============================================================
   Sunguard Co. — thesunguardco.com
   Single stylesheet. Sections appear in document order.
   ============================================================ */

/* ---------- 1. FONTS -------------------------------------- */
/* Archivo is a variable font: one file covers weight 400-900
   AND width 62-125%, which is where the condensed headline
   caps come from (font-stretch: 78%). */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url('../fonts/Archivo-400to900-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url('../fonts/Archivo-400to900-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/IBMPlexSans-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/IBMPlexSans-400-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/IBMPlexSans-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/IBMPlexSans-600-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- 2. TOKENS ------------------------------------- */
:root {
  /* brand */
  --amber:      #F8B013;
  --amber-lit:  #F9C233;
  --amber-deep: #F5A300;

  /* grounds — blue-slate bias, derived from #2F3742 / #1A2028 */
  --slate:      #2F3742;
  --slate-deep: #1A2028;
  --ink:        #0B0E13;
  --ink-lift:   #10151C;
  --ink-base:   #07090D;
  --paper:      #F4F5F7;
  --white:      #FFFFFF;

  /* text */
  --on-dark:        #FFFFFF;
  --on-dark-mute:   #A8B2C0;
  --on-light:       #1A2028;
  --on-light-mute:  #58626F;

  /* lines */
  --line-dark:  rgba(255, 255, 255, .10);
  --line-light: #E1E5EA;
  --line-ink:   rgba(11, 14, 19, .16);

  /* type */
  --f-display: 'Archivo', 'Arial Narrow', system-ui, sans-serif;
  --f-body:    'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* layout */
  --shell:   1200px;
  --pad:     clamp(1.25rem, 4vw, 2.5rem);
  --sec-pad: clamp(4rem, 3rem + 4vw, 7rem);
  --slant:   clamp(22px, 3.2vw, 62px);
  --hdr-h:   84px;

  /* the recurring light-shaft blade */
  --blade-cut: polygon(17% 0, 100% 0, 100% 100%, 6% 100%, 0 54%);

  --ease: cubic-bezier(.16, 1, .3, 1);

  interpolate-size: allow-keywords;
  color-scheme: dark;
}

/* ---------- 3. RESET / BASE ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: clip;
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
strong { font-weight: 600; color: var(--amber); }

:focus-visible {
  outline: 2px solid var(--amber-lit);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--amber); color: var(--ink); }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skiplink {
  position: fixed;
  inset-block-start: -100px;
  inset-inline-start: 1rem;
  z-index: 200;
  padding: .8rem 1.2rem;
  background: var(--amber);
  color: var(--ink);
  font-weight: 600;
  transition: inset-block-start .2s;
}
.skiplink:focus { inset-block-start: 1rem; }

.shell {
  width: 100%;
  max-width: calc(var(--shell) + var(--pad) * 2);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- 4. TYPE SCALE --------------------------------- */
.h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 78%;
  font-size: clamp(1.95rem, 1.1rem + 3.3vw, 3.35rem);
  line-height: .96;
  letter-spacing: -.004em;
  text-transform: uppercase;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--f-display);
  font-weight: 700;
  font-stretch: 106%;
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
}
.eyebrow--dark { color: var(--amber); }

.lede { font-size: clamp(1rem, .96rem + .2vw, 1.1rem); }
.amber { color: var(--amber); }

.sechead {
  display: grid;
  gap: .75rem;
  justify-items: center;
  text-align: center;
  margin-block-end: clamp(2.5rem, 2rem + 2vw, 4rem);
}
.sechead--left { justify-items: start; text-align: start; }

/* ---------- 5. MOTION PRIMITIVES -------------------------- */
.mask {
  display: block;
  overflow: hidden;
  padding-block: .09em;
  margin-block: -.09em;
}
.mask__i {
  display: block;
  animation: maskRise .95s var(--ease) var(--d, 0s) both;
}
@keyframes maskRise {
  from { transform: translateY(112%); }
  to   { transform: translateY(0); }
}

.rise { animation: softRise .85s var(--ease) var(--d, 0s) both; }
@keyframes softRise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* Scroll reveals only engage when JS is running, so the page is
   fully readable if the script fails to load. */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity   .75s var(--ease) var(--d, 0s),
    transform .75s var(--ease) var(--d, 0s);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- 6. BUTTONS ------------------------------------ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.6rem;
  border: 0;
  border-radius: 3px;
  font-family: var(--f-display);
  font-weight: 800;
  font-stretch: 96%;
  font-size: .855rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
  isolation: isolate;
  overflow: hidden;
  transition: transform .28s var(--ease), color .28s ease, border-color .28s ease;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:hover::before { transform: scaleX(1); }

.btn__ico { width: 1.15em; height: 1.15em; flex: none; transition: transform .3s var(--ease); }
.btn:hover .btn__ico:last-child { transform: translateX(3px); }

.btn--sm { padding: .72rem 1.2rem; font-size: .78rem; }

.btn--amber { background: var(--amber); color: var(--ink); }
.btn--amber::before { background: var(--amber-lit); }

.btn--ghost { border: 1.5px solid rgba(255, 255, 255, .3); color: var(--white); }
.btn--ghost::before { background: var(--white); }
.btn--ghost:hover { color: var(--ink); border-color: var(--white); }

.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink::before { background: var(--slate); }

/* ---------- 7. HEADER ------------------------------------- */
.hdr {
  position: sticky;
  inset-block-start: 0;
  z-index: 90;
  transition: background .3s ease, border-color .3s ease;
  border-block-end: 1px solid transparent;
}
.hdr.is-stuck {
  background: rgba(11, 14, 19, .88);
  backdrop-filter: blur(16px) saturate(1.3);
  border-block-end-color: var(--line-dark);
}
.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--hdr-h);
  transition: min-height .3s ease;
}
.hdr.is-stuck .hdr__inner { min-height: 68px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark { width: 40px; height: 40px; flex: none; object-fit: contain; }
.brand__text { display: grid; }
.brand__name {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 88%;
  font-size: 1.3rem;
  line-height: 1.05;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.brand__tag {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  line-height: 1.4;
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; align-items: center; gap: 1.75rem; }
.nav__link {
  position: relative;
  display: inline-block;
  padding-block: .3rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-stretch: 100%;
  font-size: .8rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  white-space: nowrap;
  transition: color .25s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s var(--ease);
}
.nav__link:hover, .nav__link.is-current { color: var(--white); }
.nav__link:hover::after, .nav__link.is-current::after { transform: scaleX(1); }

.burger { display: none; padding: .5rem; margin-inline-end: -.5rem; color: var(--white); }
.burger svg { width: 26px; height: 26px; }
.burger__close { display: none; }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(7, 9, 13, .68);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .3s ease;
}
.nav-scrim.is-on { opacity: 1; }

html.nav-lock { overflow: hidden; }

/* ---------- 8. HERO --------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero__glow {
  position: absolute;
  z-index: -1;
  inset-block-start: -18%;
  inset-inline-start: -12%;
  width: min(760px, 90vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(248, 176, 19, .17) 0%, rgba(248, 176, 19, .05) 42%, transparent 68%);
  animation: glowBreath 11s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes glowBreath {
  from { transform: scale(.9)  translate3d(0, 0, 0);      opacity: .75; }
  to   { transform: scale(1.14) translate3d(3%, 4%, 0);   opacity: 1; }
}

.hero__grid { padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem) clamp(3rem, 2rem + 4vw, 5.5rem); }
.hero__copy { max-width: 36rem; }

.hero__h {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 70%;
  font-size: clamp(2.25rem, 8.6vw, 3.6rem);
  line-height: .94;
  letter-spacing: -.012em;
  text-transform: uppercase;
}
.hero__h-accent { color: var(--amber); }

.hero__sub {
  margin-block-start: 1.6rem;
  max-width: 34rem;
  font-size: clamp(1rem, .96rem + .25vw, 1.1rem);
  color: var(--on-dark-mute);
}
.hero__sub strong { color: var(--amber); }

.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-block-start: 2rem; }

.chips { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-block-start: 2rem; }
.chip { display: inline-flex; align-items: center; gap: .5rem; font-size: .855rem; font-weight: 600; }
.chip__ico { width: 20px; height: 20px; color: var(--amber); flex: none; }

.hero__media { position: relative; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(11, 14, 19, .82) 0%, rgba(11, 14, 19, .28) 26%, transparent 55%),
    linear-gradient(0deg,   rgba(11, 14, 19, .45) 0%, transparent 40%),
    linear-gradient(210deg, rgba(248, 176, 19, .26) 0%, transparent 48%);
}

/* the amber light-shaft blade along the photo's cut edge */
.blade {
  position: absolute;
  inset: 0;
  background: var(--amber);
  animation: bladeIn 1.1s var(--ease) .3s both;
}
@keyframes bladeIn {
  from { opacity: 0; transform: translateX(-72px); }
  to   { opacity: 1; transform: translateX(-15px); }
}

@media (min-width: 961px) {
  .hero__grid { min-height: min(74vh, 660px); display: grid; align-content: center; }
  .hero__copy { max-width: min(42rem, 44vw); }
  /* Sized off the viewport so the four fixed headline lines always clear the
     photo's diagonal edge instead of running under it. */
  .hero__h { font-size: clamp(3rem, 5.1vw, 4.6rem); }
  .hero__media {
    position: absolute;
    inset-block: 0;
    inset-inline-end: 0;
    width: 51vw;
  }
  .hero__media picture,
  .hero__media .hero__img,
  .hero__wash { clip-path: var(--blade-cut); }
  .hero__media picture { height: 100%; }
  .blade { clip-path: var(--blade-cut); }
}

@media (max-width: 960px) {
  .hero__media { margin-block-start: 2.75rem; aspect-ratio: 16 / 10; }
  .hero__media picture, .hero__img { height: 100%; }
  .hero__media picture,
  .hero__media .hero__img,
  .hero__wash { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 5vw)); }
  .blade { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 5vw)); }
  @keyframes bladeIn {
    from { opacity: 0; transform: translateY(48px); }
    to   { opacity: 1; transform: translateY(11px); }
  }
}

/* ---------- 9. PROMO STRIP -------------------------------- */
.promo {
  background: var(--amber);
  color: var(--ink);
  border-block: 1px solid var(--amber-deep);
}
.promo__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem 1.75rem;
  padding-block: 1.6rem;
}
.promo__ico { width: 54px; height: 54px; flex: none; }
.promo__eyebrow {
  font-family: var(--f-display);
  font-weight: 700;
  font-stretch: 106%;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .78;
}
.promo__h {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 82%;
  font-size: clamp(1.3rem, 1rem + 1.5vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
}
.promo__note { font-size: .9rem; opacity: .82; }
.promo__act { display: grid; gap: .55rem; justify-items: center; }
.promo__fine { font-size: .72rem; opacity: .72; }

/* ---------- 10. WHY CLEAN --------------------------------- */
.why { background: var(--ink); padding-block: var(--sec-pad); }
.why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  align-items: center;
}
.why__copy { display: grid; gap: 1.1rem; align-content: start; }
.why__h .tally { font-variant-numeric: tabular-nums; }
.why__copy .lede { color: var(--on-dark-mute); max-width: 34rem; }

.why__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.wcard {
  display: grid;
  gap: 1.6rem;
  align-content: space-between;
  min-height: 158px;
  padding: 1.4rem 1.15rem;
  background: var(--slate-deep);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  transition: transform .35s var(--ease), border-color .35s ease, background .35s ease;
}
.wcard__ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  transition: transform .35s var(--ease);
}
.wcard__ico svg { --sw: 1.6; width: 24px; height: 24px; }
.wcard__h {
  font-family: var(--f-display);
  font-weight: 700;
  font-stretch: 92%;
  font-size: .95rem;
  line-height: 1.2;
  text-transform: none;
}
.wcard:hover {
  transform: translateY(-5px);
  border-color: rgba(248, 176, 19, .55);
  background: var(--slate);
}
.wcard:hover .wcard__ico { transform: scale(1.08) rotate(-6deg); }

/* ---------- 11. LIGHT BANDS (light-shaft wedges) ---------- */
.band--light {
  background: var(--paper);
  color: var(--on-light);
  clip-path: polygon(0 var(--slant), 100% 0, 100% 100%, 0 100%);
  margin-block-start: calc(var(--slant) * -1);
  padding-block: calc(var(--sec-pad) + var(--slant)) var(--sec-pad);
  position: relative;
  z-index: 1;
}
.band--light .eyebrow { color: var(--amber-deep); }

/* ---------- 12. SERVICES ---------------------------------- */
.svc { display: grid; grid-template-columns: repeat(4, 1fr); }
.svc__item {
  display: grid;
  gap: .9rem;
  justify-items: center;
  text-align: center;
  padding: .5rem clamp(.9rem, .5rem + 1vw, 1.75rem);
}
.svc__item + .svc__item { border-inline-start: 1px solid var(--line-light); }
.svc__ico {
  --sw: 1.15;                 /* thinner stroke — these render at 58px */
  width: 58px;
  height: 58px;
  color: var(--amber-deep);
  transition: transform .4s var(--ease);
}
.svc__item:hover .svc__ico { transform: translateY(-4px) scale(1.06); }
.svc__h {
  font-family: var(--f-display);
  font-weight: 700;
  font-stretch: 96%;
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.3;
}
.svc__p { font-size: .875rem; color: var(--on-light-mute); max-width: 22rem; }

/* ---------- 13. ABOUT ------------------------------------- */
.about { background: var(--ink); padding-block: var(--sec-pad); }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: clamp(2rem, 1.5rem + 3.5vw, 4.5rem);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  clip-path: polygon(0 0, 93% 0, 100% 44%, 84% 100%, 0 100%);
}
.about__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--amber);
  clip-path: polygon(0 0, 93% 0, 100% 44%, 84% 100%, 0 100%);
  transform: translateX(14px);
}
.about__copy { display: grid; gap: 1.1rem; align-content: start; }
.about__copy .lede,
.about__copy > p { color: var(--on-dark-mute); max-width: 36rem; }
.about__pts { display: grid; gap: .8rem; margin-block-start: .5rem; }
.about__pts li { display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; font-size: .92rem; }
.about__pts svg { width: 22px; height: 22px; color: var(--amber); margin-block-start: .18rem; }

/* ---------- 14. HOW IT WORKS ------------------------------ */
.how { background: var(--ink-lift); padding-block: var(--sec-pad); border-block-start: 1px solid var(--line-dark); }
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.steps::before {
  content: '';
  position: absolute;
  inset-block-start: 44px;
  inset-inline: 14%;
  border-block-start: 1px dashed rgba(255, 255, 255, .26);
}
.js .steps::before { transform: scaleX(0); transform-origin: left center; transition: transform 1.1s var(--ease) .25s; }
.js .steps.is-in::before { transform: scaleX(1); }

.step {
  position: relative;
  display: grid;
  gap: .55rem;
  justify-items: center;
  text-align: center;
  padding-inline: .5rem;
}
.step__disc {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--slate);
  border: 1px solid var(--line-dark);
  color: var(--white);
  margin-block-end: .6rem;
  transition: background .35s ease, transform .35s var(--ease);
}
.step__disc svg { --sw: 1.5; width: 34px; height: 34px; }
.step__n {
  position: absolute;
  inset-block-start: 28px;
  inset-inline-start: max(0px, calc(50% - 86px));
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .95rem;
  font-variant-numeric: tabular-nums;
}
.step__h {
  font-family: var(--f-display);
  font-weight: 800;
  font-stretch: 94%;
  font-size: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.step__p { font-size: .855rem; color: var(--on-dark-mute); max-width: 15rem; }
.step:hover .step__disc { background: var(--amber); color: var(--ink); transform: translateY(-4px); }

/* ---------- 15. BEFORE / AFTER ---------------------------- */
.ba__wrap { max-width: 980px; margin-inline: auto; }
.ba__stage {
  --pos: 50%;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--slate-deep);
  box-shadow: 0 24px 60px -28px rgba(11, 14, 19, .55);
  touch-action: pan-y;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 68%; }
.ba__after { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--pos)); }
.ba__after .ba__img { object-position: center 50%; }

.ba__tag {
  position: absolute;
  inset-block-end: 0;
  z-index: 2;
  padding: .5rem 1.1rem;
  font-family: var(--f-display);
  font-weight: 800;
  font-stretch: 96%;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ba__tag--b { inset-inline-start: 0; background: var(--ink); color: var(--white); }
.ba__tag--a { inset-inline-end: 0; background: var(--amber); color: var(--ink); }

.ba__range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.ba__range::-webkit-slider-thumb { -webkit-appearance: none; width: 56px; height: 100%; }
.ba__range::-moz-range-thumb { width: 56px; height: 100%; border: 0; }

/* The box is as wide as the disc, not as wide as the line: centring an item
   that overflows a 3px track put the disc 9.5px to the right of the line.
   The line itself is drawn by ::before down the middle. */
.ba__handle {
  position: absolute;
  inset-block: 0;
  inset-inline-start: var(--pos);
  z-index: 3;
  width: 44px;
  margin-inline-start: -22px;
  pointer-events: none;
  display: grid;
  place-items: center;
}
.ba__handle::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 50%;
  width: 3px;
  margin-inline-start: -1.5px;
  background: var(--amber);
}
.ba__handle svg {
  position: relative;
  width: 22px;
  height: 22px;
  box-sizing: content-box;
  padding: 11px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 6px 20px -6px rgba(11, 14, 19, .6);
  transition: transform .25s var(--ease);
}
.ba__stage:hover .ba__handle svg { transform: scale(1.08); }
.ba__range:focus-visible ~ .ba__handle svg { outline: 3px solid var(--ink); outline-offset: 3px; }

.ba__cap {
  margin-block-start: 1.1rem;
  text-align: center;
  font-size: .82rem;
  color: var(--on-light-mute);
}

/* ---------- 16. FAQ --------------------------------------- */
.faq { background: var(--ink); padding-block: var(--sec-pad); }
.faq__shell {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 1.5rem + 3vw, 4.5rem);
  align-items: start;
}
.faq .sechead { margin-block-end: 0; position: sticky; inset-block-start: calc(var(--hdr-h) + 24px); }
.qa { border-block-end: 1px solid var(--line-dark); }
.qa:first-child { border-block-start: 1px solid var(--line-dark); }
.qa__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.4rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--f-display);
  font-weight: 700;
  font-stretch: 98%;
  font-size: clamp(1rem, .95rem + .3vw, 1.15rem);
  line-height: 1.3;
  transition: color .25s ease;
}
.qa__q::-webkit-details-marker { display: none; }
.qa__q:hover { color: var(--amber); }
.qa__ico { width: 22px; height: 22px; flex: none; color: var(--amber); transition: transform .35s var(--ease); }
.qa[open] > .qa__q > .qa__ico { transform: rotate(135deg); }
.qa__a { padding-block-end: 1.4rem; }
.qa__a p { color: var(--on-dark-mute); max-width: 60ch; }

/* Animated disclosure where supported; instant elsewhere. */
.qa::details-content {
  block-size: 0;
  overflow: hidden;
  content-visibility: hidden;
  transition: block-size .4s var(--ease), content-visibility .4s allow-discrete;
}
.qa[open]::details-content { block-size: auto; content-visibility: visible; }

/* ---------- 17. CONTACT ----------------------------------- */
.cta {
  background: var(--amber);
  color: var(--ink);
  clip-path: polygon(0 var(--slant), 100% 0, 100% 100%, 0 100%);
  margin-block-start: calc(var(--slant) * -1);
  padding-block: calc(var(--sec-pad) + var(--slant)) var(--sec-pad);
  position: relative;
  z-index: 1;
}
.cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 1.5rem + 3vw, 4rem);
  align-items: center;
}
.cta__lead { display: grid; gap: 1rem; align-content: start; }
.cta__ico { width: 48px; height: 48px; color: var(--ink); }
.cta__lead .eyebrow { color: rgba(11, 14, 19, .62); }
.cta__lead > p { color: rgba(11, 14, 19, .78); max-width: 32rem; }

.ways { display: grid; gap: .8rem; }
.way {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  border: 1.5px solid var(--line-ink);
  border-radius: 4px;
  background: rgba(255, 255, 255, .22);
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s var(--ease);
}
.way__ico { width: 28px; height: 28px; flex: none; }
.way__t { display: grid; }
.way__k {
  font-family: var(--f-display);
  font-weight: 800;
  font-stretch: 96%;
  font-size: .74rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .68;
}
.way__v { font-size: 1.02rem; font-weight: 600; }
.way__go { width: 22px; height: 22px; transition: transform .3s var(--ease); }
.way:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateX(4px);
}
.way:hover .way__ico, .way:hover .way__go { color: var(--amber); }
.way:hover .way__go { transform: translateX(4px); }

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-block-start: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  padding-block-start: clamp(2rem, 1.5rem + 1.5vw, 2.75rem);
  border-block-start: 1px solid var(--line-ink);
}
.trust li {
  display: grid;
  justify-items: center;
  gap: .55rem;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-stretch: 98%;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.35;
}
.trust svg { width: 30px; height: 30px; }
.trust li + li { border-inline-start: 1px solid var(--line-ink); }

/* ---------- 18. FOOTER ------------------------------------ */
.ftr { background: var(--ink-base); color: var(--on-dark-mute); font-size: .875rem; }
.ftr__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, .85fr)) minmax(0, 1.15fr);
  gap: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  padding-block: clamp(3rem, 2.5rem + 2vw, 4.5rem);
}
.brand--ftr .brand__mark { width: 44px; height: 44px; }
.ftr__blurb { margin-block-start: 1.1rem; max-width: 26rem; }
.ftr__h {
  margin-block-end: 1rem;
  font-family: var(--f-display);
  font-weight: 800;
  font-stretch: 100%;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
}
.ftr__col ul { display: grid; gap: .6rem; }
/* Restricted to the link lists. The Book a Cleaning button is also an <a> in
   this column, and an unscoped `.ftr__col a:hover` outranks `.btn--amber`,
   turning its label and icon amber on an amber background. */
.ftr__col ul a { transition: color .25s ease; }
.ftr__col ul a:hover { color: var(--amber); }
.ftr__col--contact li { display: grid; grid-template-columns: auto 1fr; gap: .65rem; align-items: center; }
/* Scoped to the list items on purpose: the Book a Cleaning button also lives in
   this column, and an unscoped `svg` here would repaint its icon amber-on-amber. */
.ftr__col--contact li svg { width: 18px; height: 18px; color: var(--amber); }
.ftr__cta { margin-block-start: 1.4rem; }

.social { display: flex; gap: .6rem; margin-block-start: 1.4rem; }
.social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  transition: background .3s ease, color .3s ease, transform .3s var(--ease);
}
.social svg { width: 19px; height: 19px; }
.social a:hover { background: var(--amber); color: var(--ink); transform: translateY(-3px); }

.ftr__base { border-block-start: 1px solid var(--line-dark); padding-block: 1.35rem; font-size: .8rem; }

/* ---------- 19. RESPONSIVE -------------------------------- */
/* Between the burger breakpoint and roughly 1180px the six nav items plus the
   CTA run out of room, so tighten them rather than let the bar grow to two rows. */
@media (min-width: 961px) and (max-width: 1180px) {
  .nav { gap: 1.25rem; }
  .nav__list { gap: 1rem; }
  .nav__link { font-size: .72rem; letter-spacing: .06em; }
  .nav__cta { padding-inline: 1rem; }
}

@media (max-width: 1080px) {
  .why__grid { grid-template-columns: 1fr; }
  .why__cards { grid-template-columns: repeat(4, 1fr); }
  .ftr__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ftr__brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  :root { --hdr-h: 72px; }

  .nav {
    position: fixed;
    inset-block: 0;
    inset-inline-end: 0;
    z-index: 95;
    width: min(340px, 84vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem clamp(1.5rem, 5vw, 2.5rem);
    background: var(--slate-deep);
    border-inline-start: 1px solid var(--line-dark);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .4s var(--ease), visibility .4s;
  }
  .nav.is-open { transform: translateX(0); visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: .35rem; }
  .nav__link { font-size: 1.05rem; letter-spacing: .06em; padding-block: .7rem; }
  .nav__link::after { inset-inline: 0 auto; width: 28px; }
  .nav__cta { justify-content: center; padding-block: .95rem; }
  .burger { display: block; }
  .burger.is-open .burger__open { display: none; }
  .burger.is-open .burger__close { display: block; }

  .svc { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 0; }
  .svc__item:nth-child(odd) { border-inline-start: 0; }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { order: 2; max-width: 34rem; }

  .steps { grid-template-columns: repeat(2, 1fr); gap: 2.75rem 1rem; }
  .steps::before { display: none; }

  .faq__shell { grid-template-columns: 1fr; }
  .faq .sechead { position: static; }

  .cta__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .promo__inner { grid-template-columns: auto 1fr; text-align: start; }
  .promo__ico { width: 42px; height: 42px; }
  .promo__act { grid-column: 1 / -1; justify-items: start; }
  .promo__act .btn { width: 100%; }

  .why__cards { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: 1fr; gap: 1.5rem; }
  .trust li + li { border-inline-start: 0; border-block-start: 1px solid var(--line-ink); padding-block-start: 1.5rem; }
  .ba__stage { aspect-ratio: 4 / 3; }
}

@media (max-width: 560px) {
  .brand__mark { width: 34px; height: 34px; }
  .brand__name { font-size: 1.08rem; }
  .brand__tag { font-size: .52rem; }
  .hero__cta .btn { width: 100%; }
  .chips { gap: .75rem 1.1rem; }
  .svc { grid-template-columns: 1fr; }
  .svc__item { border-inline-start: 0 !important; }
  .steps { grid-template-columns: 1fr; }
  .step__n { inset-inline-start: max(0px, calc(50% - 74px)); }
  .ftr__grid { grid-template-columns: 1fr; }
}

/* ---------- 20. REDUCED MOTION ---------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-delay: 0s !important;          /* without this, a backwards-filling
                                                animation stays in its hidden
                                                start state for the whole delay */
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
  }
  /* Drop the entrance animations outright rather than racing them to zero,
     so nothing can be caught mid-flight in a hidden state. */
  .mask__i, .rise, .hero__glow { animation: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .steps::before { transform: scaleX(1); }
  .blade { animation: none !important; transform: translateX(-15px); }
}
@media (prefers-reduced-motion: reduce) and (max-width: 960px) {
  .blade { transform: translateY(11px); }
}

/* ---------- 21. PRINT ------------------------------------- */
@media print {
  .hdr, .burger, .nav, .promo__act, .ba__range, .ba__handle, .skiplink { display: none; }
  body { background: #fff; color: #000; }
  .band--light, .cta, .why, .about, .how, .faq, .ftr { clip-path: none; margin-block-start: 0; background: #fff; color: #000; }
}
