/* ============================================================
   Wonderful Windows — Saskatoon
   Design direction: "Through the glass"
   Ground: violet-biased off-white. One dark moment: the hero pane.
   Structure device: window mullions (hairline rules), not cards.
   ============================================================ */

/* ---------- tokens (complete light palette on bare :root) ---------- */
:root {
  color-scheme: light;

  /* neutrals — biased toward the brand violet, never pure grey */
  --ground:        #FAF7FE;
  --ground-2:      #F3EEFB;
  --surface:       #FFFFFF;
  --ink:           #160F3D;
  --ink-2:         #362D63;
  --muted:         #6C6693;
  --line:          #E4DDF3;
  --line-strong:   #CFC5E8;

  /* brand */
  --brand:         #7A34D6;
  --brand-deep:    #4B2AA8;
  --brand-soft:    #F1E7FE;
  --aqua:          #0E93B8;
  --aqua-soft:     #E2F4F9;
  --sun:           #D95E13;
  --sun-soft:      #FDEDE0;

  /* buttons carry their own fg/bg pair so contrast survives the theme flip */
  --btn-bg:        #4B2AA8;
  --btn-fg:        #FFFFFF;
  --btn-shadow:    rgba(75,42,168,.9);
  --sunbtn-bg:     #D95E13;
  --sunbtn-fg:     #FFFFFF;

  /* the logo's own gradient, sampled from the mark */
  --grad:          linear-gradient(100deg, #C86BE8 0%, #30B0D6 100%);
  /* the team photo's baked-in background, sampled edge to edge */
  --crew-grad:     linear-gradient(90deg, #8C52FE 0%, #FF914D 100%);

  /* the hero pane's night interior — same in both themes on purpose */
  --night:         #140D36;
  --night-2:       #1E1450;
  --night-line:    rgba(255,255,255,.14);
  --night-text:    #F4F0FF;
  --night-muted:   #B7ADD8;
  --mullion:       #FFFFFF;

  --shadow-soft:   0 1px 2px rgba(22,15,61,.04), 0 8px 24px -12px rgba(22,15,61,.16);
  --shadow-lift:   0 2px 4px rgba(22,15,61,.05), 0 24px 48px -20px rgba(22,15,61,.28);

  --radius:        14px;
  --measure:       62ch;
  --gutter:        clamp(20px, 5vw, 56px);
  --maxw:          1180px;

  --f-display: "Bricolage Grotesque", "Trebuchet MS", "Helvetica Neue", sans-serif;
  --f-body:    "Karla", "Helvetica Neue", Arial, sans-serif;
  --f-mono:    "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --ground:      #100B2A;
    --ground-2:    #180F3B;
    --surface:     #1A1140;
    --ink:         #F3EFFE;
    --ink-2:       #D5CBF2;
    --muted:       #A79FCC;
    --line:        #2E2263;
    --line-strong: #443482;
    --brand:       #B98BFF;
    --brand-deep:  #D2B4FF;
    --brand-soft:  #2A1B5E;
    --aqua:        #4FCBEA;
    --aqua-soft:   #12324A;
    --sun:         #FF9E5C;
    --sun-soft:    #3A2011;
    --btn-bg:      #B98BFF;
    --btn-fg:      #1B0F42;
    --btn-shadow:  rgba(0,0,0,.7);
    --sunbtn-bg:   #FF9E5C;
    --sunbtn-fg:   #331606;
    --shadow-soft: 0 1px 2px rgba(0,0,0,.4), 0 8px 24px -12px rgba(0,0,0,.6);
    --shadow-lift: 0 2px 4px rgba(0,0,0,.4), 0 24px 48px -20px rgba(0,0,0,.7);
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ground:      #100B2A;
  --ground-2:    #180F3B;
  --surface:     #1A1140;
  --ink:         #F3EFFE;
  --ink-2:       #D5CBF2;
  --muted:       #A79FCC;
  --line:        #2E2263;
  --line-strong: #443482;
  --brand:       #B98BFF;
  --brand-deep:  #D2B4FF;
  --brand-soft:  #2A1B5E;
  --aqua:        #4FCBEA;
  --aqua-soft:   #12324A;
  --sun:         #FF9E5C;
  --sun-soft:    #3A2011;
  --btn-bg:      #B98BFF;
  --btn-fg:      #1B0F42;
  --btn-shadow:  rgba(0,0,0,.7);
  --sunbtn-bg:   #FF9E5C;
  --sunbtn-fg:   #331606;
  --shadow-soft: 0 1px 2px rgba(0,0,0,.4), 0 8px 24px -12px rgba(0,0,0,.6);
  --shadow-lift: 0 2px 4px rgba(0,0,0,.4), 0 24px 48px -20px rgba(0,0,0,.7);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.022em;
  text-wrap: balance;
  margin: 0;
}

p { margin: 0; }
img, svg { max-width: 100%; }
a { color: inherit; }

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2.5px solid var(--aqua);
  outline-offset: 3px;
  border-radius: 6px;
}

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

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.lede { font-size: 19px; color: var(--ink-2); max-width: var(--measure); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn--primary {
  background: var(--btn-bg);
  color: var(--btn-fg);
  box-shadow: 0 10px 22px -12px var(--btn-shadow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px var(--btn-shadow); filter: brightness(1.06); }
.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn--onnight {
  border-color: rgba(255,255,255,.28);
  color: var(--night-text);
  background: rgba(255,255,255,.06);
}
.btn--onnight:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn--sun { background: var(--sunbtn-bg); color: var(--sunbtn-fg); box-shadow: 0 10px 22px -12px rgba(217,94,19,.75); }
.btn--sun:hover { transform: translateY(-2px); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--ground) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav__inner {
  display: flex; align-items: center; gap: 22px;
  min-height: 72px;
}
.nav__logo { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.nav__logo img { width: 196px; height: auto; display: block; }
:root[data-theme="dark"] .nav__logo img,
:root:not([data-theme="light"]) .nav__logo img { }

.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a {
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--brand); transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__tel {
  font-family: var(--f-mono); font-size: 15px; font-weight: 500;
  text-decoration: none; color: var(--ink);
  border-bottom: 1.5px solid var(--line-strong);
  padding-bottom: 2px;
}
.nav__tel:hover { border-bottom-color: var(--brand); color: var(--brand); }

.nav__toggle {
  display: none; background: none; border: 1.5px solid var(--line-strong);
  border-radius: 10px; width: 42px; height: 42px; cursor: pointer;
  align-items: center; justify-content: center; color: var(--ink);
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 17px; height: 1.8px; background: currentColor;
  border-radius: 2px; transition: transform .22s ease, opacity .18s ease;
}
.nav__toggle span::before { position: absolute; transform: translateY(-6px); }
.nav__toggle span::after  { position: absolute; transform: translateY(6px); }
.nav__toggle span { position: relative; }
.nav[data-open="true"] .nav__toggle span { background: transparent; }
.nav[data-open="true"] .nav__toggle span::before { transform: rotate(45deg); }
.nav[data-open="true"] .nav__toggle span::after  { transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__links, .nav__tel { display: none; }
  .nav[data-open="true"] .nav__links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 10px var(--gutter) 22px;
    box-shadow: var(--shadow-soft);
  }
  .nav[data-open="true"] .nav__links a { padding: 12px 0; font-size: 18px; width: 100%; }
  .nav[data-open="true"] .nav__tel { display: block; padding-top: 14px; }
}

/* ============================================================
   HERO — the thesis: a pane of glass you can actually clean
   ============================================================ */
.hero {
  background:
    radial-gradient(120% 90% at 12% 0%, #2A1A63 0%, transparent 60%),
    radial-gradient(90% 80% at 100% 100%, #3A1C5E 0%, transparent 62%),
    var(--night);
  color: var(--night-text);
  padding-block: clamp(48px, 7vw, 84px) clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero::after {
  /* faint horizontal light, like a room lit through the window */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(200,107,232,.09) 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative; z-index: 2;
}
.hero .eyebrow { color: var(--night-muted); }
.hero h1 {
  font-size: clamp(40px, 6.1vw, 70px);
  font-weight: 800;
  margin-top: 18px;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: normal;
  display: block;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero__lede {
  margin-top: 20px;
  font-size: 18.5px;
  color: var(--night-muted);
  max-width: 46ch;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.stars { display: inline-flex; gap: 2px; color: var(--sun); }
.stars svg { width: 15px; height: 15px; display: block; fill: currentColor; }

.rating-chip {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 28px;
  padding: 10px 16px 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--night-line);
  text-decoration: none;
  color: var(--night-text);
  transition: background-color .2s ease, transform .2s ease;
}
.rating-chip:hover { background: rgba(255,255,255,.13); transform: translateY(-1px); }
.rating-chip .stars { color: #FFC46B; }
.rating-chip b { font-family: var(--f-display); font-size: 17px; letter-spacing: -.01em; }
.rating-chip span { font-size: 14px; color: var(--night-muted); }

/* --- the pane --- */
.pane {
  position: relative;
  aspect-ratio: 4 / 3.1;
  border-radius: 8px;
  background: var(--mullion);
  padding: 12px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.9), 0 0 0 1px rgba(0,0,0,.12);
  isolation: isolate;
}
.pane__glass {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 3px;
  overflow: hidden;
}

/* the clean view behind the grime */
.pane__scene { position: absolute; inset: 0; }
.pane__scene img { width: 100%; height: 100%; display: block; object-fit: cover; }

.pane__grime {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}

/* mullions — the structural motif of the whole page */
.pane__mullions { position: absolute; inset: 0; pointer-events: none; }
.pane__mullions::before,
.pane__mullions::after {
  content: ""; position: absolute; background: var(--mullion);
  box-shadow: 0 0 0 1px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.35);
}
.pane__mullions::before { left: 50%; top: 0; bottom: 0; width: 6px; transform: translateX(-50%); }
.pane__mullions::after  { top: 46%; left: 0; right: 0; height: 6px; }

.pane__glare {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(112deg, transparent 34%, rgba(255,255,255,.12) 44%, rgba(255,255,255,.02) 51%, transparent 58%);
  mix-blend-mode: screen;
}

/* Dirt on the frame. Covers the whole .pane box; script.js clears the glass
   rectangle out of it so only the band around the glass is ever painted. The
   radius matches .pane's — border-radius clips a canvas's own pixels, which is
   what keeps the grime off the rounded corners. */
.pane__frame-grime {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  border-radius: 8px;
  pointer-events: none;
}

/* The cloth — same positioning contract as the squeegee below, but its path is
   in .pane coordinates with no glass offset, since it works the frame band. */
.pane__cloth {
  position: absolute; left: 0; top: 0;
  z-index: 2;
  width: 0; height: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.45));
  will-change: transform, opacity;
}
.pane__cloth[data-show="true"] { opacity: 1; }
.pane__cloth svg { width: 100%; height: 100%; display: block; }

/* The squeegee — sized and positioned by script.js during a cleaning pass.
   It is a child of .pane, not of the clipping .pane__glass, so the handle
   leading the blade runs out over the frame at the ends of a row instead of
   being cut off at the glass edge. Its offsets are therefore measured from
   .pane's box; script.js adds the glass origin. .pane has no border, so its
   padding box and border box share an origin — add one and that breaks. */
.pane__squeegee {
  position: absolute; left: 0; top: 0;
  z-index: 2;
  width: 0; height: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.5));
  will-change: transform, opacity;
}
.pane__squeegee[data-show="true"] { opacity: 1; }
.pane__squeegee svg { width: 100%; height: 100%; display: block; }

/* Before | After — hidden until script.js has a painted canvas to toggle */
.pane__toggle {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 3;   /* above the squeegee, which now passes over this corner */
  display: inline-flex; gap: 3px; padding: 3px;
  background: rgba(20,13,54,.62);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  opacity: 0; transition: opacity .35s ease;
}
.pane__toggle[data-ready="true"] { opacity: 1; }

.pane__tab {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .06em;
  color: rgba(255,255,255,.72);
  background: transparent; border: 0;
  padding: 6px 17px; border-radius: 999px; cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.pane__tab:hover { color: #fff; }
.pane__tab[aria-pressed="true"] { background: #fff; color: var(--night); }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .pane { aspect-ratio: 4 / 3.4; }
}

/* ============================================================
   TRUST STRIP — mullion-divided, not cards
   ============================================================ */
.strip { background: var(--surface); border-bottom: 1px solid var(--line); }
.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip__cell {
  padding: 26px 26px 26px 0;
  border-right: 1px solid var(--line);
}
.strip__cell:first-child { padding-left: 0; }
.strip__cell:last-child { border-right: 0; padding-right: 0; }
.strip__cell:not(:first-child) { padding-left: 26px; }
.strip__n {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 700;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  display: flex; align-items: center; gap: 8px;
  line-height: 1;
}
.strip__l { font-size: 14.5px; color: var(--muted); margin-top: 8px; }
@media (max-width: 760px) {
  .strip__grid { grid-template-columns: 1fr 1fr; }
  .strip__cell { padding: 20px 18px !important; border-bottom: 1px solid var(--line); }
  .strip__cell:nth-child(2n) { border-right: 0; }
  .strip__cell:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.sec { padding-block: clamp(64px, 8vw, 108px); }
.sec--alt { background: var(--ground-2); }
.sec__head { max-width: 44ch; }
.sec__head h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  margin-top: 14px;
}
.sec__head p { margin-top: 16px; color: var(--muted); font-size: 18px; }

/* ============================================================
   SERVICES — three panes in a frame
   ============================================================ */
.services {
  margin-top: clamp(34px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.svc {
  border-right: 1px solid var(--line);
  padding: 30px clamp(20px, 2.4vw, 30px) 26px;
  display: flex; flex-direction: column;
  position: relative;
  transition: background-color .25s ease;
}
.svc:last-child { border-right: 0; }
.svc:hover { background: color-mix(in srgb, var(--brand-soft) 45%, var(--surface)); }
.svc__ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand);
  margin-bottom: 18px;
}
.svc:nth-child(2) .svc__ico { background: var(--aqua-soft); color: var(--aqua); }
.svc:nth-child(3) .svc__ico { background: var(--sun-soft); color: var(--sun); }
.svc__ico svg { width: 23px; height: 23px; display: block; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.svc h3 { font-size: 22px; }
.svc__d { margin-top: 10px; color: var(--muted); font-size: 16px; }

.svc__more {
  margin-top: 18px;
  border: 0; background: none; padding: 0;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand); cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  align-self: flex-start;
}
.svc__more svg { width: 12px; height: 12px; transition: transform .28s ease; stroke: currentColor; fill: none; stroke-width: 2.4; }
.svc[data-open="true"] .svc__more svg { transform: rotate(180deg); }

.svc__list {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .34s cubic-bezier(.4,0,.2,1);
}
.svc[data-open="true"] .svc__list { grid-template-rows: 1fr; }
.svc__list > ul {
  overflow: hidden;
  margin: 0; padding: 0; list-style: none;
}
.svc[data-open="true"] .svc__list > ul { padding-top: 16px; }
.svc__list li {
  display: grid; grid-template-columns: 16px 1fr; gap: 10px;
  font-size: 15.5px; line-height: 1.5;
  padding: 7px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
}
.svc__list li:first-child { border-top: 0; }
.svc__list li svg { width: 14px; height: 14px; margin-top: 5px; stroke: var(--aqua); fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 860px) {
  .services { grid-template-columns: 1fr; }
  .svc { border-right: 0; border-bottom: 1px solid var(--line); }
  .svc:last-child { border-bottom: 0; }
}

.services__foot {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px;
  font-size: 15px; color: var(--muted);
}

/* ============================================================
   GUARANTEE — one bordered container: seal panel + the promise.
   Every colour here is an existing token, so it resolves in all
   three theme states (bare :root, media-query dark, [data-theme]).
   ============================================================ */
.guarantee {
  margin-top: clamp(34px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(230px, 300px) 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.guarantee__seal {
  background: var(--brand-soft);
  border-right: 1px solid var(--line);
  display: grid; place-items: center;
  padding: 36px 28px;
}
.guarantee__seal svg { width: min(215px, 100%); height: auto; display: block; }

/* the seal's parts — styled here rather than with fill="" attributes so the
   tokens flip with the theme */
.seal__disc { fill: var(--surface); }
.seal__ring { fill: none; stroke: var(--brand); }
.seal__dash { fill: none; stroke: var(--brand); opacity: .5; stroke-dasharray: 2 5.5; stroke-linecap: round; }
.seal__arc  { font-family: var(--f-mono); fill: var(--brand-deep); letter-spacing: .2em; }
.seal__num  { font-family: var(--f-display); font-weight: 800; fill: var(--brand-deep); }
.seal__day  { font-family: var(--f-mono); fill: var(--brand-deep); letter-spacing: .26em; }
.seal__star { fill: var(--sun); }

.guarantee__body { padding: 34px clamp(22px, 3vw, 42px) 34px; }
.guarantee__body p { color: var(--ink-2); max-width: 58ch; }
.guarantee__body p + p { margin-top: 14px; }

.gtee-pts { margin-top: 26px; border-top: 1px solid var(--line); }
.gtee-pt {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 24px 1fr; gap: 14px; align-items: start;
}
.gtee-pt:last-child { border-bottom: 0; }
.gtee-pt > svg {
  width: 23px; height: 23px; margin-top: 2px;
  fill: none; stroke: var(--brand); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.gtee-pt h3 { font-size: 17.5px; }
.gtee-pt p { margin-top: 5px; color: var(--muted); font-size: 15.5px; }

.gtee-cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 880px) {
  .guarantee { grid-template-columns: 1fr; }
  .guarantee__seal {
    border-right: 0; border-bottom: 1px solid var(--line);
    padding: 30px;
  }
  .guarantee__seal svg { width: 170px; }
  .guarantee__body { padding: 28px 24px 30px; }
}

/* ============================================================
   SERVICE PAGES — the shared furniture for the three sub-pages
   (exterior-window-cleaning.html and friends). Same tokens, same
   structure device: bordered containers with hairline dividers.
   ============================================================ */
.phero { padding-block: clamp(34px, 4vw, 54px) clamp(46px, 6vw, 76px); }

.crumbs {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .06em;
  color: var(--muted);
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px;
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--brand); }
.crumbs [aria-current] { color: var(--ink-2); }

.phero__grid {
  margin-top: 26px;
  display: grid; grid-template-columns: 1fr minmax(220px, 290px);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.phero h1 { font-size: clamp(32px, 4.8vw, 52px); margin-top: 18px; }
.phero__lede { margin-top: 16px; color: var(--ink-2); font-size: 18px; max-width: 52ch; }
.phero__ico { margin-bottom: 0; }
.phero__ico--brand { background: var(--brand-soft); color: var(--brand); }
.phero__ico--aqua  { background: var(--aqua-soft);  color: var(--aqua); }
.phero__ico--sun   { background: var(--sun-soft);   color: var(--sun); }

.phero__seal {
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px 22px 22px;
  text-align: center;
}
.phero__seal svg { width: 155px; height: auto; margin-inline: auto; display: block; }
.phero__seal p { margin-top: 15px; font-size: 14.5px; color: var(--muted); }
.phero__seal a { color: var(--brand); display: inline-block; margin-top: 4px; }

/* what's included — two columns in one bordered container, 1px dividers.
   An odd last item spans the full width so no empty cell shows through. */
.checks {
  margin-top: clamp(30px, 3.5vw, 46px);
  list-style: none; margin-bottom: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.checks li {
  background: var(--surface);
  display: grid; grid-template-columns: 17px 1fr; gap: 12px; align-items: start;
  padding: 18px clamp(18px, 2.2vw, 28px);
  color: var(--ink-2); font-size: 16px; line-height: 1.5;
}
.checks li:last-child:nth-child(odd) { grid-column: 1 / -1; }
.checks li svg {
  width: 15px; height: 15px; margin-top: 5px;
  stroke: var(--aqua); fill: none; stroke-width: 2.6;
  stroke-linecap: round; stroke-linejoin: round;
}

/* pricing: the three interior levels, and the exterior rate + extras.
   Same container-with-hairlines device as .services and .checks. */
.tiers {
  margin-top: clamp(30px, 3.5vw, 46px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.tier {
  background: var(--surface);
  padding: 28px clamp(20px, 2.4vw, 30px) 30px;
  display: flex; flex-direction: column;
}
.tier__k {
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--aqua);
}
.tier h3 { font-size: 20px; margin-top: 12px; }
.tier > p { margin-top: 10px; color: var(--muted); font-size: 15.5px; }
.tier__price {
  margin-top: auto; padding-top: 22px;
  font-family: var(--f-display); font-weight: 800; font-size: 27px;
  color: var(--ink);
}
.tier__price small {
  display: block; margin-top: 3px;
  font-family: var(--f-body); font-weight: 400; font-size: 13.5px;
  color: var(--muted);
}

.rate {
  margin-top: clamp(30px, 3.5vw, 46px);
  background: var(--brand-soft);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px clamp(22px, 3vw, 36px);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 18px;
}
.rate strong {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 3.6vw, 40px); color: var(--ink);
}
.rate span { color: var(--ink-2); font-size: 16.5px; }

/* the extras list reuses .checks, but in the accent that means "costs more" */
.checks--extra { margin-top: 18px; }
.checks--extra li svg { stroke: var(--sun); }
.checks li b { color: var(--ink); font-weight: 700; }

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

.services--two { grid-template-columns: repeat(2, 1fr); }
/* the two cards keep each service's own accent colour, which the
   :nth-child rules above would otherwise reassign by position */
.services--two .svc .svc__ico--brand { background: var(--brand-soft); color: var(--brand); }
.services--two .svc .svc__ico--aqua  { background: var(--aqua-soft);  color: var(--aqua); }
.services--two .svc .svc__ico--sun   { background: var(--sun-soft);   color: var(--sun); }
.services--two .svc h3 a { color: inherit; text-decoration: none; }
.services--two .svc h3 a:hover { color: var(--brand); }

/* the "read the full page" link on the home page's three service cards */
.svc__link {
  margin-top: 18px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand); text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
  align-self: flex-start;
}
.svc__link svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.svc__link:hover svg { transform: translateX(3px); }

@media (max-width: 880px) {
  .phero__grid { grid-template-columns: 1fr; }
  .phero__seal { max-width: 320px; }
}
@media (max-width: 760px) {
  .checks { grid-template-columns: 1fr; }
  .checks li:last-child:nth-child(odd) { grid-column: auto; }
}
@media (max-width: 860px) { .services--two { grid-template-columns: 1fr; } }

/* ============================================================
   PROMISES — three stated values
   ============================================================ */
.promises {
  margin-top: clamp(34px, 4vw, 52px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.promise { background: var(--ground-2); padding: 30px 28px 32px; }
.promise__k {
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--aqua);
}
.promise h3 { font-size: 21px; margin-top: 12px; }
.promise p { margin-top: 12px; color: var(--muted); font-size: 16px; }
@media (max-width: 800px) { .promises { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS — a real 3-step sequence, so numbers earn their place
   ============================================================ */
.steps {
  margin-top: clamp(34px, 4vw, 52px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  counter-reset: step;
}
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--line-strong); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .1em;
  color: var(--brand);
  position: absolute; top: -10px; left: 0;
  background: var(--ground); padding-right: 12px;
}
.step h3 { font-size: 21px; }
.step p { margin-top: 10px; color: var(--muted); font-size: 16px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   CREW — the photo, bled into its own gradient
   ============================================================ */
.crew {
  background: var(--crew-grad);
  color: #FFF;
  position: relative;
  overflow: hidden;
}
.crew__inner {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding-block: clamp(44px, 5vw, 60px) 0;
}
.crew__copy { padding-bottom: clamp(44px, 5vw, 60px); }
.crew .eyebrow { color: rgba(255,255,255,.8); }
.crew h2 { font-size: clamp(28px, 3.8vw, 42px); margin-top: 14px; }
.crew p { margin-top: 16px; font-size: 17.5px; color: rgba(255,255,255,.92); max-width: 40ch; }
.crew__photo { display: block; width: 100%; height: auto; align-self: end; }
@media (max-width: 880px) {
  .crew__inner { grid-template-columns: 1fr; gap: 0; }
  .crew__copy { padding-bottom: 28px; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews__top {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 24px;
}
.quotes {
  margin-top: clamp(34px, 4vw, 48px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-soft);
}
.quote blockquote {
  margin: 0;
  font-family: var(--f-display);
  font-size: 18.5px; font-weight: 500;
  line-height: 1.42; letter-spacing: -.012em;
  color: var(--ink);
}
.quote figcaption {
  margin-top: auto;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .04em;
  color: var(--muted);
}
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }

/* ============================================================
   AREA
   ============================================================ */
.area__grid {
  margin-top: clamp(30px, 4vw, 46px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.area__cell {
  background: var(--surface);
  padding: 24px 22px;
  text-align: center;
}
.area__cell b { font-family: var(--f-display); font-size: 20px; display: block; }
.area__cell span { font-family: var(--f-mono); font-size: 12px; color: var(--muted); letter-spacing: .04em; }
@media (max-width: 800px) { .area__grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   BOOK
   ============================================================ */
.book__grid {
  margin-top: clamp(30px, 4vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.contact-list li { background: var(--ground); padding: 16px 0; display: grid; grid-template-columns: 108px 1fr; gap: 16px; align-items: baseline; }
.contact-list dt, .contact-list .k {
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
.contact-list .v { font-size: 16.5px; color: var(--ink); }
.contact-list .v a { text-decoration: none; border-bottom: 1.5px solid var(--line-strong); }
.contact-list .v a:hover { color: var(--brand); border-bottom-color: var(--brand); }
.contact-list .v small { display: block; color: var(--muted); font-size: 14px; }

.embed {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow-lift);
  position: relative;
}
.embed iframe { border: 0; width: 100%; height: 900px; display: block; border-radius: 8px; background: #fff; }
.embed__fallback {
  padding: 40px 28px; text-align: center;
}
.embed__fallback p { color: var(--muted); margin-bottom: 18px; }
@media (max-width: 900px) { .book__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--night);
  color: var(--night-text);
  padding-block: clamp(48px, 6vw, 72px) 28px;
}
.foot__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 36px;
  border-bottom: 1px solid var(--night-line);
}
.foot__logo img { width: 210px; height: auto; display: block; }
.foot p, .foot li { color: var(--night-muted); font-size: 15.5px; }
.foot__tag { margin-top: 16px; max-width: 34ch; }
.foot h4 {
  font-family: var(--f-mono); font-weight: 400; font-size: 11.5px;
  letter-spacing: .14em; text-transform: uppercase; color: #fff;
  margin: 0 0 14px;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot a { text-decoration: none; }
.foot ul a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  border: 1px solid var(--night-line);
  color: var(--night-text);
  transition: background-color .2s ease, transform .2s ease, border-color .2s ease;
}
.socials a:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); border-color: rgba(255,255,255,.4); }
.socials svg { width: 18px; height: 18px; display: block; }
.foot__bar {
  padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .05em;
  color: var(--night-muted);
}
@media (max-width: 820px) { .foot__grid { grid-template-columns: 1fr 1fr; } .foot__brand { grid-column: 1 / -1; } }

/* ============================================================
   MOTION — everything is visible at rest; reveal only lifts it
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1); }

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
