/* ==========================================================================
   MERCH TROOP — PREMIUM v66
   Cinematic editorial design system for merchtrooplive.com homepage.
   Subpages continue to use styles.css — do not link this file there.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink: #0a0a0b;
  --ink-2: #121214;
  --ink-3: #1a1a1e;
  --bone: #f3eee4;
  --bone-2: #eae3d3;
  --acc: #ff4a1c;
  --acc-deep: #e03a0e;
  --white: #fdfcf9;
  --txt-dark: #131313;
  --txt-dark-2: #4c4a44;
  --txt-light: #f4f1ea;
  --txt-light-2: rgba(244, 241, 234, 0.64);
  --line-dark: rgba(19, 19, 19, 0.14);
  --line-light: rgba(244, 241, 234, 0.14);
  --disp: "Fraunces", Georgia, serif;
  --sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --gutter: clamp(20px, 4vw, 64px);
  --radius: 20px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--txt-light);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
fieldset { border: 0; min-inline-size: auto; }
legend { padding: 0; }
::selection { background: var(--acc); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--acc); color: #fff; padding: 10px 18px; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Film grain ---------- */
.grain {
  position: fixed; inset: -100%; z-index: 2147483000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grainShift 9s steps(10) infinite;
}
@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-3%, -6%); }
  30% { transform: translate(4%, 2%); }
  50% { transform: translate(-4%, 7%); }
  70% { transform: translate(6%, -3%); }
  90% { transform: translate(-2%, 4%); }
}

/* ---------- Custom cursor ---------- */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; position: fixed; top: 0; left: 0; z-index: 2147483001; pointer-events: none; }
  .cursor__dot {
    position: fixed; width: 8px; height: 8px; border-radius: 50%;
    background: var(--acc); transform: translate(-50%, -50%);
  }
  .cursor__ring {
    position: fixed; width: 38px; height: 38px; border-radius: 50%;
    border: 1.5px solid rgba(255, 74, 28, 0.55); transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), opacity 0.25s;
  }
  body.cursor-on * { cursor: none !important; }
  .cursor.is-active .cursor__ring { width: 64px; height: 64px; opacity: 0.9; }
}

