/* =================================================================
   ATLANTIC BUSINESS FORMS & LABELS
   "The Press Room" — heritage print-house design system
   Hand-built. Zero frameworks.
   ================================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Ink + paper */
  --ink:        #15180f;
  --ink-soft:   #3c4034;
  --muted:      #6a6e5f;
  --paper:      #f7f4ec;
  --paper-2:    #efeadd;
  --paper-3:    #e6e0cf;
  --card:       #fcfaf3;
  --white:      #ffffff;

  /* Brand greens (evolved from the legacy #008752) */
  --pine:       #114b33;
  --pine-700:   #0d3a28;
  --pine-900:   #06231a;
  --leaf:       #2e9e6b;
  --leaf-soft:  #e0efe6;

  /* Warm accent */
  --copper:     #bd6b3c;
  --copper-soft:#f1e1d4;

  /* Lines */
  --line:        rgba(21, 24, 15, 0.12);
  --line-strong: rgba(21, 24, 15, 0.22);
  --line-light:  rgba(247, 244, 236, 0.18);

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Metrics */
  --wrap: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 14px;
  --radius-lg: 22px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(21, 24, 15, 0.06);
  --shadow-md: 0 18px 50px -22px rgba(21, 24, 15, 0.28);
  --shadow-lg: 0 40px 90px -40px rgba(21, 24, 15, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--leaf); color: var(--white); }

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

.skip-link {
  position: absolute;
  left: 1rem; top: -120%;
  z-index: 200;
  background: var(--pine);
  color: var(--paper);
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- 3. Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); position: relative; }

/* ---------- 4. Typography primitives ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 1.4rem;
}
.eyebrow--light { color: var(--leaf); }
.eyebrow__rule {
  width: 2.2rem; height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-optical-sizing: auto;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 18ch;
  text-wrap: balance;
}
.section-title--light { color: var(--paper); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-intro {
  margin-top: 1.4rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* tidy ragged line-endings on running copy */
.hero__lead, .section-intro, .intro__body p, .craft__intro,
.trucking__lead, .contact__lead, .coverage__text, .heritage__text,
.cap__desc, .step p, .tl__text, .craft__item p {
  text-wrap: pretty;
}

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-bg: var(--pine);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: 100px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  position: relative;
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s var(--ease);
  will-change: transform;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn--primary { box-shadow: 0 10px 24px -12px rgba(13, 58, 40, 0.85); }
.btn--primary:hover { background: var(--pine-700); transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(13, 58, 40, 0.9); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--pine); color: var(--pine); transform: translateY(-2px); }
.btn--ghost:hover svg { transform: translateX(4px); }

.btn--paper {
  --btn-bg: var(--paper);
  --btn-fg: var(--pine-900);
}
.btn--paper:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -16px rgba(0,0,0,0.5); background: var(--white); }

.btn--sm { padding: 0.65rem 1.2rem; font-size: 0.88rem; }
.btn--block { width: 100%; padding-block: 1.05rem; }

/* ---------- 6. Top bar ---------- */
.topbar {
  background: var(--pine-900);
  color: var(--paper);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: 0.55rem;
}
.topbar__tag { display: flex; align-items: center; gap: 0.6rem; color: rgba(247,244,236,0.85); }
.topbar .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 0 rgba(46,158,107,0.7);
  animation: pulse 2.6s infinite;
}
.topbar__contact { display: flex; align-items: center; gap: 0.7rem; }
.topbar__contact a { color: rgba(247,244,236,0.9); transition: color 0.2s; font-weight: 500; }
.topbar__contact a:hover { color: var(--leaf); }
.topbar__sep { opacity: 0.4; }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,158,107,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(46,158,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,158,107,0); }
}

