/* ==========================================================================
   A&S TIRE PROS — Heavy-Industrial Editorial
   Mobile Tire Service for Heavy Equipment · Calgary, AB
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Tokens ---------- */
:root {
  /* Warm editorial paper, deep ink navy, safety amber accent */
  --paper:        #F2EFE6;
  --paper-2:      #ECE7DA;
  --paper-shade:  #E2DCCB;
  --ink:          #0E1A2B;
  --ink-2:        #15243A;
  --steel:        #3E4A5D;
  --mute:         #6E7686;
  --line:         #CFC8B6;
  --line-soft:    #DDD6C3;
  --amber:        #E5A11A;
  --amber-2:      #F2B433;
  --rust:         #B0381D;
  --white:        #FFFFFF;

  --font-display: "Big Shoulders Display", "Saira Condensed", "Arial Narrow", sans-serif;
  --font-body:    "Manrope", "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, Consolas, monospace;

  --container: 1240px;
  --container-wide: 1380px;
  --gutter: clamp(22px, 4.4vw, 56px);

  --pad-section: clamp(90px, 12vw, 170px);
}

/* ---------- Base ---------- */
html, body { background: var(--paper); color: var(--ink); }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  /* Subtle paper grain */
  background-image:
    radial-gradient(circle at 0% 0%, rgba(14, 26, 43, 0.025), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(14, 26, 43, 0.018), transparent 50%);
  background-attachment: fixed;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 0.92;
  color: var(--ink);
  text-transform: uppercase;
}

p { color: var(--ink-2); }

::selection { background: var(--ink); color: var(--amber); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: var(--container-wide); }

/* ---------- Mono labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--amber);
}

/* ==========================================================================
   CALL BAR
   ========================================================================== */
.callbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.callbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 11px var(--gutter);
  max-width: var(--container-wide); margin-inline: auto;
}
.callbar__status {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--paper);
}
.callbar__pulse {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(229, 161, 26, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 161, 26, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(229, 161, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 161, 26, 0); }
}
.callbar__phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--amber);
  transition: color 150ms ease;
}
.callbar__phone:hover { color: var(--white); }

/* ==========================================================================
   NAV
   ========================================================================== */
.shop-nav {
  position: relative; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.shop-nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding-block: 24px;
  max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter);
}
.shop-nav__brand {
  display: inline-flex; align-items: baseline; gap: 12px;
  color: var(--ink);
}
.shop-nav__brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.shop-nav__brand-mark em {
  font-style: normal;
  color: var(--amber);
}
.shop-nav__brand-tag {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
}

.shop-nav__links { display: flex; align-items: center; gap: 38px; }
.shop-nav__link {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 2px;
  position: relative;
  transition: color 150ms ease;
}
.shop-nav__link:hover { color: var(--ink); }
.shop-nav__link.is-active { color: var(--ink); }
.shop-nav__link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--amber);
}

.shop-nav__toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  position: relative;
}
.shop-nav__toggle span,
.shop-nav__toggle span::before,
.shop-nav__toggle span::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 18px; height: 1.5px; background: var(--ink);
}
.shop-nav__toggle span { top: 50%; transform: translate(-50%, -50%); }
.shop-nav__toggle span::before { top: -6px; left: 0; transform: none; }
.shop-nav__toggle span::after  { top: 6px;  left: 0; transform: none; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  border: 1.5px solid var(--ink);
  transition: background 150ms ease, color 150ms ease, transform 150ms ease, border-color 150ms ease;
  position: relative;
}
.btn:hover { background: var(--amber); color: var(--ink); border-color: var(--amber); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--amber {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.btn--amber:hover { background: var(--ink); color: var(--amber); border-color: var(--ink); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn__arrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 14px;
  transition: transform 150ms ease;
}
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ==========================================================================
   HERO — large editorial composition
   ========================================================================== */
.hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
/* Topographic blueprint background */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(14, 26, 43, 0.04) 1px, transparent 1.5px),
    radial-gradient(circle at 80% 70%, rgba(14, 26, 43, 0.03) 1px, transparent 1.5px);
  background-size: 36px 36px, 48px 48px;
  background-position: 0 0, 18px 24px;
  opacity: 0.7;
  pointer-events: none;
}
/* Subtle diagonal hazard stripe at top right */
.hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: clamp(140px, 18vw, 240px);
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--ink),
    var(--ink) 8px,
    var(--amber) 8px,
    var(--amber) 16px
  );
  opacity: 0.92;
}