/* ---------- Shared type ---------- */
.sec-eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--acc); font-weight: 500;
  display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
}
.sec-eyebrow::before { content: ""; width: 34px; height: 1.5px; background: var(--acc); flex: none; }
.sec-eyebrow--light { color: var(--acc); }
.sec-title {
  font-family: var(--disp); font-weight: 620;
  font-size: clamp(2.5rem, 5.6vw, 4.6rem);
  line-height: 1.02; letter-spacing: -0.02em; color: var(--txt-dark);
}
.sec-title em { font-style: italic; font-weight: 480; color: var(--acc); }
.sec-title--light { color: var(--txt-light); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; border-radius: 999px; font-weight: 600; letter-spacing: 0.01em;
  white-space: nowrap; overflow: hidden; isolation: isolate;
  transition: color 0.35s var(--ease-out), border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  will-change: transform;
}
.btn--fill { background: var(--acc); color: #fff; padding: 14px 28px; font-size: 15px; }
.btn--fill::after {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: var(--ink); transform: translateY(101%);
  transition: transform 0.45s var(--ease-out);
}
.btn--fill:hover::after { transform: translateY(0); }
.btn--fill:hover { color: var(--bone); }
.btn--fill svg { transition: transform 0.35s var(--ease-out); }
.btn--fill:hover svg { transform: translateX(5px); }
.btn--line {
  border: 1.5px solid var(--line-light); color: var(--txt-light);
  padding: 14px 28px; font-size: 15px; backdrop-filter: blur(6px);
}
.btn--line:hover { border-color: var(--acc); color: var(--acc); }
.btn--lg { padding: 17px 36px; font-size: 16px; }
.btn--xl { padding: 20px 44px; font-size: 17px; }

/* ---------- Reveal utility ---------- */
.reveal { opacity: 0; transform: translateY(44px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.4s, transform 0.5s var(--ease-out), box-shadow 0.4s;
}
.hdr.is-solid { background: rgba(10, 10, 11, 0.82); backdrop-filter: blur(18px); box-shadow: 0 1px 0 var(--line-light); }
.hdr.is-hidden { transform: translateY(-110%); }
.hdr__inner {
  display: flex; align-items: center; gap: 28px;
  padding: 16px var(--gutter);
  max-width: 1720px; margin: 0 auto;
}
.hdr__brand img { height: 44px; width: auto; object-fit: contain; }
.hdr__nav { display: flex; gap: 30px; margin-left: 18px; }
.hdr__nav a {
  font-size: 14px; font-weight: 500; color: var(--txt-light-2);
  position: relative; padding: 6px 0; transition: color 0.3s;
}
.hdr__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--acc); transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.hdr__nav a:hover { color: var(--txt-light); }
.hdr__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.hdr__right { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.hdr__phone {
  display: flex; align-items: center; gap: 8px; font-family: var(--mono);
  font-size: 13px; color: var(--txt-light-2); transition: color 0.3s;
}
.hdr__phone:hover { color: var(--acc); }
.hdr__cta { padding: 11px 24px; font-size: 14px; }
.hdr__burger {
  display: none; width: 44px; height: 44px; flex-direction: column;
  align-items: center; justify-content: center; gap: 7px;
}
.hdr__burger span { width: 24px; height: 2px; background: var(--txt-light); transition: transform 0.35s var(--ease-out), opacity 0.3s; }
.hdr__burger.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.hdr__burger.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
.hdr__progress { position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; }
.hdr__progress i { display: block; height: 100%; width: 0; background: var(--acc); }

/* Full-screen menu */
.menu {
  position: fixed; inset: 0; z-index: 890; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  clip-path: inset(0 0 100% 0); transition: clip-path 0.65s var(--ease-inout);
  visibility: hidden;
}
.menu.is-open { clip-path: inset(0 0 0 0); visibility: visible; }
.menu__inner { width: min(560px, 88vw); }
.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  font-family: var(--disp); font-size: clamp(2rem, 7vw, 3.2rem); font-weight: 600;
  color: var(--txt-light); padding: 14px 0; border-bottom: 1px solid var(--line-light);
  display: flex; align-items: baseline; gap: 18px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
}
.menu.is-open .menu__links a { opacity: 1; transform: none; }
.menu.is-open .menu__links a:nth-child(1) { transition-delay: 0.15s; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: 0.2s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: 0.25s; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: 0.3s; }
.menu.is-open .menu__links a:nth-child(5) { transition-delay: 0.35s; }
.menu.is-open .menu__links a:nth-child(6) { transition-delay: 0.4s; }
.menu__links a:hover { color: var(--acc); }
.menu__num { font-family: var(--mono); font-size: 13px; color: var(--acc); }
.menu__foot { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.menu__foot > a:not(.btn) { font-family: var(--mono); font-size: 14px; color: var(--txt-light-2); }
.menu__foot > a:not(.btn):hover { color: var(--acc); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(120px, 16vh, 170px) var(--gutter) 130px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__vid { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(78deg, rgba(10, 10, 11, 0.92) 0%, rgba(10, 10, 11, 0.72) 40%, rgba(10, 10, 11, 0.36) 74%, rgba(10, 10, 11, 0.55) 100%),
    linear-gradient(to top, var(--ink) 0%, rgba(10, 10, 11, 0) 26%);
}
.hero__content { position: relative; z-index: 2; max-width: 1050px; }
.hero__eyebrow {
  font-family: var(--mono); font-size: clamp(11px, 1.1vw, 13px); font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--txt-light-2);
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px;
  border: 1px solid var(--line-light); border-radius: 999px; padding: 10px 20px;
  backdrop-filter: blur(8px); background: rgba(10, 10, 11, 0.25);
}
.hero__eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--acc); flex: none;
  box-shadow: 0 0 0 0 rgba(255, 74, 28, 0.6); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 74, 28, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(255, 74, 28, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 74, 28, 0); }
}
.hero__title {
  font-family: var(--disp); font-weight: 640;
  font-size: clamp(3rem, 8.6vw, 8rem);
  line-height: 0.98; letter-spacing: -0.025em; color: var(--white);
  margin-bottom: 30px;
}
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: block; }
.hero__line--serif { font-size: 0.62em; }
.hero__line--serif em { font-style: italic; font-weight: 420; color: var(--acc); }
.hero__lead {
  max-width: 560px; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.65;
  color: var(--txt-light-2); margin-bottom: 38px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 18px; }
.hero__note { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; color: var(--txt-light-2); margin-bottom: 42px; }
.hero__proof { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 16px; font-size: 13.5px; }
.hero__proof-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--txt-light-2); }
.hero__proof-names { font-weight: 600; color: var(--txt-light); letter-spacing: 0.01em; }
.hero__proof-link { color: var(--acc); font-weight: 600; border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.hero__proof-link:hover { border-color: var(--acc); }
.hero__foot {
  position: absolute; z-index: 2; left: var(--gutter); right: var(--gutter); bottom: 92px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  pointer-events: none;
}
.hero__scroll { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero__scroll span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--txt-light-2); }
.hero__scroll i { width: 1.5px; height: 52px; background: var(--line-light); position: relative; overflow: hidden; }
.hero__scroll i::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--acc); animation: scrollDrop 2s var(--ease-inout) infinite;
}
@keyframes scrollDrop { 0% { top: -100%; } 60%, 100% { top: 100%; } }
.hero__caption { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--txt-light-2); text-align: right; }