/* ---------- 7. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 236, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: 0.85rem;
}

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__mark { flex: none; display: grid; place-items: center; }
.brand__mark svg { overflow: visible; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand__sub {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.brand--light .brand__name { color: var(--paper); }
.brand__sub--light { color: rgba(247,244,236,0.6); }

.nav { display: flex; gap: 2rem; }
.nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.2s;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--pine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--pine); }
.nav a:hover::after { transform: scaleX(1); }

.site-header__cta { display: flex; align-items: center; gap: 0.8rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 2px; border-radius: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 8. Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 90;
  background: var(--paper);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu.is-open { opacity: 1; }
.mobile-menu[hidden] { display: none; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu__nav a {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 8vw, 2.6rem);
  font-weight: 500;
  color: var(--ink);
  padding-block: 0.35rem;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.3s var(--ease);
}
.mobile-menu__nav a:hover { color: var(--pine); padding-left: 0.6rem; }
.mobile-menu__foot { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }
.mobile-menu__phone { font-weight: 600; color: var(--pine); font-size: 1.1rem; }

/* ---------- 9. Crop marks (print motif) ---------- */
.cropmark {
  position: absolute;
  width: 22px; height: 22px;
  pointer-events: none;
  --c: var(--line-strong);
}
.cropmark--light { --c: rgba(247,244,236,0.4); }
.cropmark::before, .cropmark::after { content: ""; position: absolute; background: var(--c); }
.cropmark::before { width: 1px; height: 100%; }
.cropmark::after  { height: 1px; width: 100%; }
.cropmark--tl { top: 28px; left: 28px; }
.cropmark--tr { top: 28px; right: 28px; }
.cropmark--tr::before { right: 0; } .cropmark--tr::after { right: 0; }
.cropmark--br { bottom: 28px; right: 28px; }
.cropmark--br::before { right: 0; bottom: 0; } .cropmark--br::after { right: 0; bottom: 0; }

/* ---------- 10. Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(46,158,107,0.07), transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  overflow: hidden;
}
.hero::before {
  /* faint baseline grid, the printer's grid */
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(to bottom, transparent 0 35px, rgba(21,24,15,0.025) 35px 36px);
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-optical-sizing: auto;
  font-size: clamp(2.7rem, 6vw, 5.1rem);
  line-height: 0.99;
  letter-spacing: -0.025em;
  margin-block: 0.2em 0.55em;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--pine);
  position: relative;
}
.hero__title em::after {
  content: "";
  position: absolute; left: 0; bottom: 0.08em;
  width: 100%; height: 0.09em;
  background: var(--copper);
  opacity: 0.55;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline 1s var(--ease) 0.6s forwards;
}
@keyframes underline { to { transform: scaleX(1); } }

.hero__lead {
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.65;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__chips {
  display: flex; flex-wrap: wrap; gap: 0.6rem 0.5rem;
  margin-top: 2.6rem;
}
.hero__chips li {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.45rem 0.95rem;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  border-radius: 100px;
  display: flex; align-items: center; gap: 0.5rem;
}
.hero__chips li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--leaf);
}

/* Hero visual — stacked print samples */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}
.paper {
  position: absolute;
  border-radius: 10px;
  background: var(--card);
  box-shadow: var(--shadow-md);
}
.paper--3 {
  inset: 16% 2% 8% 22%;
  background: var(--paper-3);
  transform: rotate(6deg);
  animation: float 7s ease-in-out infinite;
}
.paper--2 {
  inset: 8% 14% 14% 8%;
  background: linear-gradient(160deg, var(--white), var(--paper-2));
  transform: rotate(-4deg);
  padding: 1.4rem;
  display: flex; align-items: flex-end;
  animation: float 6s ease-in-out infinite reverse;
}
.paper--1 {
  inset: 14% 6% 6% 16%;
  transform: rotate(1.5deg);
  border: 1px solid var(--line);
  padding: 1.5rem 1.5rem 1.3rem;
  display: flex; flex-direction: column; justify-content: space-between;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: rotate(1.5deg) translateY(0); }
  50%      { transform: rotate(1.5deg) translateY(-12px); }
}
.paper--3 { animation-name: float3; }
@keyframes float3 { 0%,100%{transform:rotate(6deg) translateY(0);} 50%{transform:rotate(6deg) translateY(10px);} }
.paper--2 { animation-name: float2; }
@keyframes float2 { 0%,100%{transform:rotate(-4deg) translateY(0);} 50%{transform:rotate(-4deg) translateY(8px);} }

.swatch { display: flex; gap: 8px; }
.swatch span { width: 30px; height: 30px; border-radius: 5px; }
.swatch span:nth-child(1){ background: var(--pine); }
.swatch span:nth-child(2){ background: var(--leaf); }
.swatch span:nth-child(3){ background: var(--copper); }
.swatch span:nth-child(4){ background: var(--ink); }

