/* ═══════════════════════════════════════════════
   TIREBOX — Newmarket · East Gwillimbury
   Editorial design system — v1
   ═══════════════════════════════════════════════ */

:root {
  --ink: #131311;
  --ink-soft: #3a3a36;
  --ink-mute: #6f6f68;
  --paper: #ffffff;
  --paper-deep: #ffffff;
  --white: #ffffff;
  --red: #c41e2a;
  --red-deep: #8f141e;
  --red-bright: #e63946;
  --line: rgba(19, 19, 17, 0.14);
  --line-soft: rgba(19, 19, 17, 0.08);
  --line-inverse: rgba(255, 255, 255, 0.16);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1440px;
  --wrap-text: 760px;
  --gutter: clamp(20px, 4vw, 64px);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 340;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

/* ─── Focus & accessibility ─── */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 24px;
  z-index: 300;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 16px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Type ─── */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 420;
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.9rem, 7.2vw, 6.4rem); }
h2 { font-size: clamp(2.2rem, 4.4vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.05rem; font-weight: 560; letter-spacing: 0.01em; }

em, .italic { font-style: italic; }
h1 em, h2 em, h3 em { font-style: normal; font-weight: inherit; color: inherit; }

p { max-width: 62ch; }

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 320;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ─── Layout primitives ─── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(88px, 11vw, 160px); }
.section-tight { padding-block: clamp(64px, 8vw, 110px); }
.section-compact-top { padding-top: clamp(48px, 6vw, 80px); }

.home-tire-categories { padding-bottom: clamp(32px, 3.5vw, 52px); }
.home-catalog-teaser { padding-top: clamp(32px, 3.5vw, 52px); }

.dark {
  background: var(--ink);
  color: var(--paper);
}
.dark .lede { color: rgba(255, 255, 255, 0.72); }
.dark p { color: rgba(255, 255, 255, 0.78); }

.deep { background: var(--paper-deep); }

/* Kicker — numbered editorial section label */
.kicker {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: clamp(24px, 3vw, 40px);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.kicker .num {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 560;
  letter-spacing: 0.02em;
  color: var(--red);
}
.kicker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
  transform: translateY(-4px);
}
.dark .kicker { color: rgba(255,255,255,0.5); }
.dark .kicker::after { background: var(--line-inverse); }

.section-head { max-width: 880px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::after { display: none; }
.section-head.center .kicker::before {
  content: '';
  width: 0;
}
.section-head p { margin-top: 22px; }
.section-head.center p { margin-inline: auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
}
.btn i { font-size: 0.82em; transition: transform 0.3s var(--ease); }
.btn:hover i.fa-arrow-right { transform: translateX(4px); }

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

.btn-red { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-deep); border-color: var(--red-deep); }

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

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

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

.btn-lg { padding: 20px 42px; font-size: 0.98rem; }

/* Text link with underline sweep */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 540;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  padding-bottom: 4px;
  position: relative;
}
.tlink::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); }

/* ─── Announcement strip ─── */
.strip {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 42px;
  padding-block: 8px;
}
.strip a { color: var(--paper); font-weight: 500; transition: color 0.25s; }
.strip a:hover { color: var(--red-bright); }
.strip i { color: var(--red-bright); margin-right: 7px; font-size: 0.82em; }
.strip-group { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
@media (max-width: 720px) {
  .strip .strip-group:first-child span:nth-child(2) { display: none; }
  .strip .strip-group:last-child a { display: none; }
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 1px 0 var(--line), 0 12px 40px -18px rgba(19,19,17,0.18); }

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 84px;
}

/* Wordmark */
.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 5px;
}
.wordmark strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 540;
  letter-spacing: -0.01em;
}
.wordmark strong em { font-style: normal; color: inherit; font-weight: inherit; }
.wordmark span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Header logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.logo-image {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.logo-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 440;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  padding: 8px 2px;
  position: relative;
  transition: color 0.25s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  font-weight: 540;
  color: var(--ink);
}
.header-phone i { color: var(--red); font-size: 0.85em; }
.header-cta .btn { padding: 13px 26px; font-size: 0.85rem; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-close {
  display: none;
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  z-index: 200;
}
.nav-close span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transform: rotate(45deg);
}
.nav-close span:nth-child(2) { transform: rotate(-45deg); }

