/*
Theme Name: Bin There, Tote That
Theme URI: https://www.bintheretotethat.rent
Author: Bin There, Tote That!
Description: Custom hard-coded theme for Bin There, Tote That! Reusable moving tote rental, Portland OR + Vancouver WA. No page builders, no frameworks.
Version: 1.0.0
Requires PHP: 7.4
License: Proprietary
Text Domain: bintheretote
*/

/* ==========================================================================
   1. FONTS (self-hosted woff2, font-display: swap)
   ========================================================================== */
@font-face {
  font-family: 'Archivo';
  src: url('assets/fonts/archivo-v25-latin-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('assets/fonts/archivo-v25-latin-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('assets/fonts/archivo-v25-latin-900.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-v20-latin-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-v20-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Caveat';
  src: url('assets/fonts/caveat-v23-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

@font-face {
  font-family: 'Archivo Fallback';
  src: local('Arial Bold'), local('Helvetica Bold'), local('Arial');
  size-adjust: 99%; ascent-override: 94%; descent-override: 24%; line-gap-override: 0%;
}
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial'), local('Helvetica');
  size-adjust: 107%; ascent-override: 90%; descent-override: 22%; line-gap-override: 0%;
}

/* ==========================================================================
   2. DESIGN TOKENS — "Chunky Sticker" system v2
   Client-locked color; everything else rebuilt.
   ========================================================================== */
:root {
  --tote-red: #c40000;
  --red-dark: #9a0000;
  --red-tint: #fdf1f0;
  --ink: #252525;
  --paper: #faf8f5;
  --white: #ffffff;
  --kraft: #c9ab84;
  --kraft-deep: #a5885f;
  --kraft-tint: #f3ead9;
  --go-green: #2e7d4f;
  --line: #e7e2da;
  --ink-soft: #4a4a4a;
  --ink-faint: #6b6b6b;

  --font-display: 'Archivo', 'Archivo Fallback', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Inter Fallback', -apple-system, 'Segoe UI', sans-serif;
  --font-accent: 'Caveat', cursive;

  --text-display: clamp(2.6rem, 1.3rem + 4.2vw, 4.75rem);
  --text-h1: clamp(2.5rem, 1.6rem + 3.2vw, 4rem);
  --text-h2: clamp(2rem, 1.4rem + 2.2vw, 3rem);
  --text-h3: clamp(1.375rem, 1.25rem + 0.5vw, 1.625rem);
  --text-lg: 1.1875rem;
  --text-body: 1.0625rem;
  --text-sm: 0.9375rem;
  --text-xs: 0.8125rem;

  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4rem; --sp-9: 6rem;
  --section-pad: clamp(3.5rem, 2.5rem + 4vw, 7rem);

  /* Chunky shape system */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --bw: 2px;                      /* signature ink border */

  /* Stacked hard shadows (the tote-stack signature) */
  --stack: 6px 6px 0 var(--ink);
  --stack-sm: 4px 4px 0 var(--ink);
  --stack-red: 6px 6px 0 var(--tote-red);
  --soft: 0 24px 48px -24px rgba(37, 30, 20, 0.35);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --t-fast: 160ms;
  --t-med: 260ms;

  --container: 74rem;
  --container-narrow: 46rem;
  --z-nav: 50;
  --z-mobile-bar: 60;

  /* Paper dot-grid texture */
  --dots: radial-gradient(rgba(37, 37, 37, 0.07) 1.5px, transparent 1.5px);
}

/* ==========================================================================
   3. RESET + BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  overflow-x: clip;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.04;
  margin: 0 0 var(--sp-4);
  letter-spacing: -0.02em;
  text-wrap: balance;
  font-weight: 900;
}
h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); text-transform: uppercase; }
h3 { font-size: var(--text-h3); font-weight: 800; }
h4 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }
p { margin: 0 0 var(--sp-4); max-width: 62ch; }
p:last-child { margin-bottom: 0; }
a { color: var(--tote-red); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--red-dark); }
ul, ol { padding-left: 1.25rem; margin: 0 0 var(--sp-4); }
li { margin-bottom: var(--sp-2); }
strong { font-weight: 600; }

:focus-visible { outline: 3px solid var(--tote-red); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--tote-red); color: var(--white); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--white);
  padding: var(--sp-3) var(--sp-5); z-index: 100;
}
.skip-link:focus { left: 0; color: var(--white); }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-pad); }
.section--tight { padding-block: calc(var(--section-pad) * 0.62); }
.bg-white { background: var(--white); }
.bg-dots { background-color: var(--paper); background-image: var(--dots); background-size: 24px 24px; }

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}
.text-center { text-align: center; margin-inline: auto; }

/* Display type utilities */
.display {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: var(--text-display); line-height: 0.96; letter-spacing: -0.015em;
  margin: 0 0 var(--sp-5); max-width: none; text-wrap: balance;
}
.accent { color: var(--tote-red); }
.outline-text {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--ink);
  text-stroke: 2.5px var(--ink);
}
@supports not (-webkit-text-stroke: 1px black) {
  .outline-text { color: var(--ink); }
}
.annotation { font-family: var(--font-accent); font-size: 1.5rem; color: var(--tote-red); line-height: 1.15; }

/* ==========================================================================
   4. STACK CARDS + BUTTONS (signature interactions)
   ========================================================================== */
.stack-card {
  background: var(--white);
  border: var(--bw) solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--stack);
}
.stack-frame {
  border: var(--bw) solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--stack);
  overflow: hidden;
  background: var(--white);
}
.stack-frame img { width: 100%; height: 100%; object-fit: cover; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.01em;
  line-height: 1.1; text-decoration: none; cursor: pointer;
  padding: 1rem 1.75rem;
  border-radius: var(--r-sm);
  border: var(--bw) solid var(--ink);
  box-shadow: var(--stack-sm);
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out), background-color var(--t-fast) ease;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
}
.btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.btn--primary { background: var(--tote-red); color: var(--white); }
.btn--primary:hover { background: var(--red-dark); color: var(--white); }
.btn--outline { background: var(--white); color: var(--ink); }
.btn--outline:hover { background: var(--paper); color: var(--ink); }
.btn--ghost-light { background: var(--white); color: var(--ink); }
.btn--ghost-light:hover { background: var(--paper); color: var(--ink); }
.btn--lg { padding: 1.125rem 2.125rem; font-size: 1.0625rem; }
.btn--sm { padding: 0.625rem 1.125rem; font-size: 0.875rem; box-shadow: 3px 3px 0 var(--ink); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

/* Floating label chips */
.chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: 999px;
  box-shadow: var(--stack-sm);
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-xs);
  text-transform: uppercase; letter-spacing: 0.02em;
  padding: 0.5rem 1rem;
}
.chip svg { width: 16px; height: 16px; flex: none; color: var(--tote-red); }
.chip--red { background: var(--tote-red); color: var(--white); }
.chip--red svg { color: var(--white); }