.sample__head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1.5px solid var(--ink); padding-bottom: 0.6rem; }
.sample__kicker { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--pine); }
.sample__no { font-family: var(--serif); font-size: 0.85rem; color: var(--copper); }
.sample__rows { display: flex; flex-direction: column; gap: 0.7rem; margin: 1.1rem 0; }
.sample__rows span { height: 9px; border-radius: 3px; background: var(--paper-3); }
.sample__rows span.short { width: 55%; }
.sample__foot { display: flex; align-items: center; gap: 0.7rem; border-top: 1px dashed var(--line-strong); padding-top: 0.8rem; }
.sample__sig { font-family: var(--serif); font-style: italic; font-size: 0.8rem; color: var(--muted); }
.reg {
  width: 18px; height: 18px; flex: none;
  border-radius: 50%;
  border: 1.5px solid var(--copper);
  position: relative;
}
.reg::before, .reg::after { content: ""; position: absolute; background: var(--copper); }
.reg::before { width: 1px; height: 26px; left: 50%; top: -4px; transform: translateX(-50%); }
.reg::after  { height: 1px; width: 26px; top: 50%; left: -4px; transform: translateY(-50%); }

.hero__stamp {
  position: absolute;
  top: -6%; right: -2%;
  z-index: 5;
  width: 92px; height: 92px;
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: var(--copper);
  border: 2px solid var(--copper);
  border-radius: 50%;
  background: var(--paper);
  transform: rotate(-12deg);
  box-shadow: var(--shadow-sm);
}

/* ---------- 11. Marquee ---------- */
.marquee {
  background: var(--pine);
  color: var(--paper);
  overflow: hidden;
  padding-block: 1.05rem;
  border-block: 1px solid var(--pine-900);
}
.marquee__track {
  display: flex; align-items: center; gap: 2.2rem;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee__track span {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(247,244,236,0.92);
}
.marquee__dot { color: var(--leaf) !important; font-family: var(--sans) !important; font-size: 1rem !important; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- 12. Intro + stats ---------- */
.intro { padding-block: var(--section-y); }
.intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.intro__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.intro__body { font-size: 1.1rem; color: var(--ink-soft); display: flex; flex-direction: column; gap: 1.2rem; padding-top: 0.4rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(3rem, 6vw, 5rem);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--card);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.2rem, 2.5vw, 2rem);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.stat__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--pine);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.stat__num--text { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.stat__label { font-size: 0.9rem; color: var(--muted); max-width: 22ch; }
.stat__sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- 13. Capabilities ---------- */
.caps { background: var(--paper-2); }
.caps__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.1rem, 2vw, 1.6rem);
}
.cap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}
.cap::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--pine), var(--leaf));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.cap:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.cap:hover::after { transform: scaleX(1); }
.cap__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.cap__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--leaf-soft);
  color: var(--pine);
  transition: background 0.4s, color 0.4s;
}
.cap:hover .cap__icon { background: var(--pine); color: var(--paper); }
.cap__icon svg { width: 30px; height: 30px; }
.cap__index { font-family: var(--serif); font-size: 1.1rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.cap__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
}
.cap__desc { color: var(--ink-soft); font-size: 1rem; margin-bottom: 1.5rem; }
.cap__list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: auto; }
.cap__list li {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}
.cap__list strong {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--pine);
}
.cap__list span { font-size: 0.92rem; color: var(--muted); }
.cap__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.4rem;
  font-weight: 600; font-size: 0.92rem; color: var(--copper);
}
.cap__link svg { transition: transform 0.3s var(--ease); }
.cap__link:hover svg { transform: translateX(4px); }

/* ---------- 14. Craft (dark band) ---------- */
.craft {
  background: var(--pine-900);
  color: var(--paper);
  position: relative;
}
.craft::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(247,244,236,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.craft__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.craft__intro { color: rgba(247,244,236,0.75); font-size: 1.12rem; margin-block: 1.4rem 2rem; max-width: 44ch; }
.craft__list { display: flex; flex-direction: column; }
.craft__item {
  display: flex; gap: 1.4rem;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line-light);
}
.craft__item:last-child { border-bottom: 1px solid var(--line-light); }
.craft__no {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--leaf);
  border-radius: 50%;
  font-family: var(--serif);
  color: var(--leaf);
  font-size: 1.05rem;
}
.craft__item h3 { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; margin-bottom: 0.35rem; }
.craft__item p { color: rgba(247,244,236,0.7); font-size: 1rem; }

