/* ==========================================================================
   Prime Carpet Cleaning — site styles
   Palette: deep pine + wool off-white + sap green, ochre used sparingly.
   Motif: the "nap band" — the light/dark stripe a cleaning wand leaves behind.
   ========================================================================== */

:root {
  --paper:      #FAFAF7;
  --wool:       #E8EBE3;
  --wool-deep:  #D7DCCF;
  --pine:       #0E3B32;
  --pine-mid:   #12574A;
  --pine-deep:  #071F1A;
  --sap:        #2F9160;
  --sap-bright: #45B37C;
  --ochre:      #DDA524;
  --ink:        #16211E;
  --muted:      #5A6B64;
  --line:       rgba(14, 59, 50, .16);
  --line-soft:  rgba(14, 59, 50, .08);

  --maxw: 1160px;
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;

  --shadow: 0 1px 2px rgba(7,31,26,.05), 0 12px 32px -18px rgba(7,31,26,.30);
  --shadow-lift: 0 2px 4px rgba(7,31,26,.06), 0 22px 48px -22px rgba(7,31,26,.42);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Karla", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--pine); text-decoration-color: var(--line); text-underline-offset: 3px; }
a:hover { color: var(--sap); }

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

/* --------------------------------------------------------- type ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 1;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--pine);
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.05rem); font-variation-settings: "SOFT" 40, "WONK" 1; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.18rem, 1.7vw, 1.42rem); letter-spacing: -.005em; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--muted);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sap);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 8px; flex: none;
  background: repeating-linear-gradient(90deg, var(--sap) 0 3px, transparent 3px 6px);
}
.eyebrow--light { color: var(--ochre); }
.eyebrow--light::before { background: repeating-linear-gradient(90deg, var(--ochre) 0 3px, transparent 3px 6px); }

.mono { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .04em; }

/* ------------------------------------------------------ structure -------- */

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 820px; }