/* ==========================================================================
   5. HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: var(--paper);
  border-bottom: var(--bw) solid var(--ink);
}
.site-header__inner { display: flex; align-items: center; gap: var(--sp-5); min-height: 76px; }
.site-header__logo { flex: none; display: inline-flex; transition: transform var(--t-fast) var(--ease-out); }
.site-header__logo:hover { transform: rotate(-2deg) scale(1.04); }
.site-header__logo img { height: 54px; width: auto; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: var(--sp-2); list-style: none; margin: 0; padding: 0; }
.site-nav li { margin: 0; }
.site-nav a {
  font-weight: 600; font-size: var(--text-sm); color: var(--ink);
  text-decoration: none; padding: var(--sp-2) var(--sp-3); border-radius: 999px;
  border: var(--bw) solid transparent;
  transition: border-color var(--t-fast) ease, background var(--t-fast) ease;
}
.site-nav a:hover { border-color: var(--ink); background: var(--white); }
.site-nav .current-menu-item > a, .site-nav .current_page_item > a {
  border-color: var(--ink); background: var(--white); box-shadow: 2px 2px 0 var(--ink);
}
.site-header__actions { display: flex; align-items: center; gap: var(--sp-3); }
.header-phone {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-weight: 700; font-size: var(--text-sm); color: var(--ink); text-decoration: none;
  white-space: nowrap;
}
.header-phone svg { width: 18px; height: 18px; flex: none; color: var(--tote-red); }
.header-phone:hover { color: var(--tote-red); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: var(--sp-2); margin-left: auto; }
.nav-toggle svg { width: 30px; height: 30px; display: block; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 76px 0 auto 0; margin: 0;
    background: var(--paper); border-bottom: var(--bw) solid var(--ink);
    padding: var(--sp-4) clamp(1.25rem, 4vw, 2.5rem) var(--sp-6);
    transform: translateY(-10px); opacity: 0; visibility: hidden;
    transition: transform var(--t-med) var(--ease-out), opacity var(--t-med) ease, visibility 0s var(--t-med);
    box-shadow: var(--soft);
  }
  .site-nav.is-open {
    transform: translateY(0); opacity: 1; visibility: visible;
    transition: transform var(--t-med) var(--ease-out), opacity var(--t-med) ease;
  }
  .site-nav ul { flex-direction: column; gap: var(--sp-2); }
  .site-nav a { display: block; font-size: var(--text-body); border: var(--bw) solid var(--ink); background: var(--white); text-align: center; }
  .site-header__actions .btn { display: none; }
}
@media (max-width: 560px) {
  .header-phone span { display: none; }
}

/* ==========================================================================
   6. HERO
   ========================================================================== */
.hero-x { position: relative; background-color: var(--paper); background-image: var(--dots); background-size: 24px 24px; overflow: clip; }
.hero-x__grid {
  display: grid; gap: var(--sp-8);
  padding-block: clamp(3rem, 2rem + 3.5vw, 5.5rem) clamp(3.5rem, 2.5rem + 4vw, 6.5rem);
  align-items: center;
}
@media (min-width: 1000px) { .hero-x__grid { grid-template-columns: 1.02fr 0.98fr; } }
.hero-x__h1 {
  display: inline-block;
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: var(--r-sm);
  box-shadow: var(--stack-sm);
  font-family: var(--font-body); font-weight: 700; font-size: clamp(1rem, 0.9rem + 0.5vw, 1.1875rem);
  line-height: 1.4; letter-spacing: 0; text-transform: none;
  padding: var(--sp-3) var(--sp-4);
  margin: 0 0 var(--sp-4);
  transform: none;
}
.hero-x__sub { font-size: var(--text-lg); color: var(--ink-soft); margin-bottom: var(--sp-6); max-width: 46ch; }
.hero-x__ctas { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; }

.hero-x__stage { position: relative; padding: var(--sp-4) var(--sp-4) 0 0; }
.hero-x__photo { transform: none; }
.hero-x__photo img { aspect-ratio: 3 / 2; }
.hero-x__chip-1 { position: absolute; top: -6px; left: -14px; transform: rotate(-4deg); z-index: 2; }
.hero-x__chip-2 { position: absolute; top: 22%; right: -6px; transform: rotate(3deg); z-index: 2; }
.hero-x__form {
  position: relative; z-index: 3;
  margin: -3.5rem auto 0; max-width: 430px;
  padding: var(--sp-5);
}
@media (min-width: 1000px) { .hero-x__form { margin: -4.5rem 0 0 -2rem; } }
.hero-form__title { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 1.4rem; margin: 0 0 2px; }
.hero-form__note { font-size: var(--text-sm); color: var(--ink-soft); margin-bottom: var(--sp-4); }

/* ==========================================================================
   7. TICKER (trust strip)
   ========================================================================== */
.ticker {
  background: var(--tote-red); color: var(--white);
  border-block: var(--bw) solid var(--ink);
  overflow: hidden; white-space: nowrap;
  contain: content;
}
.ticker__track { display: inline-flex; }
.loaded .ticker__track { animation: ticker 28s linear infinite; }
.ticker__seq { display: inline-flex; align-items: center; }
.ticker__item {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-sm);
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.8rem 1.6rem;
}
.ticker__item svg { width: 17px; height: 17px; flex: none; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ==========================================================================
   8. ANSWER PANEL
   ========================================================================== */
.answer-x { position: relative; }
.answer-x__panel {
  position: relative;
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: var(--r-lg);
  box-shadow: var(--stack);
  padding: clamp(1.75rem, 1.25rem + 2.5vw, 3.25rem);
}
.answer-x__tag {
  position: absolute; top: -1.1rem; left: clamp(1.25rem, 4vw, 2.75rem);
  transform: rotate(-2deg);
}
.answer-x__lead { font-size: clamp(1.125rem, 1rem + 0.6vw, 1.375rem); font-weight: 500; line-height: 1.55; max-width: 58ch; }
.answer-x__cols { display: grid; gap: var(--sp-5); margin-top: var(--sp-5); padding-top: var(--sp-5); border-top: var(--bw) dashed var(--line); }
@media (min-width: 800px) { .answer-x__cols { grid-template-columns: 1fr 1fr; gap: var(--sp-7); } }
.answer-x__cols p { font-size: var(--text-body); color: var(--ink-soft); margin: 0; }
.answer-x__cols p strong { color: var(--ink); }

/* ==========================================================================
   9. REVIEWS
   ========================================================================== */
.reviews__grid { display: grid; gap: var(--sp-6); }
@media (min-width: 880px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--stack);
  padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-4);
  transition: transform var(--t-med) var(--ease-out);
}
.reviews__grid > .review-card:nth-child(odd) { transform: none; }
.reviews__grid > .review-card:nth-child(2) { transform: none; }
@media (hover: hover) and (pointer: fine) {
  .review-card:hover { transform: rotate(0deg) translateY(-4px); }
}
.review-card blockquote { margin: 0; font-size: var(--text-body); line-height: 1.6; }
.review-card figcaption {
  display: flex; align-items: center; gap: var(--sp-3);
  font-weight: 700; font-size: var(--text-sm); margin-top: auto;
}
.review-card__avatar {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  background: var(--tote-red); color: var(--white);
  border: var(--bw) solid var(--ink);
  font-family: var(--font-display); font-weight: 900; font-size: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ==========================================================================
   10. HOW IT WORKS
   ========================================================================== */
.steps-x { display: grid; gap: var(--sp-6); counter-reset: none; position: relative; }
@media (min-width: 700px) { .steps-x { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .steps-x { grid-template-columns: repeat(4, 1fr); } }
.step-x { position: relative; padding-top: var(--sp-6); }
.step-x__ghost {
  position: absolute; top: -0.4rem; left: -0.25rem; z-index: 2;
  font-family: var(--font-display); font-weight: 900; font-size: 4.25rem; line-height: 1;
  color: var(--tote-red);
  text-shadow: 3px 3px 0 var(--ink);
  -webkit-text-stroke: 2px var(--ink);
}
.step-x__media { transform: none; }
.step-x:nth-child(even) .step-x__media { transform: none; }
.step-x__media img { aspect-ratio: 1; }
.step-x h3 { margin: var(--sp-4) 0 var(--sp-2); text-transform: uppercase; font-size: 1.25rem; }
.step-x p { font-size: var(--text-sm); color: var(--ink-soft); }
.steps-finale {
  text-align: center; font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem); line-height: 1.1;
  margin: var(--sp-8) auto 0; max-width: 30ch;
}

/* ==========================================================================
   11. VS PANEL (cardboard vs totes)
   ========================================================================== */
.vs-x { position: relative; }
.vs-x__intro { display: grid; gap: var(--sp-6); align-items: center; margin-bottom: var(--sp-8); }
@media (min-width: 900px) { .vs-x__intro { grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-8); } }
.vs-x__art { transform: none; }
.vs-x__table-wrap { position: relative; padding-top: var(--sp-5); }
.vs-x__badge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%) rotate(-6deg); z-index: 3;
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--tote-red); color: var(--white);
  border: var(--bw) solid var(--ink); box-shadow: var(--stack-sm);
  font-family: var(--font-display); font-weight: 900; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 2px 10px 10px 2px; }
