@import url("../fonts/fonts.css");

/* ===========================================================================
   Smooth Moving & Storage — design system

   The idea: a well-loaded truck. Everything has a place, nothing rattles.
   That gives the page its two signatures — a tight editorial grid, and the
   tan STRAP that runs across section heads and photo frames, taken from the
   khaki tie-downs in every one of their own photographs.

   Colour is theirs: hot pink on near-black, the same pair as the truck decal,
   the shirts and the logo. Pink is reserved for ACTION and nothing else, so a
   pink element on this page always means "you can press this".
   =========================================================================== */

:root {
  /* Surfaces, darkest to lightest */
  --ink: #0b0b0c;
  --ink-2: #121215;
  --ink-3: #1a1a1f;
  --ink-4: #232329;

  --text: #f4f4f5;
  --muted: #a1a1aa;
  --dim: #71717a;

  --pink: #ef207a;
  --pink-2: #ff4d95;
  --pink-dim: rgba(239, 32, 122, 0.14);

  /* The tan of the tie-down straps in their photos. Structure, never action. */
  --strap: #c9a227;
  --strap-dim: rgba(201, 162, 39, 0.28);

  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);

  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;

  --pad: clamp(20px, 5vw, 40px);
  --gap: clamp(20px, 3vw, 32px);
  --wrap: 1240px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.9);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

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

img, video { max-width: 100%; display: block; }
a { color: inherit; }

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

::selection { background: var(--pink); color: #fff; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--pink);
  color: #fff;
  padding: 12px 18px;
  font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

.sr {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------ typography */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0;
}

h1 { font-size: clamp(44px, 8.2vw, 92px); }
h2 { font-size: clamp(34px, 5.4vw, 62px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
h4 { font-size: 19px; }

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

.lead {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--strap);
  margin: 0 0 18px;
}

/* The strap: a short tan rule that ties every section head to the next. */
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--strap);
  border-radius: 2px;
  flex: none;
}

.num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--dim);
}

.pink { color: var(--pink); }

/* ---------------------------------------------------------------- layout */

.wrap {
  width: min(100% - (var(--pad) * 2), var(--wrap));
  margin-inline: auto;
}

.section { padding: clamp(64px, 9vw, 128px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--alt { background: var(--ink-2); }

.head {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 60px);
}
.head--wide { max-width: 940px; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 28px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background-color 0.18s var(--ease), transform 0.18s var(--ease),
    border-color 0.18s var(--ease), color 0.18s var(--ease);
}

.btn svg { width: 19px; height: 19px; flex: none; }

.btn--pink { background: var(--pink); color: #fff; }
.btn--pink:hover { background: var(--pink-2); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line-2);
}
.btn--ghost:hover { border-color: var(--text); background: rgba(255, 255, 255, 0.04); }

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

.btn:active { transform: translateY(1px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* --------------------------------------------------------------- top bar */

.topbar {
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar__list {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.topbar__list li { display: inline-flex; align-items: center; gap: 7px; }
.topbar__list svg { width: 14px; height: 14px; color: var(--strap); flex: none; }
.topbar a { color: var(--text); text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--pink); }

@media (max-width: 720px) {
  .topbar__list li:nth-child(n + 3) { display: none; }
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 11, 12, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(11, 11, 12, 0.96);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}
.brand img { width: 46px; height: 46px; border-radius: 9px; }
.brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.brand__sub {
  display: block;
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--dim);
  margin-top: 3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.18s var(--ease);
}
.nav__links a:hover { color: var(--text); }

.nav__cta { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--text);
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background-color 0.2s var(--ease);
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1020px) {
  .nav__links,
  .nav__cta .btn--ghost { display: none; }
  .burger { display: inline-flex; }
}

/* Below ~620px the brand lockup wraps onto three lines and doubles the header
   height, squeezing the CTA and the burger against it. Drop the strapline and
   stop the name breaking. */
@media (max-width: 620px) {
  .nav { min-height: 66px; gap: 12px; }
  .brand img { width: 38px; height: 38px; }
  .brand__name { font-size: 17px; white-space: nowrap; }
  .brand__sub { display: none; }
  .nav__cta .btn { min-height: 44px; padding: 10px 16px; font-size: 14px; }
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--ink);
  padding: 24px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}
.drawer.is-open { transform: translateY(0); }
.drawer__top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.drawer a.drawer__link {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.drawer .btn { margin-top: 20px; }

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

/* Full-bleed hero. The background is a three-column video wall built from
   their own vertical footage (see build/herobg.js) — three jobs at once,
   at native resolution, instead of one phone clip stretched across 16:9. */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: min(88vh, 840px);
  padding: clamp(56px, 9vh, 110px) 0 clamp(48px, 8vh, 96px);
  overflow: hidden;
}

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

/* Two scrims, not one: a horizontal ramp so the headline side stays dark
   whatever is happening in frame, and a vertical one so the trust row at the
   bottom never lands on bright sky. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 8, 9, 0.96) 0%, rgba(8, 8, 9, 0.88) 40%, rgba(8, 8, 9, 0.55) 100%),
    linear-gradient(to top, rgba(8, 8, 9, 0.92) 0%, rgba(8, 8, 9, 0) 38%);
}

.hero__grid {
  position: relative;
  display: block;
}
.hero__copy { max-width: 760px; }

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.hero__pills li {
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero__pills li strong { color: var(--pink-2); font-weight: 700; }

.hero h1 { margin-bottom: 22px; }
.hero h1 em {
  font-style: normal;
  color: var(--pink);
}

.hero__lead { max-width: 30em; margin-bottom: 30px; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  list-style: none;
  padding-left: 0;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.hero__trust svg { width: 17px; height: 17px; color: var(--pink); flex: none; }
.hero__trust strong { color: var(--text); font-weight: 700; }

/* The video sits in a strapped frame — two tan bands across a dark card,
   the same way everything in their truck is tied down. */
/* Capped: a 9:16 frame given a half-width desktop column renders nearly
   900px tall and pushes the headline off the first screen. */
.hero__media {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}

.frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-3);
  box-shadow: var(--shadow);
  aspect-ratio: 9 / 16;
}
.frame video,
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 45%);
  pointer-events: none;
}

