/* Haul Pros LLC — "Cardboard box" theme.
   Light-dominant kraft. One fragile-red accent. Stardos Stencil display. */

:root {
  --kraft: #e9dcc0;
  --kraft-deep: #ddcda6;
  --kraft-shadow: #cbb37f;
  --ink: #2b2119;
  --ink-soft: #5d4c38;
  --ink-faint: #7a684d;
  --red: #b23a2e;
  --red-deep: #8f2c23;
  --cream: #f6ecd8;
  --line: #c4ae7f;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
  --step-3: clamp(1.9rem, 1.4rem + 2.4vw, 3rem);
  --step-6: clamp(3rem, 1.6rem + 7vw, 6.5rem);

  --pad-section: clamp(5rem, 10vw, 9rem);
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--kraft);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .stencil {
  font-family: "Stardos Stencil", Georgia, serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; }

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

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 0.75rem 1.25rem; z-index: 200;
}
.skip:focus { left: 0; }

/* ---------- container / bands ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 860px; }
.band { padding: var(--pad-section) 0; position: relative; }

/* ---------- eyebrows / headings ---------- */
.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 1rem;
}
.eyebrow-light { color: var(--cream); opacity: 0.85; }

.h2 {
  font-size: var(--step-3);
  margin-bottom: 1rem;
}
.h2 em, .cta-title em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
.h2 em { color: var(--red); }

.lede {
  font-size: var(--step-1);
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 3rem;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(233, 220, 192, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(43, 33, 25, 0.18); }
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; gap: 2rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-mark { width: 30px; height: 30px; color: var(--ink); }
.brand-name { font-family: "Stardos Stencil", Georgia, serif; font-size: 1.3rem; letter-spacing: 0.02em; }
.site-nav { display: flex; gap: 1.75rem; margin-left: auto; }
.site-nav a {
  text-decoration: none; font-size: 0.95rem; font-weight: 600; color: var(--ink-soft);
  position: relative; padding: 0.25rem 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--red); transition: width 0.2s var(--ease);
}
.site-nav a:hover::after { width: 100%; }
.site-nav a:hover { color: var(--ink); }
.header-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--red); color: var(--cream);
  font-weight: 700; font-size: 1.05rem; font-variant-numeric: tabular-nums;
  text-decoration: none; padding: 0.6rem 1.1rem; border-radius: 5px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.header-call svg { width: 18px; height: 18px; }
.header-call:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 700; font-size: 1.05rem; text-decoration: none;
  padding: 0.95rem 1.6rem; border-radius: 5px;
  border: 2px solid var(--ink);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
}
.btn svg { width: 20px; height: 20px; }
.btn-primary {
  background: var(--red); color: var(--cream);
  box-shadow: 4px 4px 0 var(--ink);
  font-variant-numeric: tabular-nums;
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: 4px 4px 0 rgba(43,33,25,0.25); }
.btn-ghost:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(43,33,25,0.35); }
.btn-cream { background: var(--cream); color: var(--ink); box-shadow: 4px 4px 0 rgba(0,0,0,0.25); border-color: var(--cream); }
.btn-cream:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(0,0,0,0.3); }
.btn-outline { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-outline:hover { background: rgba(246,236,216,0.14); transform: translate(-2px, -2px); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  min-height: calc(100vh - 72px);
  display: flex; align-items: center;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(178, 58, 46, 0.08), transparent 60%),
    radial-gradient(1100px 700px at 10% 90%, rgba(203, 179, 127, 0.55), transparent 60%),
    var(--kraft);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center; position: relative; z-index: 1; width: 100%;
}
.hero-title { font-size: var(--step-6); margin: 0 0 1.5rem; }
.hero-title .line { display: block; }
.hero-title .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-title .w > span { display: inline-block; }
.hero-title .accent em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic; font-weight: 400; color: var(--red);
  font-size: 0.94em; letter-spacing: 0;
}
.hero-sub { font-size: var(--step-1); color: var(--ink-soft); max-width: 46ch; margin-bottom: 2.25rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.trust-row {
  list-style: none; margin: 0; padding: 1.1rem 0 0;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.75rem;
  border-top: 2px dashed var(--line);
}
.trust-row li { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; font-weight: 600; color: var(--ink-soft); }
.trust-row svg { width: 19px; height: 19px; color: var(--red); flex: none; }

.hero-art { position: relative; display: flex; justify-content: center; }
.art-glow {
  position: absolute; inset: 8% 4%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(246, 236, 216, 0.85), transparent 70%);
}
.box-art { width: min(100%, 440px); height: auto; position: relative; filter: drop-shadow(10px 14px 0 rgba(43,33,25,0.14)); }