@media (max-width: 1120px) {
  .main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    z-index: -1;
    background: var(--white);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
  }
  .main-nav.open { opacity: 1; visibility: visible; z-index: 300; }
  .main-nav ul { flex-direction: column; gap: 8px; text-align: center; }
  .main-nav a {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 6vw, 2.6rem);
    font-weight: 420;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .nav-close { display: flex; }
  .header-phone { display: none; }
  .burger { display: flex; }
}
@media (max-width: 560px) {
  .header-cta .btn-quote { display: none; }
  .header-bar { height: 74px; }
  .logo-image { height: 48px; }
  .logo-tagline { display: none; }
}

/* Mobile call bar */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 190;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 16px;
  font-weight: 560;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}
.mobile-call i { margin-right: 8px; }
@media (max-width: 720px) {
  .mobile-call { display: block; }
  body { padding-bottom: 54px; }

  .asw-menu-btn {
    bottom: 74px !important;
  }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: var(--white);
  overflow: clip;
  height: calc(100svh - 42px - 84px - 120px);
  min-height: 420px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(40px, 6vw, 80px);
  padding-right: clamp(24px, 4vw, 80px);
}
.hero-copy h1,
.hero-copy .lede { color: var(--white); }
.hero-copy h1 { font-size: clamp(2.2rem, 3.8vw, 3.4rem); margin-bottom: 24px; }
.hero-booking-line { font-size: 1.06em; }
.hero-copy .lede { max-width: 52ch; font-size: clamp(1rem, 1.4vw, 1.15rem); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 0.76rem;
  font-weight: 520;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.hero-eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--red-bright);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.hero-actions .btn { padding: 16px 32px; font-size: 0.9rem; }
.hero-actions .btn-ghost-light { border-color: rgba(255,255,255,0.65); }

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19,19,17,0.96) 0%, rgba(19,19,17,0.70) 45%, rgba(19,19,17,0.38) 100%),
    linear-gradient(0deg, rgba(19,19,17,0.70) 0%, transparent 45%);
}
.hero-badges {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 10px;
  pointer-events: none;
}
.hero-media .hero-slogan {
  position: static;
  inset: auto;
  width: auto;
  height: 96px;
  object-fit: contain;
  pointer-events: none;
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-right: 0; padding-block: clamp(30px, 5vw, 60px); }
  .hero-copy h1 { font-size: clamp(2.2rem, 8vw, 3rem); margin-bottom: 18px; }
  .hero-copy .lede { font-size: 0.95rem; }
  .hero-actions { margin-top: 24px; }
  .hero-actions .btn { padding: 14px 24px; font-size: 0.85rem; }
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(19,19,17,0.98) 0%, rgba(19,19,17,0.84) 45%, rgba(19,19,17,0.68) 100%);
  }
  .hero-badges { right: 16px; bottom: 12px; gap: 7px; }
  .hero-media .hero-slogan { height: 52px; }
}