.compare-full {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: var(--text-body);
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--stack);
}
.compare-full th, .compare-full td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare-full tr:last-child th, .compare-full tr:last-child td { border-bottom: 0; }
.compare-full thead th {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: var(--text-lg);
  border-bottom: var(--bw) solid var(--ink); padding-block: 1.25rem;
}
.compare-full thead th.is-cardboard { background: var(--kraft); color: var(--ink); }
.compare-full thead th.is-totes { background: var(--white); }
.compare-full td.is-cardboard, .compare-full thead th.is-cardboard { border-right: var(--bw) solid var(--ink); }
.compare-full tbody th {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: var(--text-xs);
  letter-spacing: 0.04em; color: var(--ink); width: 15%;
  border-right: var(--bw) solid var(--ink); background: var(--paper);
}
.compare-full td.is-cardboard { background: var(--kraft-tint); color: var(--ink-soft); }
.compare-full td .mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; vertical-align: -5px; margin-right: 10px;
  border: 1.5px solid currentColor;
}
.compare-full td .mark svg { width: 12px; height: 12px; }
.compare-full td.is-cardboard .mark { color: var(--kraft-deep); }
.compare-full td.is-totes .mark { color: var(--go-green); }
.vs-x__pull {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2.1rem); line-height: 1.1;
  text-align: center; max-width: 34ch; margin: var(--sp-8) auto var(--sp-3); text-wrap: balance;
}

/* ==========================================================================
   12. PACKAGES
   ========================================================================== */
.pkg-grid { display: grid; gap: var(--sp-6); align-items: stretch; }
@media (min-width: 660px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .pkg-grid { grid-template-columns: repeat(4, 1fr); } }
.package-card {
  position: relative;
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--stack);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .package-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
}
.package-card__head { padding: var(--sp-4) var(--sp-5); border-bottom: var(--bw) solid var(--ink); background: var(--paper); }
.package-card--featured .package-card__head { background: var(--tote-red); color: var(--white); }
.package-card__name { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 1.125rem; margin: 0; }
.package-card__badge {
  display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: 0.6875rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--white); color: var(--tote-red);
  border: 1.5px solid var(--ink); border-radius: 999px;
  padding: 2px 10px; margin-bottom: 6px;
}
.package-card__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.package-card__price { font-family: var(--font-display); font-weight: 900; font-size: 3.25rem; line-height: 1; letter-spacing: -0.03em; }
.package-card__price sup { font-size: 1.4rem; top: -1.2em; margin-right: 2px; }
.package-card__totes { color: var(--ink-soft); font-size: var(--text-sm); font-weight: 600; }
.package-card__list { list-style: none; padding: 0; margin: 0; font-size: var(--text-sm); }
.package-card__list li { display: flex; gap: var(--sp-2); align-items: flex-start; margin-bottom: var(--sp-2); }
.package-card__list svg { width: 18px; height: 18px; flex: none; color: var(--go-green); margin-top: 2px; }
.package-card .btn { margin-top: auto; }
.packages__footnote { text-align: center; color: var(--ink-soft); font-size: var(--text-sm); margin: var(--sp-6) auto 0; }

/* ==========================================================================
   13. DARK + RED PANELS (inset rounded full-bleed sections)
   ========================================================================== */
.panel-wrap { padding-inline: clamp(0.75rem, 2vw, 2rem); }
.panel {
  border: var(--bw) solid var(--ink); border-radius: var(--r-lg);
  overflow: clip; position: relative;
}
.panel--ink { background: var(--ink); color: rgba(255, 255, 255, 0.88); box-shadow: var(--stack-red); }
.panel--ink h2, .panel--ink h3 { color: var(--white); }
.panel--ink .accent { color: var(--kraft); }
.panel--red { background: var(--tote-red); color: var(--white); box-shadow: var(--stack); }
.panel--red h2 { color: var(--white); }
.panel--kraft { background: var(--kraft-tint); box-shadow: var(--stack); }
.panel__inner { padding: clamp(2.25rem, 1.5rem + 3vw, 4.5rem) clamp(1.5rem, 1rem + 3vw, 4rem); }

/* U-Haul counter inside ink panel */
.uhaul-x { display: grid; gap: var(--sp-7); align-items: center; }
@media (min-width: 960px) { .uhaul-x { grid-template-columns: 1.05fr 0.95fr; } }
.uhaul-x p { color: rgba(255, 255, 255, 0.82); }
.uhaul-x a { color: var(--white); text-decoration-color: var(--tote-red); }
.uhaul-x a:hover { color: var(--kraft); }
.vs-chips { display: grid; gap: var(--sp-3); }
.vs-chip {
  display: grid; grid-template-columns: 1fr 1fr;
  border: var(--bw) solid var(--ink); border-radius: var(--r-sm); overflow: hidden;
  font-size: var(--text-sm); box-shadow: var(--stack-sm);
  transform: none;
}
.vs-chip:nth-child(2) { transform: none; }
.vs-chip > span { padding: var(--sp-3) var(--sp-4); display: flex; gap: var(--sp-2); align-items: center; }
.vs-chip .them { background: var(--kraft-tint); color: var(--ink-soft); text-decoration: line-through; text-decoration-color: rgba(196,0,0,0.5); text-decoration-thickness: 2px; }
.vs-chip .us { background: var(--white); color: var(--ink); font-weight: 600; }
.vs-chip svg { width: 16px; height: 16px; flex: none; }
.vs-chip .them svg { color: var(--kraft-deep); }
.vs-chip .us svg { color: var(--go-green); }