.strapline {
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--strap);
  opacity: 0.85;
  z-index: 2;
  pointer-events: none;
}
.strapline--a { top: 16%; }
.strapline--b { bottom: 22%; }
.strapline::after {
  content: "";
  position: absolute;
  inset: 3px 0;
  background: rgba(0, 0, 0, 0.14);
}

.badge {
  position: absolute;
  z-index: 3;
  background: var(--pink);
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.9);
}
.badge--tr { top: -14px; right: -14px; }
.badge--bl { left: -16px; bottom: 34px; background: var(--text); color: var(--ink); }
.badge__k {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.badge__v {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 420px; margin-inline: auto; width: 100%; }
  .badge--tr { right: 0; }
  .badge--bl { left: 0; }
}

/* ------------------------------------------------------------- verify */

/* Every competitor in this market displays trust as a badge graphic. A badge
   cannot be checked; a licence number and a link to the federal register can.
   That is the whole point of this band. */
.verify {
  background: var(--ink-3);
  border-block: 1px solid var(--line);
}
.verify__in {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 44px);
  flex-wrap: wrap;
  padding: 26px 0;
}
.verify__lead {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
  flex: none;
}
.verify__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14.5px;
  color: var(--muted);
}
.verify__list strong {
  display: block;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.verify a.verify__link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  border-bottom: 1px solid rgba(239, 32, 122, 0.4);
  padding-bottom: 2px;
}
.verify a.verify__link:hover { border-bottom-color: var(--pink); }
.verify a.verify__link svg { width: 15px; height: 15px; }

@media (max-width: 780px) {
  .verify a.verify__link { margin-left: 0; }
}

/* ----------------------------------------------------------------- strip */

.strip {
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
}
.strip__track {
  display: flex;
  gap: 56px;
  padding: 18px 0;
  white-space: nowrap;
  animation: slide 42s linear infinite;
  width: max-content;
}
.strip__track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.strip__track span::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
}
@keyframes slide {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .strip__track { animation: none; }
}

/* -------------------------------------------------------------- services */

.svc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}

/* Six cards on a four-column grid leaves a two-card orphan row. Locked to
   three so it always resolves as 3 x 2. */
@media (min-width: 1000px) {
  .svc { grid-template-columns: repeat(3, 1fr); }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.card:hover { border-color: var(--line-2); transform: translateY(-4px); }

.card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-3);
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .card__img img { transform: scale(1.05); }
.card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 12, 0.85), transparent 55%);
}

