/* ============================================================
   Qwik Tape — "Dispatch" design system
   Warehouse/shipping-label identity: ink + warm label paper,
   brand scarlet, caution-yellow + kraft accents.
   Display: Oswald · Body: DM Sans · Mono: Space Mono
   ============================================================ */

:root {
  --ink:        #1a1714;
  --ink-2:      #36302a;
  --ink-3:      #5c554d;
  --paper:      #f6f2ea;
  --paper-2:    #efe8db;
  --paper-3:    #e5dcc9;
  --white:      #fffdf8;

  /* Brand scarlet */
  --red:        #d51f17;
  --red-dark:   #a8150f;
  --red-deep:   #7d0f0b;

  /* Accents */
  --yellow:     #f5c518;   /* caution / barricade */
  --kraft:      #c89456;   /* corrugated */
  --kraft-dark: #8a5a2b;
  --kraft-deep: #5e3b1c;

  --line:       rgba(26,23,20,.12);
  --line-2:     rgba(26,23,20,.22);
  --line-light: rgba(255,253,248,.16);
  --shadow-sm:  0 1px 2px rgba(26,23,20,.06), 0 2px 8px rgba(26,23,20,.06);
  --shadow:     0 4px 14px rgba(26,23,20,.10), 0 14px 36px rgba(26,23,20,.12);
  --shadow-lg:  0 10px 28px rgba(26,23,20,.14), 0 30px 70px rgba(26,23,20,.22);

  --display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --body:    "DM Sans", system-ui, -apple-system, sans-serif;
  --mono:    "Space Mono", ui-monospace, monospace;

  --wrap: 1200px;
  --gut: clamp(1.1rem, 4vw, 2rem);
  --radius: 4px;
  --radius-lg: 8px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: var(--ink);
}

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

/* Offset anchor-jump targets below the sticky header */
:target, section[id], [id].section { scroll-margin-top: 96px; }
.eyebrow {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 700; color: var(--red);
  display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; background: currentColor; }
.eyebrow.center { justify-content: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 50%; top: -60px; transform: translateX(-50%); background: var(--ink); color: var(--white); padding: .7rem 1.2rem; border-radius: 0 0 var(--radius) var(--radius); z-index: 200; transition: top .2s; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  font-size: 1rem; padding: .85em 1.6em; border-radius: var(--radius);
  border: 2px solid transparent; transition: transform .18s var(--ease), background .2s, box-shadow .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--red-dark); box-shadow: var(--shadow); transform: translateY(-2px); }
.btn-accent { background: var(--yellow); color: var(--ink); }
.btn-accent:hover { background: #ffd02e; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-on-dark.btn-ghost { color: var(--white); border-color: var(--line-light); }
.btn-on-dark.btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn svg { width: 1.05em; height: 1.05em; }

/* ---------- Caution stripe + registration marks (motifs) ---------- */
.caution-stripe {
  height: 10px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 18px, var(--ink) 18px 36px);
}
.regmark { position: absolute; width: 16px; height: 16px; pointer-events: none; opacity: .5; }
.regmark::before, .regmark::after { content: ""; position: absolute; background: currentColor; }
.regmark::before { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.regmark::after { top: 50%; left: 0; height: 1.5px; width: 100%; transform: translateY(-50%); }

/* ============================================================
   HEADER
   ============================================================ */
.topbar { background: var(--ink); color: var(--paper); font-family: var(--mono); font-size: .74rem; letter-spacing: .03em; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .5rem 0; }
.topbar a { color: var(--paper); transition: color .2s; }
.topbar a:hover { color: var(--yellow); }
.topbar .tb-right { display: flex; gap: 1.4rem; align-items: center; }
.topbar .dot { color: var(--yellow); }
@media (max-width: 720px){ .topbar .tb-hide { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,242,234,.88);
  backdrop-filter: saturate(160%) blur(10px); -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(246,242,234,.96); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .6rem 0; }

.brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.5rem; letter-spacing: .01em; line-height: .9; text-transform: uppercase; }
.brand-name span { color: var(--red); }
.brand-sub { display: block; font-family: var(--mono); font-size: .56rem; letter-spacing: .22em; color: var(--ink-3); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: .2rem; list-style: none; padding: 0; }
.nav-links a {
  display: block; padding: .55rem .85rem; border-radius: var(--radius);
  font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: .03em;
  font-size: .98rem; color: var(--ink-2); transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--red); background: rgba(213,31,23,.07); }