/* Hero stat rail */
.stat-rail {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  height: 120px;
}
.stat-rail .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
}
.stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: clamp(12px, 2vw, 32px);
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 460;
  line-height: 1.1;
  color: var(--ink);
}
.stat strong .stat-flag {
  display: inline-block;
  margin: 0 0 0 0.16em;
  font-family: var(--sans);
  font-size: 0.68em;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: 0.08em;
}
.stat span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 820px) {
  .hero { height: calc(100svh - 42px - 74px - 160px - 54px); min-height: 320px; }
  .stat-rail { height: 160px; }
  .stat-rail .wrap { grid-template-columns: 1fr 1fr; }
  .stat { padding-inline: 16px; }
  .stat strong { font-size: 1.5rem; }
  .stat span { font-size: 0.72rem; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ─── Service index (editorial numbered rows) ─── */
.svc-index { border-top: 1px solid var(--line); }
.svc-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.1fr) minmax(0, 1.6fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  padding-block: clamp(26px, 3.4vw, 42px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}
.svc-row:hover { background: var(--white); }
.svc-num {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--red);
}
.svc-row h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.svc-row p { font-size: 0.98rem; color: var(--ink-soft); }
.svc-arrow {
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
}
.svc-row:hover .svc-arrow {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: rotate(-45deg);
}
@media (max-width: 880px) {
  .svc-row { grid-template-columns: 48px 1fr auto; }
  .svc-row p { grid-column: 2 / -1; margin-top: -6px; }
  .svc-arrow { width: 46px; height: 46px; }
}

/* ─── Marquee ─── */
.marquee-band {
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  contain: inline-size;
  border-block: 1px solid var(--line-inverse);
  padding-block: clamp(26px, 3vw, 40px);
}
.marquee-track {
  display: flex;
  gap: clamp(40px, 6vw, 90px);
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  font-weight: 540;
  white-space: nowrap;
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}
.marquee-track span::after {
  content: '·';
  color: var(--red-bright);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
}

/* ─── Brand wall ─── */
.brand-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: clamp(44px, 5vw, 68px);
  border-top: 1px solid var(--line-inverse);
  border-left: 1px solid var(--line-inverse);
}
.brand-name {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 20px 14px;
  border-right: 1px solid var(--line-inverse);
  border-bottom: 1px solid var(--line-inverse);
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 620;
  letter-spacing: 0.04em;
  text-align: center;
  transition: background-color 0.25s, color 0.25s;
}
.brand-name:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.brand-wall-note {
  max-width: 72ch;
  margin-top: 20px;
  color: rgba(255,255,255,0.58);
  font-size: 0.84rem;
}
@media (max-width: 1040px) {
  .brand-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .brand-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-name { min-height: 68px; padding: 16px 10px; font-size: 0.8rem; }
}

/* ─── Pillars (why us) ─── */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line-inverse);
  margin-top: clamp(48px, 6vw, 80px);
}
.pillar {
  padding: clamp(28px, 3vw, 44px) clamp(20px, 2.4vw, 38px);
  border-right: 1px solid var(--line-inverse);
  border-top: 1px solid var(--line-inverse);
  border-bottom: 1px solid var(--line-inverse);
}
.pillar .p-num {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 22px;
}
.pillar h3 { font-size: 1.3rem; margin-bottom: 14px; }
.pillar p { font-size: 0.94rem; }
.pillars.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .pillars, .pillars.cols-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pillars, .pillars.cols-3 { grid-template-columns: 1fr; } }

/* ─── Tire category gallery ─── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
  margin-top: clamp(48px, 6vw, 80px);
}
.cat-card {
  position: relative;
  aspect-ratio: 3 / 4.1;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
}
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.7s var(--ease), opacity 0.5s;
}
.cat-card:hover img { transform: scale(1.05); opacity: 0.6; }
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,9,0.85) 0%, transparent 55%);
  z-index: 1;
}
.cat-body {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 2.4vw, 32px);
  color: var(--paper);
  width: 100%;
}
.cat-body .cat-kicker {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.cat-body h3 { color: var(--paper); font-size: clamp(1.3rem, 1.8vw, 1.7rem); margin-bottom: 8px; }
.cat-body p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.cat-body .tlink { color: var(--paper); }
.cat-card:hover .tlink { color: var(--red-bright); }
@media (max-width: 980px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; } .cat-card { aspect-ratio: 4 / 3; } }

/* ─── Editorial split ─── */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}
.split.media-right { direction: ltr; }
.split-media {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.split-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  aspect-ratio: 4 / 4.6;
}
.split-media.wide img { aspect-ratio: 4 / 3.4; }
.split-copy h2 { margin-bottom: 26px; }
.split-copy .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split-media img { aspect-ratio: 16 / 10; min-height: 0; }
}

/* Feature list — hairline rows */
.feature-list { margin-top: 30px; border-top: 1px solid var(--line); }
.dark .feature-list { border-color: var(--line-inverse); }
.feature-list li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.dark .feature-list li { border-color: var(--line-inverse); color: rgba(255,255,255,0.78); }
.feature-list li i {
  color: var(--red);
  font-size: 0.7rem;
  transform: translateY(-1px);
}
.dark .feature-list li i { color: var(--red-bright); }

