/* ═══════════════════════════════════════════════════════
   ZK Mechanical — FLAME & FROST design system
   The shared stylesheet for every page on zk1.searchpod.dev.
   Living reference & rules: /design-system/

   Colour roles: blue = structure · flame = action · green =
   trust signals (checks, dots, eyebrows, "handled"). Flat
   colour only — no gradients. Green is never a big surface.
   ═══════════════════════════════════════════════════════ */
:root {
  --ground: #f2f6fb; /* ice paper */
  --ink: #102a4c; /* deep navy ink */
  --brand: #1155a8; /* royal blue field */
  --brand-deep: #0c3f80;
  --tint: #d9eafa; /* ice tile */
  --tint2: #fde0d3; /* flame tile */
  --green: #15845a;
  --green-deep: #0b5c3d;
  --green-tint: #dff2ce;
  --green-bright: #3ecf8e; /* for dark grounds */
  --pop: #de4519; /* flame CTA */
  --pop-text: #ffffff;
  --cream: #f7faff; /* text/cards on brand */
  --line: rgb(16 42 76 / 0.18);
  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;
  --mono: "Courier Prime", "Courier New", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--ground);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--tint);
}

:focus-visible {
  outline: 3px solid var(--brand-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: min(72rem, 100% - 2.6rem);
  margin-inline: auto;
}

/* Keyboard users get a way past the header; invisible until focused. */
.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: var(--pop);
  color: var(--pop-text);
  font-weight: 800;
  transition: top 0.15s;
}

.skip:focus {
  top: 1rem;
}

.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.005em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--green-tint);
  color: var(--green-deep);
}

.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.85rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
  font-size: 1rem;
  transition:
    transform 0.15s,
    background 0.2s;
}

.pill:hover {
  transform: translateY(-2px);
}

.pill--pop {
  background: var(--pop);
  color: var(--pop-text);
}

.pill--ghost {
  background: transparent;
  border: 2px solid rgb(255 255 255 / 0.45);
  color: var(--cream);
}

.pill--ghost-ink {
  background: transparent;
  border: 2px solid var(--line);
  color: var(--ink);
}

/* ── Top bar ── */
.top {
  background: var(--brand);
  color: var(--cream);
  padding-block: 1.1rem;
}

.top .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.mark {
  font-family: var(--display);
  font-size: 1.4rem;
  text-transform: uppercase;
}

/* ── Logo: frost/flame badge + stacked wordmark ── */
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo__badge {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.logo__word {
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.logo__word small {
  display: block;
  font-family: var(--body);
  font-weight: 800;
  font-size: 0.52rem;
  letter-spacing: 0.36em;
  margin-top: 0.22em;
  opacity: 0.85;
}

/* Logo row: the real icon on its white plate, with the company
   name simply typed out beside it — full size, always legible. */
.logo-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  padding: 0.35rem 0.5rem;
}

.logo-plate img {
  height: 36px;
  width: auto;
  display: block;
}

.logo-type {
  font-family: var(--display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1;
}

.top {
  position: relative;
  z-index: 50;
}

.top nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-weight: 700;
  font-size: 0.92rem;
}

/* ── Menu: hub link + chevron toggle + dropdown panel ── */
.nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__item > a {
  padding: 0.5rem 0.4rem 0.5rem 0.8rem;
  border-radius: 999px 0 0 999px;
}

.nav__item > a:hover,
.nav__item > a[aria-current="page"] {
  background: rgb(247 250 255 / 0.14);
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 0.55rem 0.7rem 0.55rem 0.3rem;
  border-radius: 0 999px 999px 0;
}

.nav__toggle:hover,
.nav__item.is-open > .nav__toggle {
  background: rgb(247 250 255 / 0.14);
}

.nav__toggle svg {
  width: 13px;
  height: 13px;
  transition: transform 0.15s;
}

.nav__item.is-open > .nav__toggle svg {
  transform: rotate(180deg);
}

.nav__panel {
  display: none;
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  min-width: 14rem;
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 0.6rem;
  box-shadow: 6px 6px 0 var(--ink);
}

/* Invisible bridge so the pointer can travel from the label to the panel. */
.nav__panel::before {
  content: "";
  position: absolute;
  top: -0.9rem;
  left: 0;
  right: 0;
  height: 0.9rem;
}

.nav__item:hover > .nav__panel,
.nav__item:focus-within > .nav__panel,
.nav__item.is-open > .nav__panel {
  display: block;
}

.nav__panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.1rem;
}