/* ==========================================================================
   14. BENTO (Built for Portland)
   ========================================================================== */
.bento {
  display: grid; gap: var(--sp-5);
  grid-template-areas: "rain" "crush" "clean" "dolly" "cta";
}
@media (min-width: 900px) {
  .bento {
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-areas:
      "rain crush clean"
      "rain dolly cta";
  }
}
.bento__cell {
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--stack); padding: var(--sp-5);
  transition: transform var(--t-med) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .bento__cell:hover { transform: translateY(-4px); }
}
.bento__cell h3 { text-transform: uppercase; font-size: 1.2rem; margin-bottom: var(--sp-2); display: flex; align-items: center; gap: var(--sp-2); }
.bento__cell h3 svg { width: 22px; height: 22px; flex: none; color: var(--tote-red); }
.bento__cell p { font-size: var(--text-sm); color: var(--ink-soft); margin: 0; }
.bento__rain {
  grid-area: rain; padding: 0; overflow: clip; position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 340px;
}
.bento__rain img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento__rain-copy {
  position: relative; z-index: 1;
  background: linear-gradient(transparent, rgba(37, 37, 37, 0.92) 38%);
  padding: var(--sp-7) var(--sp-5) var(--sp-5);
  color: var(--white);
}
.bento__rain-copy h3 { color: var(--white); }
.bento__rain-copy p { color: rgba(255, 255, 255, 0.85); }
.bento__crush { grid-area: crush; }
.bento__clean { grid-area: clean; }
.bento__dolly { grid-area: dolly; }
.bento__cta {
  grid-area: cta; background: var(--tote-red); color: var(--white);
  display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-3); justify-content: center;
}
.bento__cta h3 { color: var(--white); }
.bento__cta p { color: rgba(255, 255, 255, 0.88); }

/* ==========================================================================
   15. ECO PANEL
   ========================================================================== */
.eco-x { display: grid; gap: var(--sp-7); align-items: center; }
@media (min-width: 960px) { .eco-x { grid-template-columns: 1.05fr 0.95fr; } }
.eco-x p { color: rgba(255, 255, 255, 0.82); }
.eco-x a { color: var(--white); text-decoration-color: var(--go-green); }
.eco-x a:hover { color: var(--kraft); }
.eco-x__img { transform: none; box-shadow: var(--stack-red); }
.eco-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); margin-top: var(--sp-6); }
.eco-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.2); border-radius: var(--r-sm);
  padding: var(--sp-4);
}
.eco-stat b {
  display: block; font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem); color: #7fd0a0; line-height: 1;
  -webkit-text-stroke: 0;
}
.eco-stat span { font-size: var(--text-xs); color: rgba(255, 255, 255, 0.7); }

/* ==========================================================================
   16. SERVICE AREAS
   ========================================================================== */
.areas-x { display: grid; gap: var(--sp-6); }
@media (min-width: 860px) { .areas-x { grid-template-columns: 1fr 1fr; gap: var(--sp-8); } }
.areas-x h3 { text-transform: uppercase; font-size: 1.1rem; display: flex; align-items: center; gap: var(--sp-2); }
.areas-x h3 svg { width: 20px; height: 20px; color: var(--tote-red); }
.pill-links { display: flex; flex-wrap: wrap; gap: var(--sp-3); list-style: none; padding: 0; margin: 0; }
.pill-links li { margin: 0; }
.pill-links a {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: 999px;
  padding: 0.5rem 1.05rem;
  font-weight: 600; font-size: var(--text-sm); color: var(--ink); text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out), background var(--t-fast) ease;
}
.pill-links a svg { width: 14px; height: 14px; color: var(--tote-red); }
@media (hover: hover) and (pointer: fine) {
  .pill-links a:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); background: var(--red-tint); }
}
.pill-links a:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

/* legacy partial support (hub/pillar/nearby link grids) */
.link-grid { display: flex; flex-wrap: wrap; gap: var(--sp-3); list-style: none; padding: 0; margin: 0; }
.link-grid li { margin: 0; }
.link-grid a {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: 999px;
  padding: 0.5rem 1.05rem; font-weight: 600; font-size: var(--text-sm);
  color: var(--ink); text-decoration: none; box-shadow: 3px 3px 0 var(--ink);
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.link-grid a svg { width: 14px; height: 14px; color: var(--tote-red); }
.link-grid a:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }

/* ==========================================================================
   17. WHO WE HELP
   ========================================================================== */
.who-grid { display: grid; gap: var(--sp-6); }
@media (min-width: 660px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .who-grid { grid-template-columns: repeat(4, 1fr); } }
.who-card {
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--stack); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .who-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
}
.who-card > img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; border-bottom: var(--bw) solid var(--ink); }
.who-card__icon {
  aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center;
  background: var(--red-tint); background-image: var(--dots); background-size: 18px 18px;
  border-bottom: var(--bw) solid var(--ink);
}
.who-card__icon span {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--tote-red); color: var(--white);
  border: var(--bw) solid var(--ink); box-shadow: var(--stack-sm);
  display: flex; align-items: center; justify-content: center;
}
.who-card__icon svg { width: 40px; height: 40px; }
.who-card__body { padding: var(--sp-4) var(--sp-5) var(--sp-5); }
.who-card__body h3 { text-transform: uppercase; font-size: 1.1rem; margin-bottom: var(--sp-2); }
.who-card__body p { font-size: var(--text-sm); color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   18. FAQ
   ========================================================================== */
.faq-list { display: grid; gap: var(--sp-4); }
.faq-item {
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--stack-sm);
  overflow: hidden;
  transition: box-shadow var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.faq-item[open] { box-shadow: var(--stack); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); padding: var(--sp-4) var(--sp-5);
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--tote-red); color: var(--white); border: 1.5px solid var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--t-med) var(--ease-out);
}
.faq-item summary .faq-icon svg { width: 16px; height: 16px; }
.faq-item[open] summary .faq-icon { transform: rotate(45deg); }
.faq-item__body { padding: 0 var(--sp-5) var(--sp-5); color: var(--ink-soft); border-top: 1px dashed var(--line); padding-top: var(--sp-4); margin: 0 0; }

/* ==========================================================================
   19. QUOTE SECTION (#quote)
   ========================================================================== */