/* Ticker */
.ticker { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; overflow: hidden; border-top: 1px solid var(--line-light); background: rgba(10, 10, 11, 0.55); backdrop-filter: blur(10px); }
.ticker__track {
  display: flex; align-items: center; gap: 44px; width: max-content;
  padding: 16px 0; animation: tick 34s linear infinite;
}
.ticker__track span {
  font-family: var(--mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--txt-light-2); white-space: nowrap;
}
.ticker__track i { font-size: 7px; color: var(--acc); font-style: normal; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ==========================================================================
   BRANDS
   ========================================================================== */
.brands { background: var(--ink); padding: 64px 0 72px; border-bottom: 1px solid var(--line-light); }
.brands__label {
  text-align: center; font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--txt-light-2);
  margin-bottom: 40px;
}
.brands__marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.brands__track { display: flex; align-items: center; gap: clamp(48px, 6vw, 96px); width: max-content; animation: tick 46s linear infinite; }
.brands__item { flex: none; display: flex; align-items: center; opacity: 0.75; transition: opacity 0.3s; }
.brands__item:hover { opacity: 1; }
.brands__item img { height: clamp(26px, 2.6vw, 36px); width: auto; }
.brands__invert { filter: invert(62%) sepia(4%) saturate(220%) hue-rotate(22deg) brightness(96%); }
.brands__text { font-family: var(--disp); font-weight: 650; font-size: clamp(18px, 1.9vw, 25px); color: #9a9a92; letter-spacing: 0.02em; }

/* ==========================================================================
   MANIFESTO
   ========================================================================== */
.manifesto { background: var(--bone); color: var(--txt-dark); padding: clamp(110px, 14vw, 200px) var(--gutter); }
.manifesto__inner { max-width: 1180px; margin: 0 auto; }
.manifesto__text {
  font-family: var(--disp); font-weight: 560;
  font-size: clamp(1.8rem, 4.3vw, 3.6rem); line-height: 1.22; letter-spacing: -0.015em;
}
.manifesto__text .w { color: rgba(19, 19, 19, 0.16); transition: color 0.35s linear; }
.manifesto__text .w.lit { color: var(--txt-dark); }
.manifesto__text .w.lit.hot { color: var(--acc); }
.manifesto__cta { margin-top: 54px; }

/* ==========================================================================
   NUMBERS
   ========================================================================== */
.numbers { background: var(--bone); padding: 0 var(--gutter) clamp(90px, 11vw, 150px); }
.numbers__grid {
  max-width: 1380px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}
.numbers__stat { padding: clamp(30px, 3.4vw, 52px) clamp(14px, 2vw, 34px) 0; border-left: 1px solid var(--line-dark); }
.numbers__stat:first-child { border-left: 0; padding-left: 0; }
.numbers__value { display: flex; align-items: baseline; color: var(--txt-dark); }
.numbers__num {
  font-family: var(--disp); font-weight: 620; letter-spacing: -0.03em;
  font-size: clamp(2.6rem, 5.4vw, 5rem); line-height: 1; font-variant-numeric: tabular-nums;
}
.numbers__value em { font-style: normal; color: var(--acc); font-family: var(--disp); font-weight: 560; font-size: clamp(1.5rem, 2.8vw, 2.6rem); }
.numbers__label { display: block; margin-top: 12px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-dark-2); }

/* ==========================================================================
   SERVICES — pinned horizontal
   ========================================================================== */