/* hero entrance choreography (JS-gated) */
.js .hero-eyebrow, .js .hero-sub, .js .hero-ctas, .js .trust-row, .js .hero-art { opacity: 0; }
.js .hero-title .w > span { transform: translateY(112%); }
.js .hero-art { transform: translateY(26px); }
.js.loaded .hero-eyebrow { animation: heroFade 0.5s var(--ease) 0.05s forwards; }
.js.loaded .hero-title .w > span { animation: heroRise 0.7s var(--ease) forwards; }
.js.loaded .hero-title .line:nth-child(1) .w:nth-child(1) > span { animation-delay: 0.12s; }
.js.loaded .hero-title .line:nth-child(1) .w:nth-child(2) > span { animation-delay: 0.19s; }
.js.loaded .hero-title .line:nth-child(2) .w:nth-child(1) > span { animation-delay: 0.26s; }
.js.loaded .hero-title .line:nth-child(2) .w:nth-child(2) > span { animation-delay: 0.33s; }
.js.loaded .hero-sub { animation: heroFade 0.5s var(--ease) 0.5s forwards; }
.js.loaded .hero-ctas { animation: heroRiseSoft 0.55s var(--ease) 0.6s forwards; }
.js.loaded .trust-row { animation: heroFade 0.5s var(--ease) 0.72s forwards; }
.js.loaded .hero-art { animation: heroSettle 0.7s var(--ease) 0.45s forwards; }
@keyframes heroFade { to { opacity: 1; } }
@keyframes heroRise { to { transform: translateY(0); } }
@keyframes heroRiseSoft { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroSettle { to { opacity: 1; transform: translateY(0); } }

/* ---------- tape marquee ---------- */
.tape-marquee {
  background: var(--kraft-deep);
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  overflow: hidden; position: relative;
}
.tape-track {
  display: flex; width: max-content;
  animation: tapeScroll 32s linear infinite;
  padding: 0.85rem 0;
}
.tape-track span {
  font-family: "Stardos Stencil", Georgia, serif; font-size: 1.05rem; letter-spacing: 0.06em;
  color: var(--ink); white-space: nowrap;
}
.tape-track i { font-style: normal; color: var(--red); padding: 0 0.4em; }
@keyframes tapeScroll { to { transform: translateX(-50%); } }

/* ---------- services ---------- */
.services { background: var(--kraft); }
.service-rows { list-style: none; margin: 0; padding: 0; border-top: 3px solid var(--ink); }
.service-row {
  display: grid; grid-template-columns: 90px 1fr 48px; gap: 1.5rem; align-items: center;
  padding: 1.9rem 0.5rem; border-bottom: 2px solid var(--line);
  position: relative; text-decoration: none;
  transition: background 0.2s var(--ease), padding-left 0.25s var(--ease);
}
.service-row:hover { background: rgba(246, 236, 216, 0.5); padding-left: 1.25rem; }
.row-num {
  font-family: "Stardos Stencil", Georgia, serif; font-size: 2rem; color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
}
.row-body h3 { font-size: var(--step-1); margin-bottom: 0.4rem; }
.row-body p { color: var(--ink-soft); max-width: 62ch; }
.row-arrow { font-size: 1.6rem; color: var(--red); transition: transform 0.2s var(--ease); }
.service-row:hover .row-arrow { transform: translateX(8px); }
.inline-call {
  display: inline-block; margin-top: 2.5rem; font-weight: 700; font-size: 1.1rem;
  color: var(--red); text-decoration: none; border-bottom: 3px solid var(--red);
  padding-bottom: 0.2rem; transition: gap 0.2s;
}
.inline-call:hover { color: var(--red-deep); }

/* ---------- flap-fold divider ---------- */
.flap-divider { background: var(--kraft); line-height: 0; }
.flap-divider svg { width: 100%; height: auto; }
.flap { transition: transform 0.7s var(--ease); transform-box: fill-box; }
.flap-left { transform-origin: 12% 50%; }
.flap-right { transform-origin: 88% 50%; }
.js .flap-left { transform: rotate(26deg); }
.js .flap-right { transform: rotate(-26deg); }
.js .flap-divider.folded .flap-left, .js .flap-divider.folded .flap-right { transform: rotate(0deg); }
.js .seal { opacity: 0; transform: scale(1.6); transform-box: fill-box; transform-origin: center; transition: opacity 0.35s var(--ease), transform 0.45s var(--ease); }
.js .flap-divider.folded .seal { opacity: 1; transform: scale(1); transition-delay: 0.35s; }

/* ---------- proof ---------- */
.proof { background: var(--kraft-deep); border-top: 3px solid var(--ink); }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: stretch; }
.proof-featured, .proof-card {
  background: var(--cream); border: 2px solid var(--ink); border-radius: 6px;
  padding: 2rem; position: relative;
  box-shadow: 5px 5px 0 rgba(43,33,25,0.2);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.proof-featured:hover, .proof-card:hover { transform: translateY(-5px); box-shadow: 8px 10px 0 rgba(43,33,25,0.22); }
.proof-featured { display: flex; flex-direction: column; justify-content: center; }
.proof-date { font-family: "Stardos Stencil", Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 0.5rem; }
.proof-featured .proof-date { font-size: clamp(2.4rem, 4.5vw, 3.6rem); color: var(--red); }
.proof-kind { font-weight: 600; color: var(--ink-soft); margin-bottom: 0.75rem; }
.proof-note { color: var(--ink-soft); font-size: 0.98rem; max-width: 38ch; }
.proof-side { display: grid; gap: 1.5rem; }
.stamp {
  display: inline-block; font-family: "Stardos Stencil", Georgia, serif; font-size: 0.85rem;
  letter-spacing: 0.08em; padding: 0.35rem 0.7rem; border: 3px solid; border-radius: 4px;
  transform: rotate(-4deg); margin-top: 1.25rem; width: max-content;
}
.stamp-red { color: var(--red); border-color: var(--red); }
.stamp-ink { color: var(--ink); border-color: var(--ink); }

/* ---------- tape-pull wipe divider ---------- */
.tape-divider { background: var(--kraft-deep); padding: 2.5rem 0; overflow: hidden; }
.tape-wipe {
  background: rgba(246, 236, 216, 0.85);
  border-top: 2px dashed var(--red); border-bottom: 2px dashed var(--red);
  padding: 0.9rem 0; overflow: hidden; white-space: nowrap;
  transform-origin: left center;
}
.js .tape-wipe { transform: scaleX(0); }
.js .tape-wipe.pulled { transform: scaleX(1); transition: transform 0.75s var(--ease); }
.tape-text {
  font-family: "Stardos Stencil", Georgia, serif; font-size: 1rem; letter-spacing: 0.1em;
  color: var(--ink-soft);
}

/* ---------- process ---------- */
.process { background: var(--kraft); }
.steps { list-style: none; margin: 0; padding: 2.5rem 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 3px solid var(--ink); }
.step { padding: 1.5rem 1.5rem 0 0; position: relative; }
.step + .step { padding-left: 1.5rem; border-left: 2px dashed var(--line); }
.step-num {
  font-family: "Stardos Stencil", Georgia, serif; font-size: 3.2rem; color: transparent;
  -webkit-text-stroke: 1.5px var(--ink); display: block; margin-bottom: 0.75rem;
  transition: color 0.25s var(--ease);
}
.step:hover .step-num { color: var(--red); -webkit-text-stroke: 1.5px var(--red); }
.step h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- stamp-in divider ---------- */
.stamp-divider { background: var(--kraft); display: flex; justify-content: center; padding: 1rem 0 0.5rem; }
.big-stamp { width: min(320px, 70vw); height: auto; }
.js .big-stamp { opacity: 0; transform: scale(1.7) rotate(-14deg); }
.js .stamp-divider.stamped .big-stamp { opacity: 1; transform: scale(1) rotate(-7deg); transition: opacity 0.3s var(--ease), transform 0.5s var(--ease); }

/* ---------- service area ---------- */
.area { background: var(--kraft); padding-top: clamp(2rem, 5vw, 4rem); }
.label-card {
  background: var(--cream); border: 3px solid var(--ink); border-radius: 6px;
  box-shadow: 7px 7px 0 rgba(43,33,25,0.2);
  max-width: 760px;
}
.label-head {
  display: flex; justify-content: space-between; gap: 1rem;
  font-family: "Stardos Stencil", Georgia, serif; letter-spacing: 0.06em;
  border-bottom: 3px solid var(--ink); padding: 1rem 1.75rem;
}
.label-head span:last-child { color: var(--red); }
.label-rows { padding: 0.5rem 1.75rem; }
.label-row {
  display: grid; grid-template-columns: 90px 1fr; gap: 1rem; align-items: baseline;
  padding: 1.1rem 0; border-bottom: 2px dashed var(--line);
}
.label-row span { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; color: var(--ink-faint); }
.label-row strong { font-size: 1.25rem; font-weight: 700; }
.label-note { padding: 1.25rem 1.75rem 1.75rem; color: var(--ink-soft); max-width: 58ch; }

/* ---------- FAQ ---------- */
.faq { background: var(--kraft-deep); border-top: 3px solid var(--ink); }
.faq-list { border-top: 3px solid var(--ink); }
.faq-item { border-bottom: 2px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: "Stardos Stencil", Georgia, serif; font-size: 1.25rem; color: var(--ink);
  padding: 1.5rem 0.25rem;
}
.faq-q:hover { color: var(--red); }
.faq-icon { position: relative; width: 22px; height: 22px; flex: none; }
.faq-icon span { position: absolute; background: var(--red); border-radius: 2px; transition: transform 0.25s var(--ease); }
.faq-icon span:first-child { left: 0; top: 10px; width: 22px; height: 3px; }
.faq-icon span:last-child { left: 10px; top: 0; width: 3px; height: 22px; }
.faq-item.open .faq-icon span:last-child { transform: scaleY(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a p { padding: 0 0.25rem 1.75rem; color: var(--ink-soft); max-width: 64ch; }
.faq-a a { color: var(--red); font-weight: 700; }

/* ---------- final CTA ---------- */
.final-cta {
  background: var(--red); color: var(--cream);
  padding: var(--pad-section) 0; text-align: left; position: relative; overflow: hidden;
}
.final-cta::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
.final-cta .container { position: relative; z-index: 1; }
.cta-title { font-size: clamp(2.8rem, 7vw, 5.5rem); margin-bottom: 1rem; }
.cta-title em { color: var(--cream); }
.cta-sub { font-size: var(--step-1); opacity: 0.92; margin-bottom: 2rem; max-width: 52ch; }
.cta-phone {
  display: inline-block; font-family: "Stardos Stencil", Georgia, serif;
  font-size: clamp(2.6rem, 9vw, 6rem); color: var(--cream); text-decoration: none;
  font-variant-numeric: tabular-nums; letter-spacing: 0.01em; line-height: 1;
  margin-bottom: 2.25rem; border-bottom: 5px solid var(--cream); padding-bottom: 0.4rem;
  transition: transform 0.2s var(--ease);
}
.cta-phone:hover { transform: scale(1.02); }
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.cta-fine { font-size: 0.95rem; opacity: 0.85; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--kraft); padding: 3rem 0 4rem; }
.footer-inner { display: grid; gap: 0.75rem; }
.footer-brand { font-family: "Stardos Stencil", Georgia, serif; font-size: 1.4rem; letter-spacing: 0.04em; }
.footer-lines { color: var(--kraft); opacity: 0.85; line-height: 1.8; }
.footer-lines a { color: var(--kraft); }
.footer-preview { font-size: 0.85rem; opacity: 0.55; margin-top: 0.5rem; }

/* ---------- mobile call bar ---------- */
.mobile-callbar { display: none; }

/* ---------- scroll reveals (JS-gated) ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.in { opacity: 1; transform: translateY(0); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.js .reveal.in[data-d="1"] { transition-delay: 0.09s; }
.js .reveal.in[data-d="2"] { transition-delay: 0.18s; }
.js .reveal.in[data-d="3"] { transition-delay: 0.27s; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero { min-height: 0; }
  .hero-art { order: 2; }
  .box-art { width: min(78vw, 380px); }
  .steps { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .step + .step { padding-left: 0; border-left: none; }
  .proof-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .site-nav { display: none; }
  .header-inner { gap: 1rem; }
  .header-call { margin-left: auto; font-size: 0.95rem; padding: 0.55rem 0.9rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .step { border-top: 2px dashed var(--line); padding-top: 1.5rem; }
  .step:first-child { border-top: none; padding-top: 0; }
  .label-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .service-row { grid-template-columns: 56px 1fr 32px; gap: 1rem; }
  .row-num { font-size: 1.5rem; }
  body { padding-bottom: 76px; }
  .mobile-callbar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    background: var(--ink); padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 10px; border-top: 3px solid var(--red);
  }
  .mc-call, .mc-email {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    text-decoration: none; font-weight: 700; border-radius: 5px; min-height: 48px;
  }
  .mc-call { flex: 1.6; background: var(--red); color: var(--cream); font-variant-numeric: tabular-nums; }
  .mc-call svg { width: 20px; height: 20px; }
  .mc-email { flex: 1; background: transparent; color: var(--cream); border: 2px solid var(--cream); }
}

/* ---------- reduced motion ---------- */
@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; }
  .tape-track { animation: none; }
  .js .hero-eyebrow, .js .hero-sub, .js .hero-ctas, .js .trust-row, .js .hero-art,
  .js .reveal, .js .tape-wipe, .js .big-stamp { opacity: 1 !important; transform: none !important; }
  .js .hero-title .w > span { transform: none !important; }
  .js .flap-left, .js .flap-right { transform: none !important; }
  .js .seal { opacity: 1 !important; transform: none !important; }
}