.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--mono); font-weight: 700; font-size: .9rem; color: var(--ink); padding: .4rem .2rem; }
.nav-phone:hover { color: var(--red); }
.nav-phone svg { width: 1em; height: 1em; color: var(--red); }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: var(--radius); background: var(--white); align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px){
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: .5rem var(--gut) 1.2rem;
    box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .25s var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .9rem .4rem; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .nav-links .m-cta { margin-top: .9rem; }
  .nav-links .m-cta .btn { width: 100%; }
  .nav .nav-cta .btn-accent { display: none; }
  .nav .nav-phone { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--ink); color: var(--paper); padding: clamp(3rem,7vw,5.5rem) 0 clamp(3.5rem,8vw,6.5rem); }
.hero::before { content: ""; position: absolute; inset: 0; background: url("images/boxes-branded.jpg") center/cover no-repeat; opacity: .22; filter: contrast(1.05) saturate(.9); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,17,14,.96) 0%, rgba(20,17,14,.84) 48%, rgba(20,17,14,.5) 100%); }
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.hero-eyebrow { color: var(--yellow); }
.hero h1 { color: var(--white); font-size: clamp(2.7rem,6.6vw,5rem); margin: 1rem 0 .3rem; line-height: .98; }
.hero h1 .hl { color: var(--red); }
.hero h1 .hl-y { color: var(--yellow); }
.hero-lead { font-family: var(--body); text-transform: none; font-size: clamp(1.05rem,1.7vw,1.28rem); color: rgba(246,242,234,.84); max-width: 36ch; margin: 1.2rem 0 1.9rem; line-height: 1.55; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid var(--line-light); }
.hero-trust .ht { display: flex; flex-direction: column; }
.hero-trust .ht b { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--white); line-height: 1; }
.hero-trust .ht span { font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; color: rgba(246,242,234,.6); margin-top: .35rem; text-transform: uppercase; }

/* hero product card with tape-strip motif */
.hero-art { position: relative; justify-self: center; width: min(420px, 86vw); }
.hero-photo { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border: 1px solid rgba(255,255,255,.16); }
.tape-strip {
  position: absolute; left: -22px; bottom: 38px; transform: rotate(-5deg);
  background: var(--red); color: var(--white); font-family: var(--display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; font-size: 1rem; padding: .55rem 1.4rem;
  box-shadow: var(--shadow); border-top: 2px dashed rgba(255,255,255,.5); border-bottom: 2px dashed rgba(255,255,255,.5);
}
.tape-strip.y { background: var(--yellow); color: var(--ink); left: auto; right: -16px; bottom: auto; top: 26px; transform: rotate(4deg); }

@media (max-width: 880px){
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { justify-self: start; margin-top: .5rem; width: min(360px, 90vw); }
}

/* ============================================================
   BENEFIT BADGES
   ============================================================ */
.badges { background: var(--white); border-bottom: 1px solid var(--line); }
.badges .wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.badge { display: flex; gap: 1rem; align-items: flex-start; padding: 2rem clamp(1rem,2.4vw,1.8rem); }
.badge + .badge { border-left: 1px solid var(--line); }
.badge-ico { flex-shrink: 0; width: 50px; height: 50px; border-radius: var(--radius); background: rgba(213,31,23,.08); color: var(--red); display: grid; place-items: center; }
.badge-ico svg { width: 26px; height: 26px; }
.badge h3 { font-size: 1.2rem; letter-spacing: .02em; }
.badge p { font-size: .92rem; color: var(--ink-3); margin-top: .35rem; }
@media (max-width: 760px){
  .badges .wrap { grid-template-columns: 1fr; }
  .badge + .badge { border-left: 0; border-top: 1px solid var(--line); }
  .badge { padding: 1.4rem .2rem; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(3.5rem,8vw,6.5rem) 0; }
.section.tight { padding: clamp(2.6rem,5vw,4rem) 0; }
.section-head { max-width: 64ch; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem,4.6vw,3.2rem); margin: .7rem 0 .6rem; }
.section-head p { font-size: 1.08rem; color: var(--ink-3); }
.bg-paper2 { background: var(--paper-2); }
.bg-white { background: var(--white); }
.bg-ink { background: var(--ink); color: var(--paper); }
.bg-ink h2, .bg-ink h3 { color: var(--white); }
.bg-ink .section-head p { color: rgba(246,242,234,.72); }
.bg-kraft { background: var(--kraft-deep); color: var(--paper); }
.bg-kraft h2, .bg-kraft h3 { color: var(--white); }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px,1fr)); gap: 1.4rem; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .26s var(--ease), box-shadow .26s, border-color .26s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card-media { position: relative; aspect-ratio: 4/3; background: var(--paper-3); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-tag { position: absolute; top: .8rem; left: .8rem; z-index: 2; font-family: var(--mono); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; background: var(--ink); color: var(--white); padding: .3rem .6rem; border-radius: 3px; }
.card-tag.red { background: var(--red); }
.card-tag.yellow { background: var(--yellow); color: var(--ink); }
.card-body { padding: 1.3rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.3rem; letter-spacing: .02em; }
.card-body p { font-family: var(--body); text-transform: none; font-size: .93rem; color: var(--ink-3); margin: .5rem 0 1rem; flex: 1; line-height: 1.55; }
.card-link { font-family: var(--mono); font-size: .8rem; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: .35em; text-transform: uppercase; letter-spacing: .04em; }
.card-link svg { width: .9em; height: .9em; transition: transform .2s; }
.card:hover .card-link svg { transform: translateX(3px); }

/* ============================================================
   SPLIT / EDITORIAL
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3.2; object-fit: cover; }
.split-body h2 { font-size: clamp(1.9rem,3.8vw,2.8rem); margin: .7rem 0 1rem; }
.split-body p { font-family: var(--body); text-transform: none; color: var(--ink-3); margin-bottom: 1rem; line-height: 1.6; }
.bg-ink .split-body p, .bg-kraft .split-body p { color: rgba(246,242,234,.8); }
.check-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .8rem; margin: 1.4rem 0 1.8rem; }
.check-list li { font-family: var(--body); text-transform: none; display: flex; gap: .7rem; align-items: flex-start; font-size: .98rem; }
.check-list svg { width: 1.3em; height: 1.3em; color: var(--red); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; gap: 2rem; } .split.flip .split-media { order: 0; } }

/* ============================================================
   SPEC SHEET
   ============================================================ */
.spec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.spec { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.5rem; position: relative; }
.spec .spec-n { font-family: var(--mono); font-size: .74rem; color: var(--red); letter-spacing: .08em; }
.spec h3 { font-size: 1.35rem; margin: .5rem 0 .2rem; letter-spacing: .02em; }
.spec p { font-family: var(--body); text-transform: none; font-size: .92rem; color: var(--ink-3); line-height: 1.55; }
.spec ul { list-style: none; padding: 0; margin: .7rem 0 0; }
.spec ul li { font-family: var(--mono); font-size: .8rem; color: var(--ink-2); padding: .35rem 0; border-top: 1px dashed var(--line); }
@media (max-width: 760px){ .spec-grid { grid-template-columns: 1fr; } }

/* color swatch row */
.swatches { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .8rem; }
.swatch { width: 34px; height: 34px; border-radius: 4px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.18); }
.swatch.label { width: auto; padding: 0 .6rem; display: inline-flex; align-items: center; font-family: var(--mono); font-size: .72rem; box-shadow: inset 0 0 0 1px var(--line-2); color: var(--ink-3); }