/* ---------- 15. Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 2.2rem; }
.step::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--line-strong);
}
.step::after {
  content: ""; position: absolute; top: -4px; left: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--pine);
}
.step__no {
  font-family: var(--serif); font-size: 0.95rem; color: var(--copper);
  font-variant-numeric: tabular-nums; letter-spacing: 0.05em;
}
.step__title { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; margin: 0.5rem 0 0.6rem; }
.step p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- 16. Trucking spotlight ---------- */
.trucking {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(46,158,107,0.18), transparent 50%),
    var(--pine-700);
  color: var(--paper);
  position: relative;
}
.trucking__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.trucking__lead { color: rgba(247,244,236,0.82); font-size: 1.15rem; margin-block: 1.4rem 2.2rem; max-width: 50ch; }
.trucking__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.trucking__list li {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1.25rem 1.3rem;
  background: rgba(6,35,26,0.35);
  font-weight: 500;
  font-size: 1rem;
}
.check {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--leaf);
  position: relative;
}
.check::after {
  content: ""; position: absolute; left: 7px; top: 4px;
  width: 5px; height: 10px;
  border: solid var(--pine-900); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---------- 17. Heritage ---------- */
.heritage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.heritage__year { color: var(--copper); font-style: italic; }
.heritage__text { margin-top: 1.5rem; font-size: 1.12rem; color: var(--ink-soft); max-width: 50ch; }
.heritage__affil {
  margin-top: 2.2rem; padding: 1.2rem 1.4rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--copper);
  border-radius: 0 12px 12px 0;
  background: var(--card);
  display: flex; flex-direction: column; gap: 0.2rem;
}
.heritage__affil-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--copper); font-weight: 600; }
.heritage__affil-name { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); }

.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ""; position: absolute; left: 5px; top: 8px; bottom: 8px;
  width: 2px; background: var(--line-strong);
}
.tl { position: relative; padding-bottom: 2.2rem; }
.tl:last-child { padding-bottom: 0; }
.tl::before {
  content: ""; position: absolute; left: -2rem; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--paper); border: 2.5px solid var(--pine);
  transform: translateX(0);
}
.tl__year {
  display: block;
  font-family: var(--serif); font-weight: 600;
  font-size: 1.2rem; color: var(--pine);
  margin-bottom: 0.3rem;
}
.tl__text { color: var(--ink-soft); font-size: 1rem; max-width: 44ch; }

/* ---------- 18. Coverage ---------- */
.coverage { background: var(--paper-2); }
.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.coverage__text { margin-top: 1.4rem; font-size: 1.1rem; color: var(--ink-soft); max-width: 44ch; }
.coverage__provinces {
  margin-top: 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem;
}
.coverage__provinces li {
  display: flex; align-items: center; gap: 0.8rem;
  font-weight: 500; color: var(--ink);
}
.coverage__abbr {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--pine); color: var(--paper);
  font-family: var(--serif); font-size: 0.95rem; font-weight: 600;
}
.coverage__map { display: grid; place-items: center; }
.mapframe {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--paper-3);
}
.mapframe > svg { width: 100%; height: 100%; display: block; }

/* hand-built downtown location map */
.locmap__land { fill: #e1e8dd; }
.locmap__blocks rect { fill: rgba(21, 24, 15, 0.05); }
.locmap__river { fill: #c5d4cf; }
.locmap__river-label { fill: rgba(34, 70, 58, 0.5); font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 0.16em; }
.locmap__streets line { stroke: var(--paper); stroke-width: 8; stroke-linecap: round; }
.locmap__streets .locmap__street--main { stroke-width: 12; }
.locmap__high { stroke: var(--copper); stroke-width: 8; stroke-linecap: round; }
.locmap__high-label { fill: var(--copper); font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; }
.locmap__pulse { fill: rgba(189, 107, 60, 0.22); transform-box: fill-box; transform-origin: center; animation: mapPulse 2.8s ease-out infinite; }
@keyframes mapPulse { 0% { transform: scale(0.45); opacity: 0.85; } 100% { transform: scale(1.5); opacity: 0; } }
.locmap__pin { fill: var(--copper); stroke: var(--paper); stroke-width: 2; }
.locmap__pin-dot { fill: var(--paper); }
.locmap__callout rect { fill: var(--pine); }
.locmap__callout path { fill: var(--pine); }
.locmap__callout-text { fill: var(--paper); font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-anchor: middle; }
.locmap__compass circle { fill: rgba(247, 244, 236, 0.75); stroke: rgba(21, 24, 15, 0.25); }
.locmap__compass path { fill: var(--copper); }
.locmap__compass text { fill: var(--ink-soft); font-family: var(--sans); font-size: 10px; font-weight: 700; text-anchor: middle; }
.locmap__area { fill: rgba(21, 24, 15, 0.45); font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; }

/* hairline inset so the map reads as a framed, designed element */
.mapframe::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(21, 24, 15, 0.07);
  pointer-events: none;
}

.coverage__find { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem 1.2rem; margin-top: 2.2rem; }
.coverage__loc { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--pine); font-size: 0.95rem; }
.coverage__pinico { color: var(--copper); flex: none; }