.services { background: var(--ink); position: relative; }
.services__pin { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: clamp(80px, 9vh, 110px) 0 clamp(40px, 6vh, 70px); }
.services__head { padding: 0 var(--gutter); margin-bottom: clamp(28px, 4vh, 52px); max-width: 900px; }
.services__head .sec-title { color: var(--txt-light); }
.services__sub { margin-top: 18px; color: var(--txt-light-2); max-width: 560px; font-size: 15.5px; }
.services__progressbar { display: flex; align-items: center; gap: 18px; margin-top: 26px; max-width: 380px; }
.services__progressbar span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--txt-light-2); white-space: nowrap; }
.services__progressbar div { flex: 1; height: 2px; background: var(--line-light); }
.services__progressbar i { display: block; height: 100%; width: 0; background: var(--acc); }
.services__track {
  display: flex; gap: clamp(18px, 2.4vw, 34px);
  padding: 0 var(--gutter);
  width: max-content; will-change: transform;
}
.svc {
  width: clamp(320px, 34vw, 470px); flex: none;
  background: var(--ink-2); border: 1px solid var(--line-light); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.svc:hover { border-color: rgba(255, 74, 28, 0.45); transform: translateY(-6px); }
.svc__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.svc:hover .svc__media img { transform: scale(1.06); }
.svc__body { padding: clamp(20px, 2.2vw, 30px); display: flex; flex-direction: column; gap: 13px; flex: 1; position: relative; }
.svc__index {
  position: absolute; top: -34px; right: 18px;
  font-family: var(--disp); font-style: italic; font-weight: 480;
  font-size: 48px; color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}
.svc__tag {
  align-self: flex-start; font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--acc);
  border: 1px solid rgba(255, 74, 28, 0.4); border-radius: 999px; padding: 5px 12px;
}
.svc__name { font-family: var(--disp); font-weight: 620; font-size: clamp(1.6rem, 2vw, 2.1rem); line-height: 1.04; letter-spacing: -0.015em; }
.svc__desc { font-size: 14.5px; color: var(--txt-light-2); line-height: 1.6; }
.svc__specs { list-style: none; margin-top: 4px; border-top: 1px solid var(--line-light); }
.svc__specs li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line-light); font-size: 13px; }
.svc__specs span { color: var(--txt-light-2); font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; }
.svc__specs b { font-weight: 600; text-align: right; }
.svc__cta { margin-top: auto; padding-top: 14px; font-weight: 600; font-size: 14px; color: var(--acc); display: inline-flex; align-items: center; gap: 8px; }
.svc__cta i { font-style: normal; transition: transform 0.3s var(--ease-out); }
.svc__cta:hover i { transform: translateX(5px); }
.svc--end { background: var(--acc); border-color: var(--acc); justify-content: center; }
.svc__endcard { padding: clamp(28px, 3vw, 44px); display: flex; flex-direction: column; gap: 18px; }
.svc__endcard p { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.75); }
.svc__endcard h3 { font-family: var(--disp); font-weight: 600; font-size: clamp(1.4rem, 1.9vw, 1.9rem); line-height: 1.2; color: #fff; }
.svc__endcard .btn { background: var(--ink); align-self: flex-start; }
.svc__endcard .btn::after { background: #fff; }
.svc__endcard .btn:hover { color: var(--ink); }

/* Mobile services: native scroll */
@media (max-width: 899px) {
  .services__pin { min-height: 0; }
  .services__track {
    width: auto; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; padding-bottom: 26px;
    scrollbar-width: none;
  }
  .services__track::-webkit-scrollbar { display: none; }
  .svc { width: min(84vw, 400px); scroll-snap-align: center; }
}

/* ==========================================================================
   PROCESS — sticky stacked
   ========================================================================== */
.process { background: var(--bone); color: var(--txt-dark); padding: clamp(100px, 12vw, 170px) var(--gutter); }
.process__head { max-width: 1380px; margin: 0 auto clamp(48px, 6vw, 84px); }
.process__stack { max-width: 1180px; margin: 0 auto; }
.pstep { position: sticky; top: 110px; padding-bottom: 26px; }
.pstep__card {
  background: var(--white); border: 1px solid var(--line-dark); border-radius: calc(var(--radius) + 6px);
  display: grid; grid-template-columns: 1.05fr 1fr; overflow: hidden;
  box-shadow: 0 24px 60px -30px rgba(19, 19, 19, 0.35);
  min-height: clamp(320px, 42vh, 430px);
}
.pstep:nth-child(2) .pstep__card { background: #faf6ec; }
.pstep:nth-child(3) .pstep__card { background: var(--white); }
.pstep:nth-child(4) .pstep__card { background: #faf6ec; }
.pstep__text { padding: clamp(28px, 4vw, 58px); display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.pstep__num { font-family: var(--disp); font-style: italic; font-weight: 460; font-size: clamp(2.4rem, 4vw, 3.6rem); color: var(--acc); line-height: 1; }
.pstep__text h3 { font-family: var(--disp); font-weight: 620; font-size: clamp(1.6rem, 2.6vw, 2.3rem); letter-spacing: -0.015em; }
.pstep__text p { color: var(--txt-dark-2); font-size: 15.5px; max-width: 400px; }
.pstep__media { overflow: hidden; }
.pstep__media img { width: 100%; height: 100%; object-fit: cover; }
.process__cta { max-width: 1180px; margin: clamp(40px, 5vw, 64px) auto 0; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.process__price { font-family: var(--mono); font-size: 13px; color: var(--txt-dark-2); }
.process__price b { color: var(--txt-dark); }

/* ==========================================================================
   GALLERY — dual marquee
   ========================================================================== */
.gallery { background: var(--ink); padding: clamp(70px, 8vw, 110px) 0; overflow: hidden; }
.gallery__row { margin-bottom: clamp(14px, 1.8vw, 26px); }
.gallery__row:last-child { margin-bottom: 0; }
.gallery__track { display: flex; gap: clamp(14px, 1.8vw, 26px); width: max-content; will-change: transform; }
.gallery__track img {
  height: clamp(200px, 26vw, 340px); width: auto; border-radius: 14px;
  object-fit: cover; transition: transform 0.6s var(--ease-out), filter 0.6s;
  filter: saturate(0.92);
}
.gallery__track img:hover { transform: scale(1.035); filter: saturate(1.1); }
[data-marquee-dir="left"] .gallery__track { animation: tick 52s linear infinite; }
[data-marquee-dir="right"] .gallery__track { animation: tickBack 52s linear infinite; }
@keyframes tickBack { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ==========================================================================
   RESULTS
   ========================================================================== */
.results { position: relative; padding: clamp(110px, 13vw, 190px) var(--gutter); overflow: hidden; }
.results__bg { position: absolute; inset: 0; }
.results__bg img { width: 100%; height: 112%; object-fit: cover; }
.results__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(10, 10, 11, 0.82) 22%, rgba(10, 10, 11, 0.82) 78%, var(--ink) 100%);
}
.results__inner { position: relative; z-index: 2; max-width: 1380px; margin: 0 auto; }
.results__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); margin: clamp(44px, 5vw, 70px) 0 30px; }
.rcard {
  border: 1px solid var(--line-light); border-radius: var(--radius);
  background: rgba(10, 10, 11, 0.55); backdrop-filter: blur(14px);
  padding: clamp(26px, 3vw, 44px);
}
.rcard__value { display: flex; align-items: baseline; }
.rcard__num {
  font-family: var(--disp); font-weight: 620; letter-spacing: -0.03em;
  font-size: clamp(3rem, 5.6vw, 5.2rem); line-height: 1; color: var(--white);
  font-variant-numeric: tabular-nums;
}
.rcard__value i { font-style: normal; font-family: var(--disp); font-weight: 500; font-size: clamp(1.7rem, 3vw, 2.8rem); color: var(--acc); }
.rcard p { margin-top: 14px; color: var(--txt-light-2); font-size: 14.5px; max-width: 260px; }
.results__note { font-size: 12.5px; color: var(--txt-light-2); max-width: 720px; line-height: 1.7; }
.results__note a { color: var(--acc); border-bottom: 1px solid rgba(255, 74, 28, 0.4); }
.results__cta { margin-top: 40px; }

/* ==========================================================================
   ZERO WASTE
   ========================================================================== */
.waste { background: var(--bone); color: var(--txt-dark); padding: clamp(100px, 12vw, 170px) var(--gutter); }
.waste__inner { max-width: 1380px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.waste__lead { margin: 24px 0 26px; font-size: clamp(16px, 1.4vw, 18px); color: var(--txt-dark-2); line-height: 1.7; }
.waste__list { list-style: none; }
.waste__list li {
  padding: 14px 0 14px 34px; border-bottom: 1px solid var(--line-dark);
  position: relative; font-weight: 500; font-size: 15.5px;
}
.waste__list li::before {
  content: ""; position: absolute; left: 2px; top: 21px; width: 16px; height: 12px;
  background: var(--acc);
  clip-path: polygon(0 55%, 12% 40%, 38% 62%, 88% 0, 100% 14%, 40% 100%);
}
.waste__media { border-radius: calc(var(--radius) + 6px); overflow: hidden; }
.waste__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.4; }

/* ==========================================================================
   FILM (founder video)
   ========================================================================== */
.film { background: var(--ink); padding: clamp(100px, 12vw, 170px) var(--gutter); }
.film__inner { max-width: 1380px; margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 5vw, 90px); align-items: center; }
.film__text .sec-title { color: var(--txt-light); }
.film__sub { margin: 22px 0 28px; color: var(--txt-light-2); font-size: 16px; max-width: 380px; }
.film__frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: calc(var(--radius) + 6px);
  overflow: hidden; cursor: pointer; border: 1px solid var(--line-light);
}
.film__thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.film__frame:hover .film__thumb { transform: scale(1.04); }
.film__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease-out);
}
.film__frame:hover .film__play { transform: scale(1.08); }