.card__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__body p { color: var(--muted); font-size: 15.5px; }
.card h3 { font-size: 24px; }

.card__list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  color: var(--muted);
}
.card__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.card__list li::before {
  content: "";
  width: 14px;
  height: 3px;
  background: var(--strap);
  border-radius: 2px;
  margin-top: 10px;
  flex: none;
}

/* --------------------------------------------------------------- process */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 28px;
  border-top: 3px solid var(--line-2);
  counter-increment: step;
  transition: border-color 0.3s var(--ease);
}
.step:hover { border-top-color: var(--pink); }
.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--display);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  color: var(--pink);
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 10px; font-size: 22px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* ------------------------------------------------------------ protection */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}
.split--flip .split__media { order: 2; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
}

.split__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink-3);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.checks {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.checks li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: start;
}
.checks svg {
  width: 26px;
  height: 26px;
  color: var(--pink);
  margin-top: 2px;
}
.checks strong {
  display: block;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}
.checks span { color: var(--muted); font-size: 15.5px; line-height: 1.55; }

/* --------------------------------------------------------------- gallery */

.gal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}
.gal figure {
  margin: 0;
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ink-3);
}
.gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
  filter: saturate(0.92);
}
.gal figure:hover img { transform: scale(1.06); filter: saturate(1.05); }

/* --------------------------------------------------------------- reviews */

.rating {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px 26px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: var(--gap);
}
.rating__score {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 20px; height: 20px; color: #ffc247; }
.rating__meta { font-size: 14.5px; color: var(--muted); }

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}
.quote {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--pink);
  border-radius: var(--r);
  padding: 26px;
}
.quote p { font-size: 16px; }
.quote footer {
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ------------------------------------------------------------------ area */

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.areas li {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  background: var(--ink-2);
}

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

.faq { display: grid; gap: 10px; max-width: 900px; }
.faq details {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.faq details[open] { border-color: var(--line-2); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 13px;
  height: 13px;
  border-right: 2.5px solid var(--pink);
  border-bottom: 2.5px solid var(--pink);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.3s var(--ease);
  flex: none;
}
.faq details[open] summary::after { transform: rotate(225deg) translateY(-3px); }
.faq .faq__a { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }

/* -------------------------------------------------------------- cta band */

.band {
  background: var(--pink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(34px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}
.band h2 { color: #fff; }
.band p { color: rgba(255, 255, 255, 0.86); margin-top: 12px; }
@media (max-width: 820px) {
  .band { grid-template-columns: 1fr; }
}

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

.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 80px) 0 40px;
  font-size: 15px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--gap);
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer h4 {
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--dim);
  margin-bottom: 16px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--pink); }
.footer__bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--dim);
}

/* ----------------------------------------------------------- sticky bar */

.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: none;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}
.callbar.is-on { transform: translateY(0); }
.callbar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 60px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--ink-2);
  color: var(--text);
}
.callbar a.is-pink { background: var(--pink); color: #fff; }
.callbar svg { width: 18px; height: 18px; }

@media (max-width: 780px) {
  .callbar { display: flex; }
  body { padding-bottom: 60px; }
}

/* --------------------------------------------------------------- reveals */

/* Transform + opacity only. An element that clips itself never fires an
   IntersectionObserver, which is exactly how a reveal silently dies. */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
}
.rv.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .card:hover { transform: none; }
  .card__img img, .gal img { transition: none; }
}

/* --------------------------------------------------------- scroll gauge */

.gauge {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--pink);
  z-index: 80;
  pointer-events: none;
}

/* ===========================================================================
   Light sections
   ---------------------------------------------------------------------------
   The page was all-dark, which made it read thinner than the site it replaces.
   Alternating bands give it weight and give the eye somewhere to rest. Because
   every component is built on tokens, a section only has to redefine the
   tokens — no component needs a light-mode variant of its own.
   =========================================================================== */