.section { padding: clamp(56px, 7.5vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--wool { background: var(--wool); }
.section--pine { background: var(--pine); color: #DCE6E1; }
.section--pine h2, .section--pine h3 { color: #F4F8F5; }
.section--pine .lede { color: #A9C0B7; }

.section-head { max-width: 720px; margin-bottom: clamp(30px, 4vw, 52px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.nap {
  height: 9px;
  background: repeating-linear-gradient(90deg, var(--wool-deep) 0 13px, var(--wool) 13px 26px);
}
.nap--dark { background: repeating-linear-gradient(90deg, rgba(255,255,255,.10) 0 13px, transparent 13px 26px); }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* -------------------------------------------------------- images --------- */
/* Every photo sits on a wool-coloured ground so a slow load never shows a hole. */

img { height: auto; }

.card-media {
  margin: -24px -24px 20px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--r) var(--r) 0 0;
  background: var(--wool);
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
a.card:hover .card-media img { transform: scale(1.035); }

.figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--wool);
}
.figure--wide { aspect-ratio: 2 / 1; border-radius: var(--r); }
.figure img { width: 100%; height: 100%; object-fit: cover; }

.page-banner {
  margin: clamp(28px, 4vw, 44px) 0 0;
  aspect-ratio: 8 / 3;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--wool);
  box-shadow: var(--shadow);
}
.page-banner img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------------------------------- buttons --------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 700; letter-spacing: .01em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: .875rem; }

.btn-primary { background: var(--sap); color: #fff; }
.btn-primary:hover { background: var(--pine-mid); color: #fff; }

.btn-dark { background: var(--pine); color: #fff; }
.btn-dark:hover { background: var(--pine-deep); color: #fff; }

.btn-ghost { border-color: var(--line); color: var(--pine); background: transparent; }
.btn-ghost:hover { border-color: var(--pine); background: rgba(14,59,50,.05); color: var(--pine); }

.btn-light { background: #fff; color: var(--pine); }
.btn-light:hover { background: var(--wool); color: var(--pine); }

.btn-outline-light { border-color: rgba(255,255,255,.4); color: #F4F8F5; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* -------------------------------------------------------- header --------- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,250,247,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; gap: 20px;
  min-height: 74px;
}

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 7px; flex: none;
  object-fit: cover;
}
.brand-text { font-family: var(--font-display); font-size: 1.16rem; color: var(--pine); letter-spacing: -.02em; }
.brand-text strong { font-weight: 700; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-size: .93rem; font-weight: 600; text-decoration: none; color: var(--pine);
  padding: 6px 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: repeating-linear-gradient(90deg, var(--sap) 0 3px, transparent 3px 6px);
  opacity: 0; transition: opacity .18s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { opacity: 1; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.phone {
  font-family: var(--font-mono); font-size: .92rem; font-weight: 600;
  text-decoration: none; color: var(--pine); white-space: nowrap;
}
.phone:hover { color: var(--sap); }

.nav-toggle {
  display: none;
  font-family: var(--font-mono); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  background: transparent; border: 1.5px solid var(--line); color: var(--pine);
  padding: 9px 15px; border-radius: 999px; cursor: pointer;
}

/* ---------------------------------------------------------- hero --------- */

.hero { padding: clamp(48px, 6.5vw, 92px) 0 clamp(52px, 6vw, 84px); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero h1 { margin-bottom: .38em; }
.hero .lede { max-width: 34em; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line);
}
.hero-trust li {
  list-style: none;
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: .5rem;
}
.hero-trust li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sap); flex: none; }
.hero-trust ul { margin: 0; padding: 0; }

/* ---- Signature element: the cleaning pass -------------------------------- */

.pass {
  position: relative;
  aspect-ratio: 6 / 5;
  background: var(--wool);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  isolation: isolate;
}
.pass-layer { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* the "after" photo sits underneath; the "before" photo covers it, then retracts */
.pass-soiled {
  clip-path: inset(0 0 0 0);
  animation: passSweep 2400ms cubic-bezier(.62,.04,.28,1) 700ms forwards;
}
.pass-wand {
  position: absolute; left: 0; right: 0; top: -34px; height: 34px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.42), rgba(221,165,36,.55));
  mix-blend-mode: screen;
  opacity: 0;
  animation: wandTravel 2400ms cubic-bezier(.62,.04,.28,1) 700ms forwards;
}
@keyframes passSweep { from { clip-path: inset(0 0 0 0); } to { clip-path: inset(100% 0 0 0); } }
@keyframes wandTravel {
  0%   { top: -34px; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.pass-tags {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px; pointer-events: none;
}
.pass-tag {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(7,31,26,.62); color: #fff; backdrop-filter: blur(4px);
}
.pass-tag--after { align-self: flex-end; background: rgba(47,145,96,.9); }

.pass-replay {
  position: absolute; right: 14px; top: 14px; z-index: 3;
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(250,250,247,.9); color: var(--pine);
  border: none; padding: 8px 13px; border-radius: 999px; cursor: pointer;
}
.pass-replay:hover { background: #fff; }
.pass-caption {
  margin-top: 14px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; color: var(--muted);
  text-align: center;
}

/* --------------------------------------------------------- cards --------- */

.card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card h3 { margin-bottom: .45em; }
.card p { color: var(--muted); font-size: .95rem; }
.card .card-link {
  margin-top: auto; padding-top: 16px;
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sap); text-decoration: none; font-weight: 600;
}
.card .card-link::after { content: " →"; }
a.card { text-decoration: none; color: inherit; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--line); color: inherit; }

.pillar { padding: 26px 0 0; border-top: 3px solid var(--pine); }
.pillar h3 { margin-bottom: .4em; }
.pillar p { color: var(--muted); font-size: .95rem; margin: 0; }
.section--pine .pillar { border-top-color: var(--ochre); }
.section--pine .pillar p { color: #A9C0B7; }

/* --------------------------------------------------------- steps --------- */
/* Numbered because the clean genuinely runs in this order, front to back. */

.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  counter-increment: step;
  display: grid; grid-template-columns: 78px 1fr; gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  content: "0" counter(step);
  font-family: var(--font-mono); font-size: 1.5rem; font-weight: 600;
  color: var(--sap);
}
.step h3 { margin-bottom: .35em; }
.step p { color: var(--muted); margin: 0; }
.section--pine .step { border-color: rgba(255,255,255,.16); }
.section--pine .step::before { color: var(--ochre); }
.section--pine .step p { color: #A9C0B7; }

/* --------------------------------------------------------- prose --------- */

.prose { font-size: 1.02rem; }
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { padding-left: 1.15em; margin: 0 0 1.15em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--sap); }

.prose-2col { columns: 2; column-gap: 46px; }
.prose-2col p { break-inside: avoid; }

.pull {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 50, "WONK" 1;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.32; color: var(--pine);
  border-left: 4px solid var(--ochre);
  padding: 4px 0 4px 22px;
  margin: 34px 0;
}

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.checklist li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; }
.checklist li::before {
  content: ""; margin-top: 8px;
  width: 16px; height: 7px; border-radius: 2px;
  background: repeating-linear-gradient(90deg, var(--sap) 0 3px, transparent 3px 6px);
}
.section--pine .checklist li::before { background: repeating-linear-gradient(90deg, var(--ochre) 0 3px, transparent 3px 6px); }

/* --------------------------------------------------------- table --------- */

.rate-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.rate-table th, .rate-table td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--line); }
.rate-table th {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.rate-table td:last-child { font-family: var(--font-mono); white-space: nowrap; color: var(--pine); font-weight: 600; }

/* ----------------------------------------------------------- faq --------- */

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 20px 40px 20px 0; position: relative;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--pine);
  font-variation-settings: "SOFT" 30, "WONK" 1;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 6px; top: 18px;
  font-family: var(--font-mono); font-size: 1.4rem; color: var(--sap); line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 40px 22px 0; color: var(--muted); }

/* --------------------------------------------------------- panel --------- */

.panel {
  background: #fff; border-radius: var(--r-lg); padding: clamp(24px, 3.4vw, 40px);
  box-shadow: var(--shadow-lift); border: 1px solid var(--line-soft);
}
.note { font-size: .88rem; color: var(--muted); }
.note a { color: var(--pine); }

/* ------------------------------------------------------- contact --------- */

.contact-list { padding: 0; margin: 0; }
.contact-list dt {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sap); margin-bottom: 4px;
}
.contact-list dd { margin: 0 0 20px; font-size: 1.05rem; }
.contact-list dd a { text-decoration: none; }
.contact-big { font-family: var(--font-mono); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; letter-spacing: -.01em; }

/* --------------------------------------------------------- banner -------- */

.cta-band { background: var(--pine); color: #DCE6E1; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(112deg, rgba(255,255,255,.035) 0 30px, transparent 30px 60px);
}
.cta-inner {
  position: relative; display: flex; flex-wrap: wrap; gap: 28px;
  align-items: center; justify-content: space-between;
  padding: clamp(38px, 5vw, 62px) 0;
}
.cta-inner h2 { margin-bottom: .3em; max-width: 16em; }
.cta-inner p { color: #A9C0B7; max-width: 34em; margin: 0; }

/* -------------------------------------------------------- footer --------- */

.site-footer { background: var(--pine-deep); color: #9DB4AC; padding: clamp(48px, 6vw, 72px) 0 0; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; }
.site-footer h4 {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ochre); font-weight: 600; margin-bottom: 16px;
}
.site-footer .brand-text { color: #F4F8F5; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #C6D6D0; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-about { max-width: 30em; }
.footer-bottom {
  margin-top: 48px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between;
  font-size: .84rem;
}

/* ------------------------------------------------------- callbar --------- */

.callbar { display: none; }

/* ------------------------------------------------------ breadcrumb ------- */

.crumbs {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); padding: 18px 0 0;
}
.crumbs a { text-decoration: none; color: var(--muted); }
.crumbs a:hover { color: var(--sap); }
.crumbs span { color: var(--line); margin: 0 8px; }

.page-hero { padding: clamp(34px, 4.5vw, 58px) 0 clamp(38px, 5vw, 62px); }
.page-hero .lede { max-width: 46em; }

/* --------------------------------------------------------- misc ---------- */

.tag-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 4px; }
.tag {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em;
  background: var(--wool); color: var(--pine);
  padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line-soft);
}
.section--pine .tag { background: rgba(255,255,255,.09); color: #DCE6E1; border-color: rgba(255,255,255,.14); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.split--wide-left { grid-template-columns: 1.25fr .75fr; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
.stat { border-left: 3px solid var(--sap); padding-left: 16px; }
.stat b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--pine); line-height: 1.1; }
.stat span { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.suburb-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px 20px;
}
.suburb-list li {
  font-size: .93rem; padding-bottom: 8px; border-bottom: 1px solid var(--line-soft); color: var(--muted);
}
.section--pine .suburb-list li { border-color: rgba(255,255,255,.12); color: #A9C0B7; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--pine); color: #fff; padding: 12px 20px; z-index: 100; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------- responsive ---------- */

@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-grid { grid-template-columns: 1fr; }
  .pass { max-width: 560px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; order: 3; }
  .nav {
    order: 4; display: none; width: 100%;
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 6px 0 18px;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .header-inner { flex-wrap: wrap; padding-top: 10px; padding-bottom: 4px; min-height: 0; }
  .header-cta .btn { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .split, .split--wide-left { grid-template-columns: 1fr; }
  .prose-2col { columns: 1; }
  .stat-row { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 620px) {
  .page-banner { aspect-ratio: 16 / 9; }
  body { font-size: 16px; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .step { grid-template-columns: 52px 1fr; gap: 14px; }
  .step::before { font-size: 1.15rem; }
  .footer-grid { grid-template-columns: 1fr; }
  body { padding-bottom: 66px; }

  .callbar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    border-top: 1px solid rgba(255,255,255,.14);
  }
  .callbar a {
    flex: 1; text-align: center; padding: 15px 8px; text-decoration: none;
    font-family: var(--font-mono); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
  }
  .callbar .callbar-phone { background: var(--sap); color: #fff; }
  .callbar .callbar-quote { background: var(--pine); color: #fff; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .pass-soiled { clip-path: inset(100% 0 0 0); }
  .pass-wand { display: none; }
  .btn:hover, a.card:hover { transform: none; }
}

@media print {
  .site-header, .callbar, .cta-band, .pass-replay { display: none; }
  body { background: #fff; }
}