/* ==========================================================================
   PROOF NOTES
   ========================================================================== */
.proof { background: var(--ink); padding: 0 var(--gutter) clamp(100px, 12vw, 170px); }
.proof__inner { max-width: 1380px; margin: 0 auto; }
.proof__inner .sec-title { color: var(--txt-light); }
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); margin-top: clamp(40px, 5vw, 64px); }
.pnote {
  border: 1px solid var(--line-light); border-radius: var(--radius);
  background: var(--ink-2); padding: clamp(26px, 2.6vw, 40px);
  display: flex; flex-direction: column; gap: 26px;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.pnote:hover { border-color: rgba(255, 74, 28, 0.45); transform: translateY(-6px); }
.pnote p { font-family: var(--disp); font-weight: 480; font-size: clamp(1.05rem, 1.3vw, 1.3rem); line-height: 1.45; color: var(--txt-light); }
.pnote p::before { content: "“"; color: var(--acc); }
.pnote p::after { content: "”"; color: var(--acc); }
.pnote footer { margin-top: auto; display: flex; flex-direction: column; gap: 3px; }
.pnote footer b { font-size: 15px; }
.pnote footer span { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; color: var(--txt-light-2); }

/* ==========================================================================
   RECENT ACTIVATIONS
   ========================================================================== */
.recent { background: var(--bone); color: var(--txt-dark); padding: clamp(100px, 12vw, 170px) var(--gutter); }
.recent__inner { max-width: 1380px; margin: 0 auto; }
.recent__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 30px); margin-top: clamp(40px, 5vw, 64px); }
.rec {
  background: var(--white); border: 1px solid var(--line-dark); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.rec:hover { transform: translateY(-7px); box-shadow: 0 26px 50px -28px rgba(19, 19, 19, 0.4); }
.rec--featured { grid-row: span 2; }
.rec__img { overflow: hidden; aspect-ratio: 16 / 10; }
.rec--featured .rec__img { aspect-ratio: auto; flex: 1; min-height: 260px; }
.rec__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.rec:hover .rec__img img { transform: scale(1.05); }
.rec__body { padding: clamp(20px, 2vw, 30px); display: flex; flex-direction: column; gap: 10px; }
.rec__tag { align-self: flex-start; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--acc); font-weight: 500; }
.rec__body h3 { font-family: var(--disp); font-weight: 620; font-size: clamp(1.15rem, 1.5vw, 1.5rem); line-height: 1.18; letter-spacing: -0.01em; }
.rec__body p { font-size: 14px; color: var(--txt-dark-2); line-height: 1.6; }
.rec__meta { font-family: var(--mono); font-size: 11.5px; color: var(--txt-dark-2); margin-top: 4px; }
.recent__more { margin-top: 40px; font-size: 14.5px; }
.recent__more a { color: var(--acc); font-weight: 600; border-bottom: 1px solid rgba(255, 74, 28, 0.35); }