/* ─── Big CTA band ─── */
.cta-editorial {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding-block: clamp(90px, 12vw, 170px);
}
.cta-editorial .cta-eyebrow {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 26px;
}
.cta-editorial h2 { color: var(--white); font-size: clamp(2.6rem, 5.6vw, 5rem); margin-bottom: 24px; }
.cta-editorial h2 em { color: var(--white); font-style: normal; font-weight: inherit; }
.cta-editorial p { margin-inline: auto; color: rgba(255,255,255,0.82); }
.cta-editorial .actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

/* ─── Visit / map ─── */
.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: stretch;
}
.visit-info h2 { margin-bottom: 24px; }
.visit-actions { margin-top: 30px; }
.visit-directions {
  min-width: min(100%, 320px);
  padding-inline: 36px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.24);
}
.visit-directions:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,0.3); }
.visit-directions .fa-arrow-up-right-from-square { margin-left: 4px; font-size: 0.72em; opacity: 0.7; }
.visit-cards { margin-top: 36px; border-top: 1px solid var(--line-inverse); }
.visit-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line-inverse);
  font-size: 0.95rem;
}
.visit-card dt {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding-top: 3px;
}
.visit-card dd { color: rgba(255,255,255,0.88); }
.visit-card dd a { border-bottom: 1px solid var(--line-inverse); transition: color 0.25s, border-color 0.25s; }
.visit-card dd a:hover { color: var(--red-bright); border-color: var(--red-bright); }
.visit-map {
  position: relative;
  min-height: 440px;
  border-radius: 2px;
  overflow: hidden;
}
.visit-map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; }
.map-full {
  position: relative;
  height: clamp(360px, 48vw, 560px);
}
.map-full iframe { width: 100%; height: 100%; border: 0; }
.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s;
}
.visit-map:hover .map-overlay,
.visit-map:focus-within .map-overlay,
.map-full:hover .map-overlay,
.map-full:focus-within .map-overlay {
  pointer-events: none;
  opacity: 0;
}
@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 340px; }
}
@media (max-width: 560px) {
  .visit-actions { margin-top: 26px; }
  .visit-directions { width: 100%; min-width: 0; padding-inline: 22px; }
}

/* ─── Areas ─── */
.areas-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: clamp(40px, 5vw, 64px);
  justify-content: center;
}
.area-chip {
  padding: 11px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 420;
  color: var(--ink-soft);
}

/* ─── Page hero (interior pages) ─── */
.page-hero {
  padding-top: clamp(72px, 9vw, 130px);
  padding-bottom: clamp(48px, 6vw, 90px);
}
.page-hero h1 { max-width: 15ch; margin-bottom: 26px; }
.page-hero.page-hero--wide h1 { max-width: 40ch; }
.page-hero .lede { max-width: 58ch; }
.page-hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.page-hero-meta i { color: var(--red); margin-right: 8px; }

.page-hero-img {
  border-radius: 2px;
  overflow: hidden;
}
.page-hero-img img {
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
}
@media (max-width: 700px) { .page-hero-img img { aspect-ratio: 4 / 3; } }

/* ─── Anchor subnav ─── */
.subnav {
  border-block: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 84px;
  z-index: 90;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 560px) { .subnav { top: 74px; } }
.subnav .wrap {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
}
.subnav a {
  padding: 18px 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.subnav a:hover { color: var(--red); border-bottom-color: var(--red); }

@media (max-width: 720px) {
  .subnav {
    overflow-x: visible;
    position: static;
  }
  .subnav .wrap {
    display: block;
    padding-block: 8px;
  }
  .subnav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    white-space: normal;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--red);
  }
  .subnav a::after {
    content: '\2192';
    font-family: sans-serif;
    font-size: 1.25rem;
    color: var(--red);
    flex-shrink: 0;
  }
  .subnav a:hover { color: var(--red); }
  .subnav a:last-child { border-bottom: none; }
}