.hero__inner {
  position: relative;
  max-width: var(--container-wide); margin-inline: auto;
  padding: clamp(80px, 13vw, 170px) var(--gutter) clamp(70px, 11vw, 140px);
}

.hero__crumb {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 38px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0; animation: fadeUp 700ms 80ms ease-out forwards;
}
.hero__crumb-coord { color: var(--mute); }
.hero__crumb-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--amber); }

.hero__headline {
  font-size: clamp(60px, 11.5vw, 168px);
  line-height: 0.88;
  color: var(--ink);
  letter-spacing: -0.02em;
  max-width: 14ch;
  opacity: 0; animation: fadeUp 800ms 220ms ease-out forwards;
}
.hero__headline-em {
  display: inline-block;
  position: relative;
  color: var(--ink);
}
.hero__headline-em::after {
  content: "";
  position: absolute; left: -2%; right: -2%; bottom: 6%;
  height: 24%;
  background: var(--amber);
  z-index: -1;
  transform: skewX(-6deg);
  opacity: 0.85;
}

.hero__grid {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
  opacity: 0; animation: fadeUp 700ms 420ms ease-out forwards;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 50ch;
}
.hero__sub strong {
  font-weight: 600;
  color: var(--ink);
}

.hero__cta-row {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 12px;
}

/* Right side: equipment specs card */
.hero__card {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 32px 28px;
  position: relative;
  border: 1.5px solid var(--ink);
}
.hero__card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 14px; height: 14px;
  border-top: 2px solid var(--amber);
  border-left: 2px solid var(--amber);
}
.hero__card::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 14px; height: 14px;
  border-bottom: 2px solid var(--amber);
  border-right: 2px solid var(--amber);
}
.hero__card-header {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 18px;
  margin-bottom: 22px;
}
.hero__card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
}
.hero__card-id {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero__card-title {
  font-size: 26px;
  line-height: 1;
  color: var(--paper);
  margin-bottom: 22px;
}
.hero__card-list { display: grid; gap: 14px; }
.hero__card-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.hero__card-row:last-child { border-bottom: 0; padding-bottom: 0; }
.hero__card-row dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero__card-row dd {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--paper);
  text-align: right;
}
.hero__card-row dd em {
  font-style: normal;
  color: var(--amber);
}

@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   MARQUEE — Industries served
   ========================================================================== */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding-block: 22px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee__track {
  display: flex;
  gap: 56px;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
}
.marquee__item::after {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--amber);
  transform: rotate(45deg);
  margin-left: 28px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding-block: var(--pad-section); position: relative; }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--paper); }
.section--ink p { color: rgba(242, 239, 230, 0.78); }
.section--ink .eyebrow { color: var(--amber); }
.section--ink .eyebrow::before { background: var(--amber); }

.section-head {
  margin-bottom: clamp(56px, 7vw, 88px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
}
.section-head__title {
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.015em;
}
.section-head__title em {
  font-style: normal;
  color: var(--amber);
}
.section-head__lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 52ch;
}
.section--ink .section-head__lead { color: rgba(242, 239, 230, 0.7); }

/* ==========================================================================
   EQUIPMENT CATEGORIES — Industries we service
   ========================================================================== */
.equip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.equip__card {
  position: relative;
  padding: 40px 32px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 240ms ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.equip__card:hover { background: var(--paper-2); }
.equip__card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--amber);
  transition: width 300ms ease;
}
.equip__card:hover::after { width: 100%; }

.equip__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--mute);
  margin-bottom: 20px;
}
.equip__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--ink);
}
.equip__title {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--ink);
}
.equip__sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: auto;
}

/* ==========================================================================
   SERVICES — clean rows with detail
   ========================================================================== */
.svc-list {
  border-top: 1px solid var(--line);
}
.svc {
  display: grid;
  grid-template-columns: 90px 1fr 1fr auto;
  gap: 40px;
  align-items: start;
  padding-block: 44px;
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease;
}
.svc:hover { background: var(--paper-2); }
.svc__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--amber);
  padding-top: 8px;
}
.svc__body { display: grid; gap: 12px; }
.svc__title {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1;
  color: var(--ink);
}
.svc__sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 50ch;
}
.svc__specs {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}
.svc__spec {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.svc__spec::before {
  content: "+";
  color: var(--amber);
  font-weight: 700;
  font-size: 13px;
}
.svc__cta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  transition: background 150ms ease, color 150ms ease;
  align-self: center;
}
.svc__cta:hover { background: var(--ink); color: var(--amber); }