/* ==========================================================================
   QUOTE — conversion centerpiece
   ========================================================================== */
.quote { position: relative; padding: clamp(110px, 13vw, 180px) var(--gutter); overflow: hidden; }
.quote__bg { position: absolute; inset: 0; }
.quote__bg img { width: 100%; height: 100%; object-fit: cover; }
.quote__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 10, 11, 0.95) 0%, rgba(10, 10, 11, 0.88) 48%, rgba(10, 10, 11, 0.78) 100%);
}
.quote__inner {
  position: relative; z-index: 2; max-width: 1380px; margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(44px, 6vw, 100px);
  align-items: start;
}
.quote__sub { margin: 24px 0 34px; color: var(--txt-light-2); font-size: 16.5px; line-height: 1.7; max-width: 460px; }
.quote__points { list-style: none; display: flex; flex-direction: column; }
.quote__points li { padding: 16px 0; border-top: 1px solid var(--line-light); display: flex; flex-direction: column; gap: 3px; }
.quote__points li:last-child { border-bottom: 1px solid var(--line-light); }
.quote__points b { font-size: 16px; color: var(--txt-light); }
.quote__points span { font-size: 13.5px; color: var(--txt-light-2); }
.quote__direct { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; }
.quote__direct a { display: flex; flex-direction: column; gap: 2px; width: fit-content; }
.quote__direct span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--txt-light-2); }
.quote__direct b { font-size: 16.5px; color: var(--txt-light); transition: color 0.3s; }
.quote__direct a:hover b { color: var(--acc); }
.quote__trust { margin-top: 30px; font-family: var(--mono); font-size: 12px; color: var(--txt-light-2); }