.quote-section { background: var(--ink); color: var(--white); scroll-margin-top: 92px; border-top: var(--bw) solid var(--ink); }
.quote-section__inner { display: grid; gap: var(--sp-7); padding-block: var(--section-pad); align-items: center; }
@media (min-width: 940px) { .quote-section__inner { grid-template-columns: 0.85fr 1.15fr; } }
.quote-section__title { color: var(--white); font-size: clamp(2rem, 1.5rem + 2.4vw, 3.25rem); }
.quote-section__lede { color: rgba(255, 255, 255, 0.8); }
.quote-section__phone { margin-top: var(--sp-5); }
.quote-section__phone a { color: var(--white); font-weight: 700; text-decoration-color: var(--tote-red); }
.quote-section__phone a:hover { color: var(--kraft); }
.quote-form-card {
  background: var(--white); color: var(--ink);
  border: var(--bw) solid var(--ink); border-radius: var(--r-lg);
  box-shadow: var(--stack-red);
  padding: clamp(1.5rem, 1rem + 2vw, 2.75rem);
}
.reply-note { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-sm); color: var(--ink-soft); margin-top: var(--sp-3); }
.reply-note svg { width: 18px; height: 18px; flex: none; color: var(--go-green); }

/* ==========================================================================
   20. FLUENT FORMS
   ========================================================================== */
.btt-form .ff-el-group { margin-bottom: var(--sp-4); }
.btt-form .ff-el-input--label { margin-bottom: var(--sp-1); }
.btt-form .ff-el-input--label label { font-weight: 700; font-size: var(--text-sm); color: var(--ink); }
.btt-form .ff-el-form-control {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: var(--bw) solid var(--ink); border-radius: var(--r-sm);
  padding: 0.75rem 0.875rem; min-height: 50px;
  transition: box-shadow var(--t-fast) ease, background var(--t-fast) ease;
}
.btt-form .ff-el-form-control:focus {
  outline: none; background: var(--white);
  box-shadow: 3px 3px 0 var(--tote-red);
}
.btt-form .ff-el-form-control::placeholder { color: #757068; }
.btt-form textarea.ff-el-form-control { min-height: 110px; resize: vertical; }
.btt-form .ff-btn-submit {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; text-transform: uppercase;
  background: var(--tote-red); color: var(--white);
  border: var(--bw) solid var(--ink); border-radius: var(--r-sm); box-shadow: var(--stack-sm);
  cursor: pointer; padding: 1rem 2rem; width: 100%;
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out), background var(--t-fast) ease;
}
.btt-form .ff-btn-submit:hover { background: var(--red-dark); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btt-form .ff-btn-submit:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.btt-form .ff-el-is-error .ff-el-form-control { border-color: var(--tote-red); }
.btt-form .error, .btt-form .text-danger { color: var(--tote-red); font-size: var(--text-sm); }
.btt-form .ff-message-success {
  background: #eef6f0; border: var(--bw) solid var(--go-green); color: var(--ink);
  border-radius: var(--r-sm); padding: var(--sp-4); font-weight: 500;
}

/* ==========================================================================
   21. GBP BLOCK (reserved)
   ========================================================================== */
.gbp-block {
  background-color: var(--paper);
  background-image: var(--dots);
  background-size: 24px 24px;
  border-top: var(--bw) solid var(--ink);
  text-align: center;
}
.gbp-block__inner { padding-block: calc(var(--section-pad) * 0.8); }
.gbp-block__card {
  display: inline-block;
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--stack); padding: var(--sp-6) clamp(1.5rem, 5vw, 4rem);
  transform: none;
}
.gbp-block__pin { display: block; width: 44px; height: 44px; margin: 0 auto var(--sp-3); color: var(--tote-red); }
.gbp-block__pin svg { width: 44px; height: 44px; }
.gbp-block__name { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: var(--text-h3); margin-bottom: var(--sp-2); }
.gbp-block__nap { color: var(--ink-soft); font-size: var(--text-body); }
.gbp-block__nap a { font-weight: 700; }

/* ==========================================================================
   22. FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.82); font-size: var(--text-sm); border-top: 4px solid var(--tote-red); }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { color: var(--kraft); text-decoration: underline; }
.site-footer__grid { display: grid; gap: var(--sp-7); padding-block: var(--sp-8) var(--sp-6); }
@media (min-width: 780px) { .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.site-footer__logo {
  display: inline-block; background: var(--white); border-radius: 999px; padding: 8px 16px;
  border: var(--bw) solid rgba(255,255,255,0.25);
  margin-bottom: var(--sp-4); transform: none;
}
.site-footer__logo img { height: 46px; width: auto; }
.site-footer h3, .site-footer h4 {
  color: var(--white); font-family: var(--font-display); font-size: 0.95rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--sp-4);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: var(--sp-2); }
.site-footer__tagline { max-width: 34ch; }
.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-block: var(--sp-4);
  display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between;
  font-size: var(--text-xs); color: rgba(255, 255, 255, 0.6);
}
.site-footer__legal a { color: rgba(255, 255, 255, 0.75); }

/* ==========================================================================
   23. STICKY MOBILE BAR
   ========================================================================== */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--z-mobile-bar);
  display: none;
  background: var(--white); border-top: var(--bw) solid var(--ink);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(100%);
  transition: transform var(--t-med) var(--ease-out);
}
.mobile-bar.is-visible { transform: translateY(0); }
.mobile-bar__inner { display: grid; grid-template-columns: 1fr 1fr 1.3fr; }
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: 0.9rem var(--sp-2);
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-sm); text-transform: uppercase;
  text-decoration: none; color: var(--ink); min-height: 54px;
}
.mobile-bar a + a { border-left: var(--bw) solid var(--ink); }
.mobile-bar a svg { width: 20px; height: 20px; flex: none; }
.mobile-bar__quote { background: var(--tote-red); color: var(--white) !important; }
@media (max-width: 940px) {
  .mobile-bar { display: block; }
  body.mobile-bar-active { padding-bottom: 64px; }
}

/* ==========================================================================
   24. BREADCRUMBS + PROSE + LEGACY PARTIALS
   ========================================================================== */
.breadcrumbs { font-size: var(--text-xs); color: var(--ink-faint); padding-block: var(--sp-3); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: var(--sp-1); padding: 0; margin: 0; }
.breadcrumbs li { display: flex; align-items: center; gap: var(--sp-1); margin: 0; }
.breadcrumbs li + li::before { content: '/'; color: var(--line); padding-inline: 2px; }
.breadcrumbs a { color: var(--ink-faint); text-decoration: none; }
.breadcrumbs a:hover { color: var(--tote-red); text-decoration: underline; }
.breadcrumbs [aria-current] { color: var(--ink); font-weight: 600; }

.prose > * { max-width: var(--container-narrow); }
.prose h2 { margin-top: var(--sp-7); }
.prose h3 { margin-top: var(--sp-6); }
.prose img { border: var(--bw) solid var(--ink); border-radius: var(--r-md); box-shadow: var(--stack); margin-block: var(--sp-5); }
.prose figure { margin: var(--sp-5) 0; }
.prose figcaption { font-size: var(--text-xs); color: var(--ink-faint); margin-top: var(--sp-2); }
.prose table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); margin-block: var(--sp-5); }
.prose th, .prose td { padding: var(--sp-3); text-align: left; border-bottom: 1px solid var(--line); }
.prose thead th { border-bottom: var(--bw) solid var(--ink); font-weight: 700; }
.prose blockquote {
  border: var(--bw) solid var(--ink); border-radius: var(--r-md); box-shadow: var(--stack-sm);
  background: var(--white);
  margin: var(--sp-5) 0; padding: var(--sp-4) var(--sp-5);
  color: var(--ink-soft); font-size: var(--text-lg);
}