/* ==========================================================================
   PROCESS — when you call timeline
   ========================================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 24px;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 50px; left: 8%; right: 8%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--amber) 0, var(--amber) 8px, transparent 8px, transparent 16px);
  opacity: 0.55;
}
.process__step {
  text-align: left;
  padding: 0 22px 0 0;
  position: relative;
}
.process__num {
  width: 64px; height: 64px;
  background: var(--amber);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.process__step:not(:last-child) .process__num::after {
  content: "";
  position: absolute;
  top: 50%; right: -8px;
  width: 0; height: 0;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent var(--amber);
}
.process__title {
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 10px;
  color: var(--ink);
}
.section--ink .process__title { color: var(--paper); }
.process__sub {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 28ch;
}
.section--ink .process__sub { color: rgba(242, 239, 230, 0.7); }

/* ==========================================================================
   COVERAGE — service area
   ========================================================================== */
.coverage {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: stretch;
}
.coverage__copy h3 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  margin-bottom: 22px;
}
.coverage__copy p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.coverage__list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.section--ink .coverage__list { border-top-color: rgba(255,255,255,0.12); }
.coverage__city {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 0;
  display: flex; align-items: center; gap: 10px;
}
.section--ink .coverage__city { color: rgba(242, 239, 230, 0.82); }
.coverage__city::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--amber);
  flex-shrink: 0;
}

.coverage__map {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--line);
  min-height: 380px;
  overflow: hidden;
}
.section--ink .coverage__map { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); }
.coverage__map svg { width: 100%; height: 100%; display: block; }

/* ==========================================================================
   STATS — refined editorial row
   ========================================================================== */
.stats {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
}
.stats__inner {
  max-width: var(--container-wide); margin-inline: auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 56px 24px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat__label-top {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 18px;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(54px, 5vw, 80px);
  line-height: 1;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 4px;
  letter-spacing: -0.01em;
}
.stat__num sup {
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  color: var(--amber);
  letter-spacing: 0.04em;
  top: -1.6em;
}
.stat__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  margin-top: 14px;
  max-width: 22ch;
  line-height: 1.4;
}

/* ==========================================================================
   FLEET ROSTER — Trusted by
   ========================================================================== */
.roster {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
}
.roster__item {
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 120px;
  transition: background 200ms ease;
}
.roster__item:hover { background: rgba(229, 161, 26, 0.08); }
.roster__item em {
  font-style: normal;
  color: var(--amber);
}

/* ==========================================================================
   CTA BLOCK — heavy industrial
   ========================================================================== */
.cta {
  background: var(--amber);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--ink),
    var(--ink) 12px,
    var(--amber) 12px,
    var(--amber) 24px
  );
}
.cta::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--ink),
    var(--ink) 12px,
    var(--amber) 12px,
    var(--amber) 24px
  );
}
.cta__inner {
  max-width: var(--container-wide); margin-inline: auto;
  padding: clamp(80px, 11vw, 130px) var(--gutter);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
  display: inline-block;
}
.cta__title {
  font-size: clamp(44px, 7.4vw, 92px);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.cta__title em {
  font-style: normal;
  color: var(--paper);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow:
    -1.5px -1.5px 0 var(--ink),
     1.5px -1.5px 0 var(--ink),
    -1.5px  1.5px 0 var(--ink),
     1.5px  1.5px 0 var(--ink);
}
.cta__phone-wrap {
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
}
.cta__phone-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}
.cta__phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.005em;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 16px;
  padding: 20px 30px;
  background: var(--ink);
  color: var(--amber);
  border: 2px solid var(--ink);
  transition: background 150ms ease, color 150ms ease;
}
.cta__phone:hover { background: var(--paper); color: var(--ink); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.shop-footer {
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.shop-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 80px var(--gutter) 36px;
  max-width: var(--container-wide); margin-inline: auto;
}
.shop-footer__brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 10px;
  display: inline-block;
}
.shop-footer__brand-mark em { font-style: normal; color: var(--amber); }
.shop-footer__brand-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
  display: block;
}
.shop-footer__brand p {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(242, 239, 230, 0.7);
  max-width: 36ch;
  line-height: 1.6;
}
.shop-footer__col h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--amber);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.shop-footer__col ul li { margin-bottom: 12px; }
.shop-footer__col a {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(242, 239, 230, 0.85);
  transition: color 150ms ease;
}
.shop-footer__col a:hover { color: var(--amber); }
.shop-footer__line {
  font-family: var(--font-body); font-size: 15px;
  margin-bottom: 14px;
  color: rgba(242, 239, 230, 0.85);
  display: grid; grid-template-columns: 1fr; gap: 4px;
}
.shop-footer__line span {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(242, 239, 230, 0.5);
}
.shop-footer__line a:hover { color: var(--amber); }
.shop-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px var(--gutter);
  max-width: var(--container-wide); margin-inline: auto;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(242, 239, 230, 0.55);
}
.shop-footer__bottom em { color: var(--amber); font-style: normal; }