/* Quote card */
.qcard {
  background: var(--bone); color: var(--txt-dark);
  border-radius: calc(var(--radius) + 8px); padding: clamp(24px, 2.8vw, 44px);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.65);
}
.qcard__steps { position: relative; display: flex; gap: 26px; margin-bottom: 30px; padding-bottom: 16px; }
.qcard__step {
  display: flex; align-items: baseline; gap: 8px;
  font-weight: 600; font-size: 14px; color: var(--txt-dark-2); transition: color 0.3s;
}
.qcard__step span { font-family: var(--mono); font-size: 11px; color: inherit; }
.qcard__step.is-active { color: var(--txt-dark); }
.qcard__step.is-done { color: var(--acc); }
.qcard__steprail { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--line-dark); }
.qcard__steprail em { display: block; height: 100%; width: 33.33%; background: var(--acc); transition: width 0.5s var(--ease-out); }
.qpanel { display: none; }
.qpanel.is-active { display: block; animation: panelIn 0.5s var(--ease-out); }
@keyframes panelIn { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }
.qpanel__title { font-family: var(--disp); font-weight: 620; font-size: clamp(1.35rem, 1.8vw, 1.7rem); margin-bottom: 22px; letter-spacing: -0.01em; }
.qrow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.qfield { display: flex; flex-direction: column; gap: 7px; }
.qfield--full { margin-bottom: 16px; }
.qfield label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-dark-2); font-weight: 500; }
.qfield input, .qfield select, .qfield textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--txt-dark);
  background: var(--white); border: 1.5px solid var(--line-dark); border-radius: 12px;
  padding: 13px 15px; transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none; -webkit-appearance: none;
}
.qfield select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234c4a44' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.qfield input:focus, .qfield select:focus, .qfield textarea:focus {
  outline: none; border-color: var(--acc); box-shadow: 0 0 0 4px rgba(255, 74, 28, 0.14);
}
.qfield input::placeholder, .qfield textarea::placeholder { color: rgba(76, 74, 68, 0.55); }
.qfield.is-invalid input { border-color: #d43518; box-shadow: 0 0 0 4px rgba(212, 53, 24, 0.12); }
.qnav { display: flex; align-items: center; gap: 20px; margin-top: 26px; flex-wrap: wrap; }
.qnav--submit .btn { flex: 1; }
.qnav__hint { font-family: var(--mono); font-size: 11.5px; color: var(--txt-dark-2); }
.qback { font-weight: 600; font-size: 14px; color: var(--txt-dark-2); transition: color 0.3s; padding: 10px 0; }
.qback:hover { color: var(--txt-dark); }
.qerror { color: #c22f14; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.qcard__promise { margin-top: 18px; text-align: center; font-family: var(--mono); font-size: 11.5px; color: var(--txt-dark-2); }
.qsuccess { text-align: center; padding: clamp(20px, 3vw, 44px) 10px; }
.qsuccess svg { margin: 0 auto 22px; }
.qsuccess h3 { font-family: var(--disp); font-weight: 640; font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 14px; }
.qsuccess p { color: var(--txt-dark-2); font-size: 16px; max-width: 400px; margin: 0 auto 10px; }
.qsuccess p b { color: var(--txt-dark); }
.qsuccess__aside a { color: var(--acc); font-weight: 600; }

/* ==========================================================================
   SEO CONTENT
   ========================================================================== */
.seo-content { background: var(--bone); color: var(--txt-dark); padding: clamp(80px, 9vw, 130px) var(--gutter); }
.seo-content__inner { max-width: 880px; margin: 0 auto; }
.seo-content h2 { font-family: var(--disp); font-weight: 620; font-size: clamp(1.6rem, 2.6vw, 2.3rem); letter-spacing: -0.015em; margin-bottom: 22px; }
.seo-content p { color: var(--txt-dark-2); font-size: 15.5px; line-height: 1.75; margin-bottom: 16px; }
.seo-content strong { color: var(--txt-dark); font-weight: 600; }
.seo-content__urgency { border-left: 3px solid var(--acc); padding-left: 18px; }
.seo-content__urgency a { color: var(--acc); font-weight: 600; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--bone); color: var(--txt-dark); padding: 0 var(--gutter) clamp(100px, 12vw, 170px); }
.faq__inner { max-width: 880px; margin: 0 auto; }
.faq__list { margin-top: clamp(36px, 4vw, 56px); }
.faq__item { border-bottom: 1px solid var(--line-dark); }
.faq__item summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; cursor: pointer;
  font-family: var(--disp); font-weight: 600; font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  transition: color 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--acc); }