/* ─── Partner cards (rims page) ─── */
.rims-hero {
  position: relative;
  display: flex;
  min-height: clamp(440px, 44vw, 590px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(19,19,17,0.96) 0%, rgba(19,19,17,0.70) 45%, rgba(19,19,17,0.38) 100%),
    linear-gradient(0deg, rgba(19,19,17,0.70) 0%, transparent 45%),
    url("https://images.pexels.com/photos/36202185/pexels-photo-36202185.jpeg?auto=compress&cs=tinysrgb&w=2000") center 33% / cover no-repeat;
}
.rims-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}
.rims-hero .wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}
.rims-hero .kicker {
  max-width: 720px;
  color: rgba(255,255,255,0.68);
}
.rims-hero .kicker::after { background: rgba(255,255,255,0.24); }
.rims-hero h1 {
  max-width: 16ch;
  color: var(--white);
  text-wrap: balance;
  text-shadow: 0 2px 26px rgba(0,0,0,0.28);
}
.rims-hero .lede {
  max-width: 58ch;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}
@media (max-width: 700px) {
  .rims-hero {
    min-height: 500px;
    background:
      linear-gradient(180deg, rgba(19,19,17,0.98) 0%, rgba(19,19,17,0.84) 45%, rgba(19,19,17,0.68) 100%),
      url("https://images.pexels.com/photos/36202185/pexels-photo-36202185.jpeg?auto=compress&cs=tinysrgb&w=1200") center 34% / cover no-repeat;
  }
  .rims-hero h1 { max-width: 13ch; }
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(12px, 1.4vw, 20px);
  margin-top: clamp(48px, 6vw, 72px);
}
.partner-card {
  position: relative;
  grid-column: span 3;
  min-height: 250px;
  overflow: hidden;
  background: #f1f0ec;
  border: 1px solid rgba(19, 19, 17, 0.1);
  border-radius: 3px;
  padding: clamp(26px, 2.6vw, 40px);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.partner-card:hover {
  z-index: 2;
  transform: translateY(-4px);
  border-color: rgba(19, 19, 17, 0.2);
  box-shadow: 0 24px 60px rgba(19, 19, 17, 0.12);
}
.partner-card::before {
  content: '';
  position: absolute;
  z-index: -1;
  right: -82px;
  bottom: -104px;
  width: 230px;
  aspect-ratio: 1;
  border: 1px solid rgba(19, 19, 17, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(19, 19, 17, 0.025), 0 0 0 56px rgba(19, 19, 17, 0.018);
  transition: transform 0.55s var(--ease);
}
.partner-card:hover::before { transform: scale(1.08) rotate(5deg); }
.partner-card:nth-child(1) {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 520px;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}
.partner-card:nth-child(1)::before {
  right: -105px;
  bottom: -120px;
  width: clamp(330px, 34vw, 500px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 52px rgba(255, 255, 255, 0.035), 0 0 0 104px rgba(255, 255, 255, 0.02);
}
.partner-card:nth-child(3) {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}
.partner-card:nth-child(3)::before {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.05), 0 0 0 56px rgba(255, 255, 255, 0.025);
}
.partner-card:nth-child(5) { background: #dfddd7; }
.partner-card:nth-child(6) {
  grid-column: span 4;
  background: #f7f6f3;
}
.partner-card:nth-child(7) {
  grid-column: span 8;
  background: #e8e4df;
}
.partner-card h3 {
  max-width: 13ch;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  font-weight: 420;
  line-height: 1.02;
  margin: auto 0 16px;
}
.partner-card:nth-child(1) h3 {
  max-width: 8ch;
  font-size: clamp(3rem, 5.6vw, 5.4rem);
}
.partner-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.partner-mark span { color: var(--red); }
.partner-card:nth-child(1) .partner-mark,
.partner-card:nth-child(3) .partner-mark { color: rgba(255, 255, 255, 0.64); }
.partner-card:nth-child(1) .partner-mark span,
.partner-card:nth-child(3) .partner-mark span { color: var(--white); }
.partner-card:nth-child(7) h3 { max-width: none; }
.partner-card:nth-child(7) p { max-width: 48ch; }
.partner-card:nth-child(7) .tlink { align-self: flex-start; }
.partner-card:nth-child(7) .partner-mark { margin-bottom: 24px; }
.partner-card:nth-child(7) h3 { margin-top: auto; }
.partner-card:nth-child(1) p {
  max-width: 40ch;
  font-size: 1.03rem;
  color: rgba(255, 255, 255, 0.68);
}
.partner-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.partner-card:nth-child(3) p { color: rgba(255, 255, 255, 0.78); }
.partner-card .tlink {
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 5px;
}
.partner-card:nth-child(1) .tlink,
.partner-card:nth-child(3) .tlink { color: var(--white); }
.partner-card .tlink::after {
  width: 100%;
  transform: none;
  opacity: 0.28;
}
.partner-card .tlink:hover::after { opacity: 1; }
.partner-card .tlink i { font-size: 0.75em; transition: transform 0.25s; }
.partner-card .tlink:hover i { transform: translateX(4px); }
@media (max-width: 980px) {
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-card,
  .partner-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }
  .partner-card:nth-child(1) { grid-column: 1 / -1; min-height: 360px; }
  .partner-card:nth-child(7) { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .partner-grid { grid-template-columns: 1fr; gap: 12px; }
  .partner-card,
  .partner-card:nth-child(n) {
    grid-column: auto;
    min-height: 238px;
    padding: 28px;
  }
  .partner-card:nth-child(1) { min-height: 280px; }
  .partner-card:nth-child(1) h3,
  .partner-card h3 { max-width: none; font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .partner-card:nth-child(1) p { font-size: 0.92rem; }
  .partner-mark { margin-bottom: 30px; }
}

/* Rims installation — quiet contrast without a hard black/white split */
.rims-install {
  position: relative;
  overflow: hidden;
  background: #e8e7e3;
  color: var(--ink);
  border-block: 1px solid rgba(19, 19, 17, 0.1);
}
.rims-install::after {
  content: '';
  position: absolute;
  right: clamp(-150px, -8vw, -80px);
  bottom: clamp(-190px, -12vw, -110px);
  width: clamp(310px, 34vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(19, 19, 17, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 clamp(34px, 4vw, 70px) rgba(255, 255, 255, 0.12),
    0 0 0 clamp(68px, 8vw, 140px) rgba(19, 19, 17, 0.025);
  pointer-events: none;
}
.rims-install .wrap {
  position: relative;
  z-index: 1;
}
.rims-install .kicker { color: var(--ink-mute); }
.rims-install .kicker::after { background: rgba(19, 19, 17, 0.16); }
.rims-install .lede { color: var(--ink-soft); }
.rims-install .step-cards {
  background: rgba(19, 19, 17, 0.11);
  border-color: rgba(19, 19, 17, 0.11);
  box-shadow: 0 24px 64px rgba(19, 19, 17, 0.07);
}
.rims-install .step-card {
  min-height: 218px;
  background: rgba(248, 247, 244, 0.9);
}
.rims-install__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 40px;
}
@media (max-width: 540px) {
  .rims-install .step-card { min-height: 0; }
  .rims-install__actions { margin-top: 32px; }
  .rims-install__actions .btn { width: 100%; }
}

/* ─── Detail blocks (services) ─── */
.detail { scroll-margin-top: 150px; }

.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(48px, 6vw, 72px);
}
.step-card {
  background: var(--paper);
  padding: clamp(28px, 3vw, 42px);
}
.step-card .s-num {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--red);
  margin-bottom: 18px;
}
.step-card h4 { margin-bottom: 10px; font-size: 1.08rem; color: var(--ink); }
.step-card p { font-size: 0.92rem; color: var(--ink-soft); }
@media (max-width: 880px) { .step-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .step-cards { grid-template-columns: 1fr; } }

.step-cards.equipment-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.step-cards.equipment-cards .step-card {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}
@media (max-width: 1100px) {
  .step-cards.equipment-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .step-cards.equipment-cards { grid-template-columns: 1fr; }
}

/* Aside note */
.note {
  margin-top: 30px;
  padding: 26px 30px;
  background: var(--white);
  border-left: 2px solid var(--red);
  border-radius: 2px;
}
.dark .note { background: rgba(255,255,255,0.05); }
.note h4 { margin-bottom: 8px; }
.note p { font-size: 0.92rem; color: var(--ink-soft); }
.dark .note p { color: rgba(255,255,255,0.75); }

/* ─── Brand ledger (tires page) ─── */
.ledger { border-top: 1px solid var(--line); margin-top: clamp(40px, 5vw, 64px); }
.dark .ledger { border-color: var(--line-inverse); }
.ledger-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 48px);
  padding-block: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.dark .ledger-row { border-color: var(--line-inverse); }
.ledger-row h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
.ledger-row .l-tagline { font-size: 0.93rem; color: var(--ink-mute); font-style: normal; font-family: var(--sans); }
.dark .ledger-row .l-tagline { color: rgba(255,255,255,0.55); }
.ledger-row .l-models {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.9;
}
.dark .ledger-row .l-models { color: rgba(255,255,255,0.78); }
.ledger-row .l-models span {
  display: inline-block;
  margin-right: 14px;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--line);
}
.dark .ledger-row .l-models span { border-color: var(--line-inverse); }
@media (max-width: 780px) {
  .ledger-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ─── FAQ ─── */
.faq { max-width: 860px; margin-inline: auto; margin-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: clamp(20px, 2.6vw, 30px) 4px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 460;
  list-style: none;
  transition: color 0.25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--red);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--red); }