/* ============================================================
   QUOTE / CTA CARD
   ============================================================ */
.quote-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(1.6rem,4vw,3rem); align-items: stretch; }
@media (max-width: 900px){ .quote-wrap { grid-template-columns: 1fr; } }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem 1.5rem; position: relative; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--display); font-weight: 700; font-size: 2.4rem; color: var(--paper-3); line-height: 1; display: block; margin-bottom: .5rem; }
.step h3 { font-size: 1.2rem; letter-spacing: .02em; }
.step p { font-family: var(--body); text-transform: none; color: var(--ink-3); font-size: .93rem; margin-top: .5rem; line-height: 1.55; }
@media (max-width: 760px){ .steps { grid-template-columns: 1fr; } }

.order-card { background: var(--red); color: var(--paper); border-radius: var(--radius-lg); padding: 1.9rem 1.8rem; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.order-card h3 { color: var(--white); font-size: 1.5rem; letter-spacing: .02em; }
.order-card p { font-family: var(--body); text-transform: none; color: rgba(255,253,248,.9); font-size: .95rem; margin: .7rem 0 1.2rem; line-height: 1.55; }
.order-card .oc-row { font-family: var(--body); text-transform: none; display: flex; gap: .7rem; align-items: center; padding: .7rem 0; border-top: 1px solid rgba(255,255,255,.18); font-size: .95rem; }
.order-card .oc-row svg { width: 1.2em; height: 1.2em; color: var(--yellow); flex-shrink: 0; }
.order-card .btn { width: 100%; margin-top: 1.3rem; }
.order-card .oc-phone { font-family: var(--mono); font-weight: 700; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.gallery a { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; background: var(--paper-3); display: block; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery a:hover img { transform: scale(1.07); }
.gallery a::after { content: attr(data-cap); position: absolute; inset: auto 0 0 0; padding: 1.4rem .7rem .5rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .03em; color: var(--white); background: linear-gradient(transparent, rgba(20,17,14,.82)); opacity: 0; transition: opacity .3s; }
.gallery a:hover::after { opacity: 1; }
@media (max-width: 720px){ .gallery { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 1.3rem 3rem 1.3rem 0; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .02em; font-size: 1.12rem; color: var(--ink); position: relative; }
.faq-q::after { content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--red); font-weight: 400; transition: transform .3s; font-family: var(--body); }
.faq-q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 0 1.4rem; color: var(--ink-3); font-family: var(--body); text-transform: none; line-height: 1.6; }
.faq-a-inner p + p { margin-top: .7rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { position: relative; overflow: hidden; text-align: center; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: url("images/boxes-marketing.jpg") center/cover; opacity: .16; }
.cta-banner .wrap { position: relative; z-index: 2; }
.cta-banner h2 { font-size: clamp(2.1rem,5.2vw,3.6rem); }
.cta-banner p { font-family: var(--body); text-transform: none; color: rgba(246,242,234,.84); max-width: 54ch; margin: 1rem auto 2rem; font-size: 1.1rem; line-height: 1.55; }
.cta-banner .hero-cta { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(246,242,234,.72); padding: clamp(3rem,6vw,4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2rem; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { font-family: var(--body); text-transform: none; margin: 1rem 0; max-width: 34ch; font-size: .92rem; line-height: 1.6; }
.footer-col h4 { color: var(--white); font-family: var(--mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a, .footer-col address { font-family: var(--body); text-transform: none; color: rgba(246,242,234,.72); font-size: .92rem; font-style: normal; transition: color .2s; line-height: 1.7; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line-light); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-family: var(--mono); font-size: .74rem; color: rgba(246,242,234,.5); }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.mobile-bar { display: none; }
@media (max-width: 760px){
  .mobile-bar { display: grid; grid-template-columns: 1fr 1fr; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--white); border-top: 1px solid var(--line-2); box-shadow: 0 -4px 18px rgba(26,23,20,.12); }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; font-size: .98rem; }
  .mobile-bar a svg { width: 1.1em; height: 1.1em; }
  .mobile-bar .mb-call { color: var(--ink); }
  .mobile-bar .mb-quote { background: var(--red); color: var(--white); }
  body { padding-bottom: 56px; }
}

/* ============================================================
   FORMS
   ============================================================ */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem,3vw,2.4rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: .03em; font-size: .82rem; margin-bottom: .4rem; }
.field input, .field textarea, .field select { width: 100%; padding: .8rem .9rem; border: 1px solid var(--line-2); border-radius: var(--radius); font: inherit; background: var(--paper); color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(213,31,23,.14); }
.field textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px){ .form-row { grid-template-columns: 1fr; } }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }

.info-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1.3rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-ico { width: 44px; height: 44px; border-radius: var(--radius); background: rgba(213,31,23,.08); color: var(--red); display: grid; place-items: center; flex-shrink: 0; }
.info-ico svg { width: 22px; height: 22px; }
.info-list h3 { font-size: 1.1rem; letter-spacing: .02em; }
.info-list a, .info-list address { font-family: var(--body); text-transform: none; color: var(--ink-3); font-style: normal; line-height: 1.6; }
.info-list a:hover { color: var(--red); }

/* stat grid */
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.stat { text-align: center; padding: 1.6rem 1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.stat b { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(1.9rem,4vw,2.7rem); color: var(--red); line-height: 1; }
.stat span { font-family: var(--mono); font-size: .74rem; letter-spacing: .05em; color: var(--ink-3); margin-top: .5rem; display: block; text-transform: uppercase; }
@media (max-width: 680px){ .stat-grid { grid-template-columns: 1fr 1fr; } }

/* page hero */
.page-hero { background: var(--ink); color: var(--paper); padding: clamp(2.6rem,5vw,4.2rem) 0; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: url("images/kraft-rolls.jpg") center/cover; opacity: .14; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem,5vw,3.6rem); margin: .7rem 0 .5rem; }
.page-hero p { font-family: var(--body); text-transform: none; color: rgba(246,242,234,.8); max-width: 56ch; font-size: 1.08rem; line-height: 1.55; }
.crumbs { font-family: var(--mono); font-size: .76rem; color: rgba(246,242,234,.6); display: flex; gap: .5rem; }
.crumbs a:hover { color: var(--yellow); }

/* reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1; transform: none; transition: none; }
  .card:hover, .btn:hover, .gallery a:hover img { transform: none; }
}
.prose { max-width: 70ch; }
.prose p { font-family: var(--body); text-transform: none; margin-bottom: 1.1rem; color: var(--ink-2); line-height: 1.65; }