/* ---------- 19. Contact ---------- */
.contact {
  background: linear-gradient(160deg, var(--pine-900), var(--pine-700));
  color: var(--paper);
  position: relative;
}
.contact::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(247,244,236,0.025) 0 2px, transparent 2px 11px);
}
.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact__lead { color: rgba(247,244,236,0.8); font-size: 1.12rem; margin-block: 1.4rem 2.4rem; max-width: 42ch; }
.contact__details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact__details li {
  display: grid; grid-template-columns: 90px 1fr; gap: 1rem; align-items: baseline;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line-light);
}
.contact__label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--leaf); font-weight: 600; }
.contact__details a, .contact__details li > span:last-child { font-size: 1.1rem; color: var(--paper); transition: color 0.2s; }
.contact__details a:hover { color: var(--leaf); }

/* Quote form */
.quote {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.quote__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label {
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  letter-spacing: 0.01em;
}
.field__opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236a6e5f' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.95rem center; padding-right: 2.4rem; cursor: pointer;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pine);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46,158,107,0.13);
}
.field.is-invalid input, .field.is-invalid textarea { border-color: #c0492f; box-shadow: 0 0 0 4px rgba(192,73,47,0.1); }
.field__error { font-size: 0.78rem; color: #c0492f; min-height: 0; font-weight: 500; }
.quote__note { font-size: 0.9rem; text-align: center; color: var(--muted); min-height: 1.2em; }
.quote__note.is-success { color: var(--pine); font-weight: 600; }

/* ---------- 20. Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line-light);
}
.site-footer__blurb { color: rgba(247,244,236,0.55); font-size: 0.96rem; margin-top: 1.1rem; max-width: 32ch; }
.site-footer__col { display: flex; flex-direction: column; gap: 0.7rem; }
.site-footer__col h4 {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--leaf); font-weight: 600; margin-bottom: 0.5rem;
}
.site-footer__col a, .site-footer__col span { color: rgba(247,244,236,0.7); font-size: 0.95rem; transition: color 0.2s; }
.site-footer__col a:hover { color: var(--paper); }
.site-footer__addr { color: rgba(247,244,236,0.5) !important; }
.site-footer__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: 1.6rem; flex-wrap: wrap;
}
.site-footer__bar p { color: rgba(247,244,236,0.5); font-size: 0.85rem; }
.to-top { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: rgba(247,244,236,0.7); transition: color 0.2s; }
.to-top:hover { color: var(--leaf); }
.to-top svg { transition: transform 0.3s var(--ease); }
.to-top:hover svg { transform: translateY(-3px); }

/* ---------- 21. Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
/* stagger children of grids */
.caps__grid .cap:nth-child(2), .craft__list .craft__item:nth-child(2), .steps .step:nth-child(2) { transition-delay: 0.08s; }
.caps__grid .cap:nth-child(3), .steps .step:nth-child(3) { transition-delay: 0.16s; }
.caps__grid .cap:nth-child(4), .steps .step:nth-child(4) { transition-delay: 0.24s; }
.stats .stat:nth-child(2) { transition-delay: 0.07s; }
.stats .stat:nth-child(3) { transition-delay: 0.14s; }
.stats .stat:nth-child(4) { transition-delay: 0.21s; }

/* ---------- 22. Responsive ---------- */
@media (max-width: 1000px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 380px; margin-bottom: 1rem; }
  .intro__grid, .craft__grid, .trucking__grid, .heritage__grid, .coverage__grid, .contact__grid { grid-template-columns: 1fr; }
  .craft__head { max-width: 600px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .topbar__tag { display: none; }
  .topbar__inner { justify-content: center; }
  .site-header__cta .btn { display: none; }
  .brand__name { font-size: 1rem; }
  .brand__sub { font-size: 0.62rem; letter-spacing: 0.08em; }
  .brand__mark svg { width: 34px; height: 34px; }
  .caps__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat__sr { position: static; width: auto; height: auto; clip: auto; }
  .quote__row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trucking__list { grid-template-columns: 1fr; }
  .coverage__provinces { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
  .contact__details li { grid-template-columns: 1fr; gap: 0.2rem; }
  .hero__stamp { width: 76px; height: 76px; font-size: 0.72rem; }
}

@media (max-width: 420px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}

/* ---------- 23. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .paper { animation: none !important; }
  .hero__title em::after { transform: scaleX(1); }
}