.faq .faq-body { padding: 0 4px 28px; }
.faq .faq-body p { font-size: 0.97rem; color: var(--ink-soft); }

/* ─── Contact page ─── */
.contact-hero {
  position: relative;
  display: flex;
  min-height: clamp(460px, 47vw, 620px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(19,19,17,0.96) 0%, rgba(19,19,17,0.70) 45%, rgba(19,19,17,0.38) 100%),
    linear-gradient(0deg, rgba(19,19,17,0.70) 0%, transparent 45%),
    url("hero.webp") center 48% / cover no-repeat;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}
.contact-hero .wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}
.contact-hero .kicker {
  max-width: 720px;
  color: rgba(255,255,255,0.68);
}
.contact-hero .kicker::after { background: rgba(255,255,255,0.24); }
.page-hero.contact-hero h1 {
  max-width: 19ch;
  color: var(--white);
  font-size: clamp(2.25rem, 4.3vw, 4rem);
  text-wrap: balance;
  text-shadow: 0 2px 26px rgba(0,0,0,0.24);
}
.contact-hero .lede {
  max-width: 55ch;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}
@media (max-width: 700px) {
  .contact-hero {
    min-height: 500px;
    background:
      linear-gradient(180deg, rgba(19,19,17,0.98) 0%, rgba(19,19,17,0.84) 45%, rgba(19,19,17,0.68) 100%),
      url("hero.webp") 62% center / cover no-repeat;
  }
  .page-hero.contact-hero h1 { max-width: 16ch; }
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 110px);
}
.contact-list { border-top: 1px solid var(--line); margin-top: 36px; }
.contact-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}
.contact-item dt {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 4px;
}
.contact-item dd { font-size: 1.02rem; }
.contact-item dd a { border-bottom: 1px solid var(--line); transition: color 0.25s, border-color 0.25s; }
.contact-item dd a:hover { color: var(--red); border-color: var(--red); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.hours-table td { padding: 6px 0; }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }
.hours-table .closed td:last-child { color: var(--red); }