/* ==========================================================================
   PAGE HEADER (subpages)
   ========================================================================== */
.page-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(14, 26, 43, 0.04) 1px, transparent 1.5px);
  background-size: 36px 36px;
  opacity: 0.6;
  pointer-events: none;
}
.page-header::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: clamp(140px, 18vw, 240px);
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--ink),
    var(--ink) 8px,
    var(--amber) 8px,
    var(--amber) 16px
  );
}
.page-header__inner {
  position: relative;
  max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter);
  padding-block: clamp(80px, 11vw, 140px);
}
.page-header__crumb {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.page-header__crumb a { color: var(--ink-2); }
.page-header__crumb a:hover { color: var(--amber); }
.page-header__crumb-sep { color: var(--amber); }
.page-header__title {
  font-size: clamp(60px, 11vw, 142px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.page-header__title em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.page-header__title em::after {
  content: "";
  position: absolute; left: -2%; right: -2%; bottom: 6%;
  height: 24%;
  background: var(--amber);
  z-index: -1;
  transform: skewX(-6deg);
  opacity: 0.85;
}
.page-header__lead {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 96px;
  align-items: start;
}
.about__meta {
  position: sticky; top: 110px;
  display: flex; flex-direction: column; gap: 26px;
  padding: 32px 24px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  position: sticky;
}
.about__meta-row { display: flex; flex-direction: column; gap: 8px; }
.about__meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
}
.about__meta-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.05;
}
.about__copy h3 {
  font-size: clamp(30px, 3.6vw, 44px);
  margin-block: 40px 18px;
  color: var(--ink);
  line-height: 1;
}
.about__copy h3:first-of-type { margin-top: 0; }
.about__copy h3 em { color: var(--amber); font-style: normal; }
.about__copy p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: var(--ink-2);
}
.about__copy p em {
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
}
.about__copy p strong {
  color: var(--ink);
  font-weight: 600;
}

.about__pullquote {
  margin-block: 48px;
  padding: 40px 36px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  border-left: 4px solid var(--amber);
}
.about__pullquote q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  color: var(--paper);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  display: block;
  quotes: none;
}
.about__pullquote q::before, .about__pullquote q::after { content: ""; }
.about__pullquote cite {
  display: block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .equip { grid-template-columns: repeat(2, 1fr); }
  .roster { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .coverage { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 40px 22px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cta__inner { grid-template-columns: 1fr; gap: 32px; }
  .svc { grid-template-columns: 60px 1fr; gap: 22px; padding-block: 36px; }
  .svc__cta, .svc__specs { grid-column: 2; }
  .svc__specs { display: none; }
  .shop-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px var(--gutter) 30px; }
  .about { grid-template-columns: 1fr; gap: 36px; }
  .about__meta { position: static; flex-direction: row; flex-wrap: wrap; gap: 28px; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .process::before { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .callbar__inner { flex-wrap: wrap; gap: 8px; padding-block: 9px; }
  .callbar__status { font-size: 10px; letter-spacing: 0.2em; }
  .equip { grid-template-columns: 1fr; }
  .roster { grid-template-columns: 1fr; }
  .shop-footer__inner { grid-template-columns: 1fr; }
  .shop-nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column; align-items: stretch; gap: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-6px);
    opacity: 0; pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 49;
  }
  .shop-nav[data-open="true"] .shop-nav__links {
    opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  .shop-nav__link {
    padding: 18px var(--gutter);
    border-top: 1px solid var(--line);
  }
  .shop-nav__toggle { display: block; }
  .shop-nav__brand-tag { display: none; }
  .hero__crumb { font-size: 10px; letter-spacing: 0.24em; }
  .hero__card { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .marquee__track { animation: none; }
}