.nav__panel--2 {
  min-width: 29rem;
}

.nav__panel--2 ul {
  grid-template-columns: 1fr 1fr;
}

.nav__panel--3 {
  min-width: 34rem;
  left: 50%;
  transform: translateX(-50%);
}

.nav__panel--3 ul {
  grid-template-columns: repeat(3, 1fr);
}

.nav__panel a {
  display: block;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav__panel a:hover,
.nav__panel a[aria-current="page"] {
  background: var(--green-tint);
  color: var(--green-deep);
}

.nav__all {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1.5px solid var(--line);
}

.nav__all a {
  color: var(--green-deep);
}

.top__right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.top__phone {
  font-weight: 800;
  font-size: 0.95rem;
}

.top .pill {
  padding: 0.62rem 1.35rem;
  font-size: 0.9rem;
}

.pill__short {
  display: none;
}

.top__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  background: transparent;
  border: 2px solid rgb(247 250 255 / 0.45);
  border-radius: 999px;
  color: var(--cream);
  cursor: pointer;
}

.top__burger svg {
  width: 20px;
  height: 20px;
}

.top--open .top__burger {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* ── Hero ── */
.hero {
  position: relative;
  background: var(--brand);
  color: var(--cream);
  overflow: hidden;
  text-align: center;
  padding: clamp(3.5rem, 7vw, 6rem) 0 0;
}

/* A flat GTA roofline grounds the hero — two depths of navy
   silhouettes, a few windows lit flame. We keep the lights warm. */
.skyline {
  display: block;
  width: 100%;
  height: clamp(120px, 16vw, 210px);
  margin-top: clamp(2.6rem, 5vw, 4rem);
}

.hero .wrap {
  position: relative;
}

.hero .kicker {
  background: rgb(62 207 142 / 0.16);
  color: var(--green-bright);
}

.hero h1 .h1-green {
  color: var(--green-bright);
}

.hero .sub .sub-green {
  color: var(--green-bright);
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(3.6rem, 11.5vw, 9rem);
}

.hero .sub {
  margin: 1.5rem auto 0;
  max-width: 34em;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  font-weight: 600;
}

.hero__cta {
  margin-top: 2.3rem;
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero__chips {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgb(255 255 255 / 0.4);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
}

.chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
}

/* ── Ticker ── */
.ticker {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding-block: 0.8rem;
  display: flex;
  white-space: nowrap;
}

.ticker__track {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
  justify-content: space-around;
  gap: 2.6rem;
  padding-right: 2.6rem;
  animation: tick 36s linear infinite;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ticker__track em {
  font-style: normal;
  color: var(--green-bright);
}

@keyframes tick {
  to { transform: translateX(-100%); }
}

/* ── Section scaffolding ── */
.section {
  padding-block: clamp(4rem, 7.5vw, 6.5rem);
}

.section > .wrap > .kicker {
  display: flex;
  width: fit-content;
  margin-inline: auto;
}

.h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  text-align: center;
  margin-top: 0.5rem;
}

/* ── Three moves ── */
.moves__grid {
  margin-top: 2.8rem;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, 1fr);
}

.move {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 1.7rem;
}

.move .num {
  font-family: var(--display);
  font-size: 2rem;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 12px;
  background: var(--tint);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
}

.move h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.45rem;
  margin-top: 1rem;
}

.move p {
  margin-top: 0.5rem;
  font-size: 0.97rem;
  color: rgb(16 42 76 / 0.75);
}

/* ── Services grid ── */
.services {
  background: #fff;
}

.services__grid {
  margin-top: 2.8rem;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, 1fr);
}

.svc {
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 1.6rem;
  background: var(--ground);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 11rem;
  transition: transform 0.15s;
}

.svc:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--green-tint);
}

.svc h3,
.svc .svc__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.6rem;
}