.contact-panel {
  background: var(--ink);
  color: var(--paper);
  border-radius: 2px;
  padding: clamp(36px, 4.5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  text-align: center;
}
.contact-panel h3 { color: var(--paper); font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.contact-panel p { color: rgba(255,255,255,0.72); margin-inline: auto; font-size: 0.98rem; }
.contact-panel .btn { width: 100%; }
.contact-panel .divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-block: 8px;
}
.contact-panel .divider::before,
.contact-panel .divider::after { content: ''; flex: 1; height: 1px; background: var(--line-inverse); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.map-full { height: clamp(360px, 48vw, 560px); }
.map-full iframe { width: 100%; height: 100%; border: 0; }


/* ─── Footer ─── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding-top: clamp(72px, 9vw, 120px);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(56px, 7vw, 88px);
}
.footer-brand .wordmark strong { color: var(--paper); font-size: 2rem; }
.footer-brand .wordmark span { color: rgba(255,255,255,0.45); }
.footer-logo-image {
  height: 64px;
  filter: grayscale(1) brightness(0) invert(1);
}
.footer-brand p { margin-top: 22px; font-size: 0.95rem; max-width: 40ch; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-size: 0.9rem;
  color: var(--paper);
  border-bottom: 1px solid var(--line-inverse);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.footer-social:hover { color: var(--red-bright); border-color: var(--red-bright); }
.footer-col h4 {
  color: var(--paper);
  font-size: 0.74rem;
  font-weight: 540;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 12px; font-size: 0.94rem; }
.footer-col a { transition: color 0.25s; }
.footer-col a:hover { color: var(--red-bright); }
.footer-col address { font-style: normal; font-size: 0.94rem; line-height: 1.8; }
.footer-hours { width: 100%; font-size: 0.9rem; border-collapse: collapse; }
.footer-hours td { padding: 4px 0; }
.footer-hours td:last-child { text-align: right; color: rgba(255,255,255,0.5); }

.footer-bottom { border-top: 1px solid var(--line-inverse); }
.footer-bottom .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 26px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ─── Mobile stability pass ─── */
@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }

  .mobile-call {
    padding: 15px 16px calc(15px + env(safe-area-inset-bottom));
  }

  html body .asw-menu-btn {
    left: 12px !important;
    bottom: calc(76px + env(safe-area-inset-bottom)) !important;
    width: 44px !important;
    height: 44px !important;
  }

  /* Keep the long services index useful without consuming a full phone screen. */
  .subnav {
    position: sticky;
    top: 74px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }
  .subnav::-webkit-scrollbar { display: none; }
  .subnav .wrap {
    display: flex;
    width: max-content;
    min-width: 100%;
    max-width: none;
    gap: 26px;
    padding-block: 0;
  }
  .subnav a {
    display: block;
    flex: 0 0 auto;
    padding: 15px 0 13px;
    border-bottom: 2px solid transparent;
    color: var(--ink-mute);
    text-decoration: none;
    white-space: nowrap;
  }
  .subnav a::after { display: none; }
}