.verdict-box {
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--stack); padding: var(--sp-5); margin-block: var(--sp-5);
}
.verdict-box h2, .verdict-box h3 { margin-top: 0; }

/* Legacy hero partial (subpage templates until Phase 2 restyle) */
.hero { background-color: var(--paper); background-image: var(--dots); background-size: 24px 24px; border-bottom: var(--bw) solid var(--ink); overflow: clip; }
.hero__inner { display: grid; gap: var(--sp-7); padding-block: clamp(2.5rem, 2rem + 3vw, 5rem); }
@media (min-width: 900px) { .hero__inner { grid-template-columns: 1.15fr 0.85fr; align-items: center; } }
.hero__kicker { font-family: var(--font-accent); font-size: 1.5rem; color: var(--tote-red); display: block; margin-bottom: var(--sp-2); }
.hero__title { margin-bottom: var(--sp-4); text-transform: uppercase; }
.hero__title .accent { color: var(--tote-red); }
.hero__sub { font-size: var(--text-lg); color: var(--ink-soft); margin-bottom: var(--sp-5); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; }
.hero__quote-hop { display: none; }
@media (max-width: 899px) { .hero__quote-hop { display: inline-flex; } }
.hero-form {
  background: var(--white); border: var(--bw) solid var(--ink);
  border-radius: var(--r-md); padding: var(--sp-5);
  box-shadow: var(--stack);
}

/* Legacy compare-table + steps + cta-band + trust strip (subpages) */
.compare-table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); background: var(--white); border: var(--bw) solid var(--ink); border-radius: var(--r-sm); overflow: hidden; }
.compare-table th, .compare-table td { padding: var(--sp-3) var(--sp-4); text-align: left; border-bottom: 1px solid var(--line); }
.compare-table thead th { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; border-bottom: var(--bw) solid var(--ink); }
.compare-table .is-cardboard { background: var(--kraft-tint); }
.compare { display: grid; gap: 0; border: var(--bw) solid var(--ink); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--stack); }
@media (min-width: 760px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare__col { padding: var(--sp-6); }
.compare__col--cardboard { background: var(--kraft-tint); border-right: var(--bw) solid var(--ink); }
.compare__col--totes { background: var(--white); }
.compare__list { list-style: none; padding: 0; margin: 0; }
.compare__list li { display: flex; gap: var(--sp-3); align-items: flex-start; padding-block: var(--sp-2); }
.compare__list svg { width: 20px; height: 20px; flex: none; margin-top: 3px; }
.compare__col--cardboard svg { color: var(--kraft-deep); }
.compare__col--totes svg { color: var(--go-green); }

.steps { display: grid; gap: var(--sp-5); }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding-top: var(--sp-4); }
.step__num {
  font-family: var(--font-display); font-weight: 900; font-size: 3rem; line-height: 1;
  color: var(--tote-red); -webkit-text-stroke: 1.5px var(--ink); position: absolute; top: 0; left: 0;
}
.step h3 { font-size: var(--text-lg); position: relative; }
.step p { font-size: var(--text-sm); color: var(--ink-soft); }

.cta-band { background: var(--tote-red); color: var(--white); border-block: var(--bw) solid var(--ink); }
.cta-band__inner {
  display: flex; flex-direction: column; flex-wrap: wrap;
  align-items: center; justify-content: center; text-align: center;
  gap: var(--sp-5); padding-block: var(--sp-7);
}
.cta-band__title { color: var(--white); margin: 0; font-size: var(--text-h3); text-transform: uppercase; }
.cta-band__sub { color: rgba(255, 255, 255, 0.85); margin: var(--sp-1) auto 0; max-width: 60ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-4); }
.cta-band a:not(.btn) { color: var(--white); }

.trust-strip { background: var(--ink); color: var(--white); }
.trust-strip__inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); padding-block: var(--sp-5); }
@media (min-width: 760px) { .trust-strip__inner { grid-template-columns: repeat(4, 1fr); } }
.trust-strip__item { display: flex; align-items: center; gap: var(--sp-3); font-size: var(--text-sm); font-weight: 600; }
.trust-strip__item svg { width: 26px; height: 26px; flex: none; color: var(--tote-red); }

.related-reading { display: grid; gap: var(--sp-6); }
@media (min-width: 760px) { .related-reading { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--stack); overflow: hidden; text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column;
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .related-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
}
.related-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; border-bottom: var(--bw) solid var(--ink); }
.related-card__body { padding: var(--sp-4); }
.related-card__title { font-weight: 700; font-size: var(--text-body); line-height: 1.35; }

/* Who-cells 2x2 grid (location pages) */
.who-2x2 { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
@media (min-width: 700px) { .who-2x2 { grid-template-columns: repeat(2, 1fr); } }

/* Section headers */
.sec-head { max-width: 50rem; margin-bottom: var(--sp-7); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.25rem); }
.sec-head .sec-lede { color: var(--ink-soft); font-size: var(--text-lg); max-width: 52ch; }
.sec-head--center .sec-lede { margin-inline: auto; }
.sec-head .annotation { display: inline-block; margin-top: var(--sp-2); transform: rotate(-1.5deg); }

.error-404 { text-align: center; padding-block: var(--sp-9); }
.error-404 h1 { font-size: clamp(4rem, 10vw, 8rem); color: var(--tote-red); -webkit-text-stroke: 3px var(--ink); }