.svc p {
  font-size: 0.95rem;
  color: rgb(16 42 76 / 0.75);
  flex: 1;
}

.svc span {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Seasons split ── */
.seasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.season {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.6rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.season--winter {
  background: var(--brand-deep);
  color: var(--cream);
}

.season--summer {
  background: var(--green-tint);
}

.season h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.season p {
  max-width: 30em;
  font-weight: 600;
}

.season img {
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  border: 2px solid rgb(0 0 0 / 0.2);
}

.season .pill {
  align-self: flex-start;
}

/* ── Care panel ── */
.care {
  position: relative;
  isolation: isolate;
  color: var(--cream);
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.care__bg,
.care__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.care::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(6 14 28 / 0.62);
  z-index: -1;
}

.care .wrap {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1.2fr 1fr;
}

.care h2 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
}

.care .sub {
  margin-top: 1.1rem;
  max-width: 30em;
  color: rgb(247 250 255 / 0.85);
}

.care .kicker {
  background: rgb(247 250 255 / 0.14);
}

.carecard {
  justify-self: center;
  width: min(21rem, 100%);
  background: var(--cream);
  color: var(--ink);
  border-radius: 26px;
  padding: 1.5rem;
  box-shadow: 0 30px 70px -20px rgb(0 0 0 / 0.55);
}

.carecard__temp {
  background: var(--tint);
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
}

.carecard__temp .deg {
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 1;
  margin-top: 0.4rem;
}

.carecard ul {
  list-style: none;
  padding: 0;
  margin-top: 0.9rem;
}

.carecard li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.62rem;
  font-weight: 600;
  font-size: 0.92rem;
  border-top: 1.5px solid var(--line);
}

.carecard li b {
  color: var(--green-deep);
}

/* ── Stats band ── */
.stats {
  background: var(--pop);
  color: var(--pop-text);
  padding-block: clamp(2.4rem, 4vw, 3.4rem);
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  text-align: center;
}

.stat b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1;
}

.stat span {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Reviews ── */
.reviews {
  background: var(--brand);
  color: var(--cream);
}

/* On dark/brand sections the base kicker colour would vanish —
   these need to outrank `.section > .wrap > .kicker`. */
.section.reviews > .wrap > .kicker {
  background: rgb(247 250 255 / 0.14);
  color: var(--cream);
}

.reviews__grid {
  margin-top: 2.8rem;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, 1fr);
}

.review {
  background: var(--cream);
  color: var(--ink);
  border-radius: 22px;
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.review .stars {
  color: var(--brand-deep);
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.9rem;
}

.review blockquote {
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.5;
  flex: 1;
}

.review figcaption {
  font-weight: 800;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ── Money (rebates/financing) ── */
.money .wrap {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1.1fr 1fr;
}

.money h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}

.money .sub {
  margin-top: 1rem;
  max-width: 30em;
  font-weight: 600;
}

.money__list {
  list-style: none;
  padding: 0;
  margin-top: 1.4rem;
  display: grid;
  gap: 0.6rem;
}

.money__list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
}

.money__list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--green-tint);
  border: 2px solid var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.till {
  justify-self: center;
  width: min(23rem, 100%);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 1.7rem 1.5rem 1.9rem;
  font-family: var(--mono);
  box-shadow: 0 18px 40px -18px rgb(16 42 76 / 0.3);
}

.till h3 {
  text-align: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.till ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.till li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding-block: 0.52rem;
  font-size: 0.9rem;
  border-top: 1.5px dashed rgb(16 42 76 / 0.3);
}

.till li:last-child {
  border-bottom: 1.5px dashed rgb(16 42 76 / 0.3);
}