@media (max-width: 560px) {
  .strip {
    font-size: 0.7rem;
    letter-spacing: 0.02em;
  }
  .strip .wrap {
    min-height: 38px;
    padding-block: 7px;
  }
  .strip .strip-group:first-child span:first-child { white-space: nowrap; }

  /* Let the home hero grow with its content instead of clipping on short phones. */
  .hero {
    height: auto;
    min-height: 560px;
  }
  .hero-grid { min-height: 560px; }
  .hero-copy { padding-block: 30px 76px; }
  .hero-eyebrow {
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.68rem;
    letter-spacing: 0.23em;
  }
  .hero-copy h1 {
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 10vw, 2.5rem);
  }
  .hero-copy .lede {
    font-size: 0.91rem;
    line-height: 1.52;
  }
  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }
  .hero-actions .btn {
    width: 100%;
    padding: 13px 8px;
    font-size: 0.78rem;
  }
  .hero-badges { right: 12px; bottom: 30px; max-width: calc(100% - 24px); gap: 6px; }
  .hero-media .hero-slogan { max-width: 62vw; height: 44px; }

  .contact-grid > * { min-width: 0; }
  .contact-item {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-block: 20px;
  }
  .contact-item dt { padding-top: 0; }
  .contact-item dd {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .hours-table { font-size: 0.9rem; }
  .hours-table td:first-child { padding-right: 14px; }

  .note { padding: 22px 20px; }
  .note .actions {
    display: grid;
    gap: 10px;
  }
  .note .actions .btn {
    width: 100%;
    padding-inline: 16px;
    text-align: center;
    white-space: normal;
  }
}

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ─── Ultrawide ─── */
@media (min-width: 1920px) {
  :root { --wrap: 1560px; }
  body { font-size: 1.125rem; }
}