/* ==========================================================================
   25. MOTION
   ========================================================================== */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 550ms ease, transform 650ms var(--ease-out); }
  .js .reveal.is-inview { opacity: 1; transform: none; }
  .js .reveal[data-delay="1"] { transition-delay: 70ms; }
  .js .reveal[data-delay="2"] { transition-delay: 140ms; }
  .js .reveal[data-delay="3"] { transition-delay: 210ms; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media print {
  .site-header, .mobile-bar, .quote-section, .cta-band, .site-footer, .ticker { display: none; }
}

/* ==========================================================================
   26. CORE PAGE TEMPLATE (Phase 2) — page hero, step rows, timeline
   ========================================================================== */

/* --- Page hero: H1 is the display headline --- */
.hero-p { position: relative; background-color: var(--paper); background-image: var(--dots); background-size: 24px 24px; overflow: clip; border-bottom: var(--bw) solid var(--ink); }
.hero-p__grid {
  display: grid; gap: var(--sp-7);
  padding-block: clamp(2.5rem, 1.8rem + 3vw, 4.5rem) clamp(3rem, 2rem + 3.5vw, 5.5rem);
  align-items: center;
}
@media (min-width: 1000px) { .hero-p__grid { grid-template-columns: 1.02fr 0.98fr; } }
.hero-p__h1 {
  font-size: clamp(2.1rem, 1.2rem + 3.4vw, 3.9rem);
  text-transform: uppercase; line-height: 1.0;
  margin-bottom: var(--sp-4);
}
.hero-p__h1 .accent { color: var(--tote-red); }
.hero-p__sub { font-size: var(--text-lg); color: var(--ink-soft); margin-bottom: var(--sp-6); max-width: 48ch; }
.hero-p__stage { position: relative; padding: var(--sp-4) var(--sp-4) 0 0; }
.hero-p__photo { transform: none; }
.hero-p__photo img { aspect-ratio: 3 / 2; }
.hero-p__form {
  position: relative; z-index: 3;
  margin: -3.5rem auto 0; max-width: 430px;
  padding: var(--sp-5);
}
@media (min-width: 1000px) { .hero-p__form { margin: -4.5rem 0 0 -2rem; } }
.hero-p__chip { position: absolute; top: -4px; left: -12px; transform: rotate(-4deg); z-index: 2; }

/* Static trust chips row (subpages; the ticker stays a homepage signature) */
.trust-chips { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }

/* --- Detailed step rows (alternating) --- */
.step-rows { display: grid; gap: clamp(2.5rem, 2rem + 2.5vw, 4.5rem); }
.step-row { display: grid; gap: var(--sp-6); align-items: center; }
@media (min-width: 900px) {
  .step-row { grid-template-columns: 0.9fr 1.1fr; }
  .step-row--flip .step-row__media { order: 2; }
}
.step-row__media { position: relative; }
.step-row__media .stack-frame { transform: none; }
.step-row--flip .step-row__media .stack-frame { transform: none; }
.step-row__media img { aspect-ratio: 4 / 3; }
.step-row__num {
  position: absolute; top: -1.4rem; left: -0.6rem; z-index: 2;
  font-family: var(--font-display); font-weight: 900; font-size: 4.75rem; line-height: 1;
  color: var(--tote-red);
  text-shadow: 3px 3px 0 var(--ink);
  -webkit-text-stroke: 2px var(--ink);
}
.step-row--flip .step-row__num { left: auto; right: -0.6rem; }
.step-row__body h3, .step-row__body h2 { text-transform: uppercase; font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem); }
.step-row__body p { color: var(--ink-soft); }
.step-row__hint {
  display: flex; align-items: flex-start; gap: var(--sp-2);
  font-size: var(--text-sm); font-weight: 600; color: var(--ink);
  background: var(--red-tint); border: 1.5px solid var(--ink); border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-4); margin-top: var(--sp-4); max-width: 46ch;
}
.step-row__hint svg { width: 18px; height: 18px; flex: none; color: var(--tote-red); margin-top: 2px; }

/* --- Rental timeline --- */
.timeline { display: grid; gap: var(--sp-4); position: relative; counter-reset: none; }
@media (min-width: 860px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
.timeline__item {
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--stack-sm); padding: var(--sp-4) var(--sp-5);
  position: relative;
}
.timeline__label {
  display: inline-block;
  font-family: var(--font-display); font-weight: 900; font-size: var(--text-xs);
  text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--ink); color: var(--white);
  border-radius: 999px; padding: 3px 12px; margin-bottom: var(--sp-2);
}
.timeline__item--accent .timeline__label { background: var(--tote-red); }
.timeline__item h3 { font-size: 1.05rem; text-transform: uppercase; margin-bottom: var(--sp-1); }
.timeline__item p { font-size: var(--text-sm); color: var(--ink-soft); margin: 0; }

/* --- Delivery-day panel (what arrives) --- */
.arrive-panel { display: grid; gap: var(--sp-6); align-items: center; }
@media (min-width: 900px) { .arrive-panel { grid-template-columns: 1.1fr 0.9fr; } }
.arrive-list { list-style: none; padding: 0; margin: var(--sp-4) 0 0; display: grid; gap: var(--sp-3); }
.arrive-list li { display: flex; gap: var(--sp-3); align-items: flex-start; margin: 0; }
.arrive-list li svg { width: 22px; height: 22px; flex: none; color: var(--go-green); margin-top: 2px; }
.arrive-list li strong { display: block; }
.arrive-list li span { font-size: var(--text-sm); color: var(--ink-soft); }
.arrive-panel__media { position: relative; }
.arrive-panel__media .stack-frame { transform: none; background: var(--white); }
.arrive-panel__media .stack-frame img { aspect-ratio: 4 / 5; object-fit: contain; padding: var(--sp-5); }
.arrive-panel__chip { position: absolute; bottom: 16px; left: -10px; transform: rotate(-3deg); z-index: 2; }

/* ==========================================================================
   27. BLOG SINGLE (Phase 4) — editorial post layout
   ========================================================================== */
.post-hero { background-color: var(--paper); background-image: var(--dots); background-size: 24px 24px; border-bottom: var(--bw) solid var(--ink); }
.post-hero__inner { padding-block: clamp(2.5rem, 1.8rem + 3vw, 4.5rem); max-width: 54rem; margin-inline: auto; text-align: center; }
.post-hero__cat {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--tote-red); color: var(--white);
  border: 1.5px solid var(--ink); border-radius: 999px;
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-xs);
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 4px 14px; margin-bottom: var(--sp-4);
  box-shadow: 3px 3px 0 var(--ink);
}
.post-hero__cat:hover, .post-hero__cat:focus-visible { background: var(--ink); color: var(--white); }
.post-hero__title { font-size: clamp(2rem, 1.3rem + 2.8vw, 3.4rem); text-transform: none; letter-spacing: -0.02em; line-height: 1.06; }

/* Blog archive pagination (chunky-sticker pills) */
.pagination { margin-top: var(--sp-8); }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 46px; height: 46px; padding: 0 16px;
  border: var(--bw) solid var(--ink); border-radius: 999px;
  background: var(--white); color: var(--ink); text-decoration: none;
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-sm);
}
.pagination a.page-numbers:hover { background: var(--kraft); color: var(--ink); }
.pagination .page-numbers.current { background: var(--tote-red); color: var(--white); box-shadow: 4px 4px 0 var(--ink); }
.pagination .page-numbers.dots { border: 0; background: none; min-width: auto; padding: 0 2px; }
.post-hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; justify-content: center;
  font-size: var(--text-sm); color: var(--ink-soft); margin-top: var(--sp-4);
}
.post-hero__inner .hero-x__ctas { justify-content: center; }
.post-hero__meta strong { color: var(--ink); }
.post-hero__figure { max-width: 68rem; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem) 0; transform: translateY(2.5rem); margin-top: -1rem; }
.post-hero__figure .stack-frame { transform: none; }
.post-hero__figure figcaption { font-size: var(--text-xs); color: var(--ink-faint); margin-top: var(--sp-2); text-align: center; }

/* grid items default to min-width:auto, so a wide table would stretch the
   column past the viewport and drag every paragraph, image, and centered
   element right with it. minmax(0,…) + min-width:0 keeps the column honest. */