.light {
  --ink: #ffffff;
  --ink-2: #f4f4f5;
  --ink-3: #eaeaec;
  --ink-4: #dededf;
  --text: #0b0b0c;
  --muted: #52525b;
  --dim: #71717a;
  --line: rgba(0, 0, 0, 0.10);
  --line-2: rgba(0, 0, 0, 0.22);
  --shadow: 0 30px 70px -45px rgba(0, 0, 0, 0.45);
  background: var(--ink);
  color: var(--text);
}
.light .eyebrow { color: #8a6d0f; }
.light .eyebrow::before { background: #b8931f; }
.light .card__list li::before,
.light .checks strong + span { }
.light .btn--light { background: var(--ink); color: #fff; }
.light .btn--light:hover { background: #26262b; }

/* ------------------------------------------------------- full-bleed bands */

.photoband {
  position: relative;
  isolation: isolate;
  background: var(--ink-2);
  overflow: hidden;
}
.photoband > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
/* The scrim has to stay heavy the whole way across: the truck's white flank
   fills the right of this frame, and a gradient that thins out there drops the
   last statistic to roughly 2:1 contrast. */
.photoband::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(9, 9, 10, 0.93) 0%, rgba(9, 9, 10, 0.82) 55%, rgba(9, 9, 10, 0.76) 100%);
}
.photoband--pink::after {
  background: linear-gradient(90deg, rgba(150, 12, 68, 0.95) 0%, rgba(239, 32, 122, 0.78) 100%);
}

/* ----------------------------------------------------------------- stats */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: clamp(24px, 4vw, 48px);
}
.stat__k {
  display: block;
  font-family: var(--display);
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.stat__k span { color: var(--pink); }
.stat__v {
  display: block;
  margin-top: 10px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

/* ------------------------------------------------------------ photo wall */

.wall {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 4px;
}
.wall img {
  width: 100%;
  height: clamp(240px, 32vw, 400px);
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}
@media (max-width: 820px) {
  .wall { grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: 1fr 1fr; }
  .wall img { height: clamp(180px, 40vw, 240px); }
  .wall figure:nth-child(n + 5) { display: none; }
}
.wall figure { margin: 0; overflow: hidden; }

/* ---------------------------------------------------- what's included */

.incl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.incl li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
}
.incl svg { width: 22px; height: 22px; color: var(--pink); margin-top: 1px; }
.incl strong { font-weight: 700; }
.incl span { color: var(--muted); }

/* ------------------------------------------------------------ comparison */

.vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
@media (max-width: 780px) { .vs { grid-template-columns: 1fr; } }

.vs__col {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
  background: var(--ink-2);
}
.vs__col--ours { border-color: var(--pink); background: var(--pink-dim); }
.vs__col h3 { font-size: 21px; margin-bottom: 16px; }
.vs__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.vs__col li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  font-size: 15.5px;
  color: var(--muted);
  align-items: start;
}
.vs__col li svg { width: 20px; height: 20px; margin-top: 2px; }
.vs__col--ours li svg { color: var(--pink); }
.vs__col--them li svg { color: var(--dim); }

/* ----------------------------------------------------------------- crew */

.crew {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
@media (max-width: 900px) { .crew { grid-template-columns: 1fr; } }

/* Sized by the CONTAINER, not by each image's aspect ratio. Letting three
   photos of three different shapes set their own heights is what made this
   block sprawl — the tall portrait pushed the column past 700px and the grid
   rows stopped lining up. Fixed height, images fill their cells. */
.crew__shots {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: clamp(320px, 44vw, 500px);
  max-width: 560px;
}
.crew__shots figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-sm);
  min-height: 0;
}
.crew__shots figure:first-child { grid-row: 1 / span 2; }
.crew__shots img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Faces sit in the upper third of these frames; a centre crop beheads them. */
  object-position: center 28%;
}

/* ------------------------------------------------------------ quote grid */

/* The form used to sit alone in the middle of the page and read as a footnote.
   Pairing it with the argument for filling it in — and a face — is what makes
   it look like the point of the page. */
.quotegrid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 940px) { .quotegrid { grid-template-columns: 1fr; } }

.quotegrid__why {
  position: sticky;
  top: 110px;
}
@media (max-width: 940px) {
  .quotegrid__why { position: static; }
}

.whylist {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.whylist li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}
.whylist b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
}
.whylist strong {
  display: block;
  font-family: var(--display);
  font-size: 19px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.whylist span { color: var(--muted); font-size: 15.5px; line-height: 1.55; }

.quotegrid__face {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--ink-2);
}
.quotegrid__face img {
  width: 82px;
  height: 82px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 22%;
  flex: none;
}
.quotegrid__face p { font-size: 15px; color: var(--muted); }
.quotegrid__face strong { color: var(--text); display: block; font-weight: 700; }

/* ------------------------------------------------------------- brand art */

.brandart {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r);
}