.faq__chev { flex: none; width: 34px; height: 34px; border: 1.5px solid var(--line-dark); border-radius: 50%; position: relative; transition: transform 0.4s var(--ease-out), border-color 0.3s, background 0.3s; }
.faq__chev::before, .faq__chev::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: currentColor;
  transform: translate(-50%, -50%);
}
.faq__chev::before { width: 12px; height: 1.5px; }
.faq__chev::after { width: 1.5px; height: 12px; transition: transform 0.35s var(--ease-out); }
.faq__item[open] .faq__chev { background: var(--acc); border-color: var(--acc); color: #fff; }
.faq__item[open] .faq__chev::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { overflow: hidden; }
.faq__a p { padding: 0 0 26px; color: var(--txt-dark-2); font-size: 15.5px; line-height: 1.75; max-width: 720px; }

/* FAQ — deeper answer links */
.faq__more { margin-top: clamp(36px, 4vw, 52px); border-top: 1px solid var(--line-dark); padding-top: 28px; }
.faq__more-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--acc); font-weight: 500; margin-bottom: 16px;
}
.faq__more-links { display: flex; flex-wrap: wrap; gap: 10px; }
.faq__more-links a {
  font-size: 13.5px; font-weight: 500; color: var(--txt-dark-2);
  border: 1px solid var(--line-dark); border-radius: 999px; padding: 9px 16px;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.faq__more-links a:hover { color: #fff; background: var(--acc); border-color: var(--acc); }

/* ==========================================================================
   MEGA CTA
   ========================================================================== */
.mega { background: var(--ink); padding: clamp(120px, 15vw, 220px) var(--gutter); text-align: center; overflow: hidden; }
.mega__kicker { font-family: var(--mono); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--acc); margin-bottom: 30px; }
.mega__title {
  font-family: var(--disp); font-weight: 680; color: var(--white);
  font-size: clamp(3.4rem, 12vw, 11rem); line-height: 0.96; letter-spacing: -0.03em;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.mega__title span { display: block; }
.mega__title em { font-style: italic; font-weight: 420; color: var(--acc); font-size: 0.82em; }
.mega__note { margin-top: 26px; font-family: var(--mono); font-size: 12.5px; color: var(--txt-light-2); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); border-top: 1px solid var(--line-light); padding: 56px var(--gutter) 36px; }
.footer__inner { max-width: 1380px; margin: 0 auto; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer__brand img { height: 34px; width: auto; object-fit: contain; opacity: 0.9; }
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__nav a { font-size: 13.5px; color: var(--txt-light-2); transition: color 0.3s; }
.footer__nav a:hover { color: var(--acc); }
.footer__social { margin-left: auto; }
.footer__social a { color: var(--txt-light-2); transition: color 0.3s; }
.footer__social a:hover { color: var(--acc); }
.footer__explore {
  max-width: 1380px; margin: 44px auto 0; padding-top: 36px; border-top: 1px solid var(--line-light);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.footer__explore-col { display: flex; flex-direction: column; gap: 9px; }
.footer__explore-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--txt-light-2); margin-bottom: 6px; }
.footer__explore-col a { font-size: 13px; color: var(--txt-light-2); transition: color 0.3s; width: fit-content; }
.footer__explore-col a:hover { color: var(--acc); }
.footer__copy { max-width: 1380px; margin: 40px auto 0; }
.footer__copy p { font-family: var(--mono); font-size: 11.5px; color: var(--txt-light-2); }

/* ==========================================================================
   FLOATING CTA + MOBILE BAR + TOAST
   ========================================================================== */
.float-cta {
  position: fixed; right: 26px; bottom: 26px; z-index: 850;
  display: flex; align-items: center; gap: 12px;
  background: var(--ink-2); border: 1px solid rgba(255, 74, 28, 0.5);
  border-radius: 999px; padding: 12px 24px 12px 18px;
  box-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.7);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), border-color 0.3s;
}
.float-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.float-cta:hover { border-color: var(--acc); }
.float-cta__pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--acc); animation: pulse 2.2s infinite; flex: none; }
.float-cta__text { display: flex; flex-direction: column; line-height: 1.25; }
.float-cta__text b { font-size: 14px; color: var(--txt-light); }
.float-cta__text i { font-style: normal; font-family: var(--mono); font-size: 10.5px; color: var(--txt-light-2); }

.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 860;
  display: none; gap: 10px; align-items: stretch;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 10, 11, 0.9); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-light);
  transform: translateY(110%); transition: transform 0.45s var(--ease-out);
}
.mobile-bar.is-visible { transform: none; }
.mobile-bar__call {
  flex: none; width: 52px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line-light); border-radius: 999px; color: var(--txt-light);
}
.mobile-bar__cta { flex: 1; font-size: 14.5px; padding: 14px 10px; }

.toast {
  position: fixed; left: 22px; bottom: 22px; z-index: 840;
  display: flex; align-items: center; gap: 12px; max-width: 320px;
  background: var(--ink-2); border: 1px solid var(--line-light); border-radius: 14px;
  padding: 13px 18px; box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.6);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.toast.show { opacity: 1; transform: none; }
.toast__dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: #3ecf6a; animation: pulse 2s infinite; }
.toast p { font-size: 12.5px; color: var(--txt-light-2); line-height: 1.45; }
.toast p b { color: var(--txt-light); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .hdr__nav { display: none; }
  .hdr__burger { display: flex; }
  .footer__explore { grid-template-columns: 1fr 1fr; }
  .quote__inner { grid-template-columns: 1fr; }
  .film__inner { grid-template-columns: 1fr; }
  .waste__inner { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: 1fr 1fr; }
  .recent__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .hdr__phone span { display: none; }
  .hdr__cta { display: none; }
  .hero { padding-bottom: 150px; }
  .hero__actions .btn--line { display: none; }
  .hero__foot { bottom: 78px; }
  .hero__caption { display: none; }
  .numbers__grid { grid-template-columns: 1fr 1fr; }
  .numbers__stat { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-dark); }
  .numbers__grid { border-top: 0; }
  .numbers__stat:nth-child(-n+2) { border-top: 0; }
  .pstep { position: static; }
  .pstep__card { grid-template-columns: 1fr; min-height: 0; }
  .pstep__media { order: -1; aspect-ratio: 16 / 9; }
  .results__grid { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: 1fr; }
  .recent__grid { grid-template-columns: 1fr; }
  .rec--featured { grid-row: auto; }
  .qrow { grid-template-columns: 1fr; }
  .qcard__steps { gap: 16px; }
  .qcard__step { font-size: 12.5px; }
  .footer__explore { grid-template-columns: 1fr; }
  .footer { padding-bottom: 110px; }
  .float-cta { display: none; }
  .mobile-bar { display: flex; }
  .toast { left: 12px; bottom: 84px; max-width: 280px; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
  .grain { animation: none; }
  .ticker__track, .brands__track, .gallery__track { animation: none; }
  .manifesto__text .w { color: var(--txt-dark); }
}