.post-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--sp-7); padding-top: 4.5rem; }
.post-layout > * { min-width: 0; }
@media (min-width: 1060px) { .post-layout { grid-template-columns: 15.5rem minmax(0, 1fr); align-items: start; } }

/* TOC rail */
.toc-card {
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--stack-sm); padding: var(--sp-4) var(--sp-5);
}
@media (min-width: 1060px) { .toc-card { position: sticky; top: 96px; } }
.toc-card h2 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--sp-3); }
.toc-card ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.toc-card li { margin: 0 0 var(--sp-2); counter-increment: toc; }
.toc-card a {
  display: flex; gap: 8px; align-items: baseline;
  font-size: var(--text-sm); font-weight: 600; color: var(--ink); text-decoration: none;
}
.toc-card a::before { content: counter(toc); font-family: var(--font-display); font-weight: 900; color: var(--tote-red); font-size: 0.9rem; }
.toc-card a:hover { color: var(--tote-red); }

/* Post body */
.post-body { max-width: 46rem; }
.post-body h2 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); margin-top: var(--sp-8); scroll-margin-top: 96px; }
.post-body h2:first-child { margin-top: 0; }
.post-body h3 { margin-top: var(--sp-6); }
.post-body p, .post-body ul, .post-body ol { font-size: var(--text-body); }
.post-body .stack-frame { margin-block: var(--sp-6) var(--sp-2); box-shadow: none; }
.post-body .stack-frame img,
.post-hero__figure .stack-frame img {
  border: 0; border-radius: 0; box-shadow: none; margin: 0;
  width: 100%; height: auto; display: block;
}
.post-body figure { margin-block: var(--sp-6); }
.post-body figcaption { font-size: var(--text-xs); color: var(--ink-faint); margin-top: var(--sp-2); text-align: center; }

/* Verdict/answer box */
.verdict-x {
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--stack); padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-7); position: relative;
}
.verdict-x__tag { position: absolute; top: -1.05rem; left: var(--sp-5); transform: rotate(-2deg); }
.verdict-x p { margin: 0; font-size: var(--text-lg); font-weight: 500; }
.verdict-x p + p { margin-top: var(--sp-3); font-size: var(--text-body); font-weight: 400; color: var(--ink-soft); }

/* Pull-quote */
.pull-x,
.prose blockquote.pull-x {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.8rem); line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink);
  border: 0; background: none; box-shadow: none; padding: 0; border-radius: 0;
  margin: var(--sp-7) auto; max-width: 30ch; text-align: center; text-wrap: balance;
}
.pull-x .accent { color: var(--tote-red); }

/* Callout */
.callout {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  background: var(--red-tint); border: 1.5px solid var(--ink); border-radius: var(--r-sm);
  padding: var(--sp-4) var(--sp-5); margin-block: var(--sp-5);
  font-size: var(--text-sm); font-weight: 500;
}
.callout svg { width: 20px; height: 20px; flex: none; color: var(--tote-red); margin-top: 2px; }

/* Chooser (choose A if / choose B if) */
.chooser { display: grid; gap: var(--sp-4); margin-block: var(--sp-6); }
@media (min-width: 720px) { .chooser { grid-template-columns: 1fr 1fr; } }
.chooser__col { border: var(--bw) solid var(--ink); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--stack-sm); background: var(--white); }
.chooser__col--them .chooser__head { background: var(--kraft-tint); }
.chooser__col--us .chooser__head { background: var(--tote-red); color: var(--white); }
.chooser__head { padding: var(--sp-3) var(--sp-4); border-bottom: var(--bw) solid var(--ink); font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1rem; }
.chooser__col ul { list-style: none; margin: 0; padding: var(--sp-4); }
.chooser__col li { display: flex; gap: var(--sp-2); align-items: flex-start; font-size: var(--text-sm); margin-bottom: var(--sp-2); }
.chooser__col li svg { width: 16px; height: 16px; flex: none; margin-top: 3px; }
.chooser__col--them li svg { color: var(--kraft-deep); }
.chooser__col--us li svg { color: var(--go-green); }

/* Author / trust box */
.author-box {
  display: flex; gap: var(--sp-4); align-items: center;
  background: var(--white); border: var(--bw) solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--stack-sm); padding: var(--sp-5); margin-block: var(--sp-8);
}
.author-box__logo { flex: none; width: 64px; height: 64px; border-radius: 50%; border: var(--bw) solid var(--ink); background: var(--white); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.author-box__logo img { width: 54px; height: auto; }
.author-box h3 { font-size: 1rem; text-transform: uppercase; margin-top: 0; margin-bottom: 4px; }
.author-box p { font-size: var(--text-sm); color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   28. RESPONSIVE TABLES — mobile collapse
   Below 700px every data table stops scrolling sideways and stacks into
   one card per row: the row header becomes the card title and each cell
   shows its column header above the value (data-label stamped by main.js).
   ========================================================================== */
@media (max-width: 700px) {
  .scroll-x { overflow-x: visible; padding: 0 0 var(--sp-2); }

  .compare-full, .compare-table {
    display: block; width: 100%;
    background: none; border: 0; border-radius: 0; box-shadow: none; overflow: visible;
  }
  /* headers stay for screen readers, hidden visually */
  .compare-full thead, .compare-table thead {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
  }
  .compare-full tbody, .compare-table tbody { display: block; }

  .compare-full tbody tr, .compare-table tbody tr {
    display: block; margin-bottom: var(--sp-4);
    background: var(--white);
    border: var(--bw) solid var(--ink); border-radius: var(--r-md);
    box-shadow: var(--stack-sm); overflow: hidden;
  }
  .compare-full tbody tr:last-child, .compare-table tbody tr:last-child { margin-bottom: 0; }

  .compare-full tbody th[scope="row"], .compare-table tbody th[scope="row"] {
    display: block; width: auto;
    background: var(--ink); color: var(--white);
    border-right: 0; border-bottom: var(--bw) solid var(--ink);
    font-size: var(--text-xs); letter-spacing: 0.05em;
    padding: var(--sp-3) var(--sp-4);
  }
  .compare-full tbody td, .compare-table tbody td {
    display: block; width: auto;
    border-bottom: 1px solid var(--line);
    padding: var(--sp-3) var(--sp-4);
  }
  /* beat the desktop .is-cardboard/.is-totes column divider */
  .compare-full tbody td.is-cardboard, .compare-full tbody td.is-totes,
  .compare-table tbody td.is-cardboard, .compare-table tbody td.is-totes { border-right: 0; }
  .compare-full tbody tr > *:last-child, .compare-table tbody tr > *:last-child { border-bottom: 0; }

  .compare-full td[data-label]::before, .compare-table td[data-label]::before {
    content: attr(data-label);
    display: block; margin-bottom: 4px;
    font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
    font-size: 0.6875rem; letter-spacing: 0.06em; color: var(--ink-soft);
  }
  .compare-full td.is-cardboard[data-label]::before { color: var(--kraft-deep); }
  .compare-full td.is-totes[data-label]::before { color: var(--go-green); }

  /* the VS badge sits above the first stacked card instead of over it */
  .vs-x__table-wrap { padding-top: 54px; }
}