.till .stamp {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ── Areas ── */
.areas {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

.section.areas > .wrap > .kicker {
  background: rgb(247 250 255 / 0.12);
  color: var(--tint);
}

.areas__cloud {
  margin: 2.4rem auto 0;
  max-width: 52rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.areas__cloud span {
  border: 2px solid rgb(247 250 255 / 0.3);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.areas__cloud .more {
  background: var(--pop);
  color: var(--pop-text);
  border-color: var(--pop);
}

/* ── FAQ ── */
.faq__list {
  margin: 2.6rem auto 0;
  max-width: 46rem;
}

.faq__list details {
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.faq__list summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq__list summary::-webkit-details-marker {
  display: none;
}

.faq__list summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1;
}

.faq__list details[open] summary::after {
  content: "–";
}

.faq__list details p {
  padding: 0 1.4rem 1.2rem;
  color: rgb(16 42 76 / 0.8);
}

/* ── Final CTA ── */
.final {
  background: var(--brand);
  color: var(--cream);
  text-align: center;
}

.final h2 {
  font-size: clamp(3rem, 8vw, 6.4rem);
}

.final .sub {
  margin: 1.2rem auto 0;
  max-width: 30em;
  font-weight: 600;
}

.final .hero__cta {
  margin-top: 2.2rem;
}

/* ── Footer ── */
.foot {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2rem;
  padding-bottom: 2.6rem;
  font-size: 0.92rem;
}

.foot__grid .foot__h {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.8rem;
}

.foot__grid ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.foot__grid a:hover {
  color: var(--pop);
}

.foot__brand p {
  margin-top: 0.8rem;
  max-width: 24em;
  opacity: 0.75;
}

.foot__meta {
  border-top: 1px solid rgb(247 250 255 / 0.15);
  padding-block: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  opacity: 0.8;
}

.foot__zk {
  display: block;
  font-family: var(--display);
  font-size: clamp(10rem, 32vw, 24rem);
  line-height: 1;
  text-align: center;
  color: var(--pop);
  margin-bottom: 0;
}

/* ── Responsive ── */
@media (max-width: 58rem) {
  /* Nav becomes a drawer under the bar; groups expand on tap only. */
  .top nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.8rem 1.3rem 1.4rem;
    background: var(--brand-deep);
    border-top: 2px solid rgb(247 250 255 / 0.15);
    box-shadow: 0 24px 40px -20px rgb(0 0 0 / 0.5);
  }
  .top--open nav {
    display: flex;
  }
  .top__burger {
    display: inline-flex;
  }
  .top__right {
    gap: 0.6rem;
  }
  .nav__item {
    flex-wrap: wrap;
  }
  .nav__item > a {
    flex: 1;
    padding: 0.75rem 0.9rem;
    font-size: 1rem;
  }
  .nav__toggle {
    padding: 0.75rem 0.9rem;
  }
  .nav__toggle svg {
    width: 16px;
    height: 16px;
  }
  .nav__panel,
  .nav__panel--3 {
    position: static;
    transform: none;
    width: 100%;
    min-width: 0;
    margin: 0.3rem 0 0.6rem;
    box-shadow: none;
  }
  .nav__panel::before {
    display: none;
  }
  .nav__item:hover > .nav__panel,
  .nav__item:focus-within > .nav__panel {
    display: none;
  }
  .nav__item.is-open > .nav__panel {
    display: block;
  }
  .nav__panel--2 ul,
  .nav__panel--3 ul {
    grid-template-columns: 1fr 1fr;
  }
  .nav__panel a {
    white-space: normal;
  }
  .moves__grid,
  .services__grid,
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  .seasons {
    grid-template-columns: 1fr;
  }
  .care .wrap,
  .money .wrap {
    grid-template-columns: 1fr;
  }
  .stats .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 40rem) {
  .top__phone {
    display: none;
  }
  .top .pill {
    padding: 0.55rem 0.95rem;
    font-size: 0.85rem;
  }
  .pill__long {
    display: none;
  }
  .pill__short {
    display: inline;
  }
  .nav__panel--2 ul,
  .nav__panel--3 ul {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .ticker__track {
    animation: none;
  }
  .pill,
  .svc {
    transition: none;
  }
}

/* ── Inner pages (added for the zk1 build-out) ── */

.page-hero {
  background: var(--brand);
  color: var(--cream);
  padding-block: clamp(2.8rem, 6vw, 4.5rem);
}

.page-hero .kicker {
  background: rgb(62 207 142 / 0.16);
  color: var(--green-bright);
}

.page-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.98;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  margin-top: 0.9rem;
}

.page-hero .lead {
  margin-top: 1.1rem;
  max-width: 36em;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 600;
}

.page-hero .hero__cta {
  justify-content: flex-start;
  margin-top: 1.8rem;
}

.crumbs {
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 1.2rem;
}

.crumbs a:hover {
  text-decoration: underline;
}

.prose {
  max-width: 68ch;
}

.prose p {
  margin: 0 0 1rem;
  color: rgb(16 42 76 / 0.85);
}

.prose h2 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 2.2rem 0 0.8rem;
}

.split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* Grid items default to min-width:auto, so a wide table inside the prose
   column would widen the column (and the page) instead of scrolling inside
   its own overflow container. */
.split > *,
.page-hero .wrap--split > * {
  min-width: 0;
}

.side {
  position: sticky;
  top: 1.2rem;
  display: grid;
  gap: 1rem;
}

.panel {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 1.5rem;
}

.panel h3,
.panel .panel__h {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.6rem;
  font-weight: 600;
  font-size: 0.94rem;
  border-top: 1.5px solid var(--line);
}

.price-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.price-list b {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.price-note {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: rgb(16 42 76 / 0.7);
}

.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--green-tint);
  border: 2px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

.linkrow {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.linkrow a {
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1.05rem;
  font-weight: 700;
  font-size: 0.9rem;
  background: #fff;
}

.linkrow a:hover {
  border-color: var(--green);
}

.review--single {
  border: 2px solid var(--ink);
}

/* ── Quote form ── */
.qform {
  display: grid;
  gap: 0.9rem;
}

.qform__hp {
  position: absolute;
  left: -9999px;
}

.qform label {
  display: block;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.qform input,
.qform select,
.qform textarea {
  width: 100%;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
}

.qform input:focus,
.qform select:focus,
.qform textarea:focus {
  outline: none;
  border-color: var(--brand);
}

.qform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.qform__submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.qform__note {
  font-size: 0.88rem;
  color: rgb(16 42 76 / 0.75);
}

.qform__status {
  font-weight: 700;
  min-height: 1.3em;
}

@media (max-width: 52rem) {
  .split {
    grid-template-columns: 1fr;
  }
  .side {
    position: static;
  }
  .qform__row {
    grid-template-columns: 1fr;
  }
}

/* ── Content pages (service areas, answers, blog, company) ── */

[hidden] {
  display: none !important;
}

.section--white {
  background: #fff;
}

.h2--left {
  text-align: left;
}

.section-head {
  margin-bottom: 1.8rem;
}

.section-head .kicker + h2 {
  margin-top: 0.7rem;
}

.section-head p {
  margin-top: 0.8rem;
  max-width: 40em;
  color: rgb(16 42 76 / 0.8);
  font-weight: 600;
}

/* Page hero variants */
.page-hero .hero__chips {
  justify-content: flex-start;
  margin-top: 1.6rem;
}

.page-hero__meta {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 700;
  opacity: 0.85;
}

.page-hero .wrap--split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.page-hero__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
  border: 2px solid rgb(247 250 255 / 0.3);
}

.page-hero .linkrow a {
  border-color: rgb(247 250 255 / 0.35);
  background: transparent;
  color: var(--cream);
}

.page-hero .linkrow a:hover {
  background: var(--cream);
  color: var(--ink);
}

/* Long-form prose */
.prose h3 {
  font-weight: 800;
  font-size: 1.15rem;
  margin: 1.6rem 0 0.5rem;
}

.prose ul:not(.check-list) {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.prose ul:not(.check-list) > li {
  position: relative;
  padding-left: 1.5rem;
  color: rgb(16 42 76 / 0.85);
}

.prose ul:not(.check-list) > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
}

.prose a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgb(17 85 168 / 0.35);
}

.prose a:hover {
  text-decoration-color: var(--pop);
}

.prose strong {
  color: var(--ink);
}

.prose--article {
  font-size: 1.06rem;
}

.prose--article p {
  line-height: 1.65;
}

.prose .check-list {
  margin: 1rem 0 1.5rem;
}

/* Quick answer — the quotable box on /answers pages */
.quick {
  background: #fff;
  border: 2px solid var(--ink);
  border-left-width: 10px;
  border-left-color: var(--green);
  border-radius: 18px;
  padding: 1.3rem 1.5rem;
  margin-bottom: 1.8rem;
}

.quick .label {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}

.quick p {
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}

/* Mid-article call-out */
.callout {
  background: var(--brand);
  color: var(--cream);
  border-radius: 22px;
  padding: 1.6rem 1.8rem;
  margin: 2rem 0;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.callout strong {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.35rem;
  color: var(--cream);
}

.callout p {
  font-size: 0.95rem;
  color: rgb(247 250 255 / 0.85);
  margin: 0;
}

/* Card grids: cities, answers, posts */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.cards--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.15s;
}

.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 2px solid var(--ink);
}

.card--city img {
  aspect-ratio: 4 / 3;
}

.card__body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.card__tag {
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.card h3 {
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1.3;
}

.card--city h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.55rem;
}

.card p {
  font-size: 0.92rem;
  color: rgb(16 42 76 / 0.75);
  flex: 1;
}

.card__meta {
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.7;
}

.card__more {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Search + filter pills on hub pages */
.search {
  width: min(34rem, 100%);
  margin: 0 auto;
}

.search input {
  width: 100%;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
}

.search input:focus {
  outline: none;
  border-color: var(--brand);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.4rem 0 2rem;
}

.filters button {
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.filters button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.filters button small {
  font-size: 0.8em;
  opacity: 0.6;
  margin-left: 0.3rem;
}

.empty {
  text-align: center;
  padding: 3rem 1rem;
  font-weight: 700;
  color: rgb(16 42 76 / 0.7);
}

/* Two-up cards inside prose columns */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin: 1.2rem 0 1.6rem;
}

.grid-2 .move {
  padding: 1.2rem 1.4rem;
}

.grid-2 .move strong {
  display: block;
  font-size: 1.05rem;
}

.grid-2 .move p {
  margin: 0.3rem 0 0;
}

.moves__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Sidebar link lists */
.side-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.side-links a::before {
  content: "→ ";
  color: var(--green);
}

.side-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.side-links small {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  opacity: 0.65;
  padding-left: 1.3rem;
}

/* Areas cloud on the home page — chips became real links */
.areas__cloud a {
  border: 2px solid rgb(247 250 255 / 0.3);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.areas__cloud a:hover {
  background: var(--cream);
  color: var(--ink);
}

.areas__cloud a.more {
  background: var(--pop);
  color: var(--pop-text);
  border-color: var(--pop);
}

.areas__cloud a.more:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.photo {
  width: 100%;
  border-radius: 22px;
  border: 2px solid var(--ink);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Error-code tables and the rebate calculator */
.prose .tbl {
  margin: 1.2rem 0 1.6rem;
  overflow-x: auto;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
}

table.codes {
  border-collapse: collapse;
  width: 100%;
  min-width: 46rem;
  font-size: 0.92rem;
}

table.codes th {
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.8rem 0.9rem;
  background: var(--tint);
  border-bottom: 2px solid var(--ink);
}

table.codes td {
  padding: 0.6rem 0.9rem;
  border-top: 1.5px solid var(--line);
  vertical-align: top;
  color: rgb(16 42 76 / 0.85);
}

table.codes code {
  font-family: var(--mono);
  font-weight: 700;
  white-space: nowrap;
  color: var(--ink);
}

.safe {
  display: inline-block;
  white-space: nowrap;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
}

.safe--ok {
  background: var(--green-tint);
  color: var(--green-deep);
}

.safe--warn {
  background: var(--tint);
}

.safe--call {
  background: var(--pop);
  color: var(--pop-text);
  border-color: var(--pop);
}

.calc {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 1.3rem 1.4rem;
  margin: 0 0 1.8rem;
}

.calc__out {
  margin-top: 1.2rem;
  border-top: 2px solid var(--line);
  padding-top: 1rem;
}

.calc__total {
  font-weight: 800;
  font-size: 1.05rem;
}

@media (max-width: 58rem) {
  .cards,
  .grid-2,
  .moves__grid--4 {
    grid-template-columns: 1fr;
  }
  .cards--4 {
    grid-template-columns: 1fr 1fr;
  }
  .page-hero .wrap--split {
    grid-template-columns: 1fr;
  }
}
