:root {
  --navy: #1a3358;
  --gold: #c5a059;
  --gold-soft: #e0c37a;
  --ink: #222;
  --muted: #5c6570;
  --paper: #fff;
  --line: #e8e2d4;
  --teal: #1f8a8a;
  --bar: #3a3a3a;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: #fff;
  color: var(--ink);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px 20px;
  width: 100%;
  min-width: 0;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--gold);
  min-width: 0;
  flex: 1;
}
.brand-mark { width: 36px; height: 36px; flex-shrink: 0; }
.brand span {
  min-width: 0;
}
.brand strong,
.brand em {
  display: block;
  font-family: Cinzel, Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand em {
  font-weight: 600;
  opacity: 0.95;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.topbar.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.topbar.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
.topbar.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
#site-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
#site-nav a {
  color: #444;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}
#site-nav a:hover,
#site-nav a.active { color: var(--gold); }
.call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  position: relative;
}
.call svg { width: 18px; height: 18px; flex-shrink: 0; position: relative; z-index: 1; }
.call-label {
  display: block;
  line-height: 1.15;
}
.call small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}
.call-number { display: block; }

.hero {
  position: relative;
  overflow: visible;
  min-height: 460px;
  margin-bottom: 44px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  min-height: 460px;
  height: 100%;
  background-color: #1a1a1a;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0 0 4px 4px;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.badge {
  display: inline-block;
  max-width: 22rem;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(15, 28, 48, 0.14);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}

.page-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 28px;
  align-items: stretch;
  margin-top: 96px;
  position: relative;
  z-index: 2;
}
.page-book {
  min-width: 0;
}
.page-book .emergency {
  position: sticky;
  top: 84px;
  z-index: 4;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.page-book label { margin: 8px 0 4px; }
.page-rest { min-width: 0; }

.office-bar {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(520px, calc(100% - 32px));
  margin: 0;
  min-height: 148px;
  padding: 18px 12px 22px;
  transform: translate(-50%, 38%);
  text-align: center;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(15, 28, 48, 0.18), rgba(15, 28, 48, 0.42)),
    rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 40px rgba(15, 28, 48, 0.28);
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
}
.office-glass-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}
.office-bar-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.office-bar-label {
  margin: 0 12px 0 0;
  padding: 6px 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border-radius: 0;
  line-height: 1.2;
  white-space: nowrap;
  align-self: center;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  transform: none;
  text-shadow: 0 1px 3px rgba(15, 28, 48, 0.55);
}
.office-switch {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(15, 28, 48, 0.18);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}
.office-tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(26, 51, 88, 0.12);
  margin: 0;
  min-width: 108px;
  padding: 14px 16px 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f0e6 100%);
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  width: auto;
  box-shadow: 0 4px 12px rgba(15, 28, 48, 0.08);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.office-tab span {
  display: block;
  width: 100%;
  text-align: center;
}
.office-tab-icon {
  width: 42px;
  height: 34px;
  display: block;
  margin: 0 auto;
  color: var(--gold);
  flex-shrink: 0;
}
.office-tab-icon--cab { width: 50px; }
.office-tab-icon--cab .cab-hat {
  fill: #e11d48;
  stroke: #7f1d1d;
  stroke-width: 1;
}
.office-tab-icon--cab .cab-hat-stem { fill: #9f1239; }
.office-tab-icon--pair { width: 54px; }
.office-tab:hover {
  border-color: rgba(197, 160, 89, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 28, 48, 0.14);
}
.office-tab.is-active {
  background: linear-gradient(180deg, #243f68 0%, #1a3358 100%);
  color: var(--gold-soft);
  border-color: rgba(197, 160, 89, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 28, 48, 0.28);
}
.office-tab.is-active .office-tab-icon { color: var(--gold-soft); }
.office-tab.is-active .office-tab-icon--cab .cab-hat { fill: #fb7185; stroke: #fecdd3; }
.office-tab.is-active .office-tab-icon--cab .cab-hat-stem { fill: #fda4af; }
.office-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.brands-stage {
  position: relative;
  isolation: isolate;
  margin: 0 0 28px;
  padding: 28px 18px 20px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(197, 160, 89, 0.14), transparent 55%),
    linear-gradient(165deg, #0f1c30 0%, #1a3358 50%, #12243c 100%);
  box-shadow: 0 18px 40px rgba(15, 28, 48, 0.22);
}
.brands-stage-content {
  position: relative;
  z-index: 1;
}
.brands-stage .flow-brand { margin-bottom: 20px; }
.brands-stage .flow-brand.tires { margin-bottom: 18px; }
.brands-stage .flow-brand.cars { margin-bottom: 0; }
.flow-brand[hidden],
[data-office-panel][hidden] { display: none !important; }
[data-office-panel].fade-up-in {
  animation: officeFadeUp 0.55s ease both;
}
@keyframes officeFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-office-panel].fade-up-in { animation: none; }
}

.flow-parent {
  margin: 0 auto;
  width: min(100%, 26rem);
  border: 1px solid rgba(197, 160, 89, 0.55);
  background: rgba(10, 20, 36, 0.78);
  color: #fff;
  text-align: center;
  padding: 22px 20px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.flow-brand.cars .flow-parent { width: min(100%, 38rem); }
.brand-hero-art {
  display: block;
  width: min(120px, 42%);
  height: auto;
  margin: 0 auto 12px;
  color: var(--gold);
}
.flow-brand.cars .brand-hero-art { width: min(160px, 55%); }
.flow-parent h2 {
  font-family: Cinzel, Georgia, serif;
  color: var(--gold);
  margin: 0;
  letter-spacing: 0.1em;
  font-size: 1.35rem;
}
.flow-parent .service-kicker {
  margin: 8px 0 0;
  color: #d5deea;
  font-weight: 600;
}
.flow-parent .coming-soon {
  margin: 6px 0 0;
  color: var(--gold-soft);
  font-weight: 700;
}
.flow-body {
  position: relative;
  padding-top: 22px;
}
.flow-outer {
  border: 1px solid rgba(197, 160, 89, 0.35);
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
}

.service-kicker {
  margin: 0;
  font-weight: 700;
  color: var(--muted);
}
.coming-soon {
  margin: 4px 0 18px;
  font-weight: 700;
  color: var(--navy);
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 18px 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.card-book {
  display: none;
  width: auto;
  margin-top: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(197, 160, 89, 0.65);
  border-radius: 8px;
  background: var(--gold);
  color: #1a1a1a;
  font: inherit;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}
.card-book:hover {
  filter: brightness(1.05);
}
.brands-stage .card-book {
  background: var(--gold);
  color: #1a1a1a;
}
.book-sheet-close {
  display: none;
}
.book-sheet-bar {
  display: none;
}
.book-sheet-backdrop {
  display: none;
}
.icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 10px; }
.brands-stage .card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.brands-stage .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

section { padding: 0; }
h2 {
  font-family: "Source Sans 3", sans-serif;
  color: var(--gold);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.how h2, #coverage h2 { color: var(--navy); }
.lede { color: var(--muted); max-width: 60ch; }

.rescue { padding: 24px 0 0; }
.rescue-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.tire-visual {
  position: relative;
  min-width: 0;
}
.tire-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
}
.tire-art { width: min(180px, 100%); height: auto; }
.tire-badge {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: #111;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brands-label {
  margin: 16px 0 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.brand-grid li {
  border: 1px solid var(--line);
  padding: 8px 10px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.emergency {
  position: relative;
  border: 2px solid var(--gold);
  padding: 20px;
  background: #fff;
}
.emergency-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.emergency h3 {
  margin: 0 0 12px;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 1rem;
}
.choice {
  border: 0;
  padding: 0;
  margin: 0 0 14px;
}
.choice legend {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--navy);
}
.choice-prominent {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #faf8f3;
}
.choice-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 8px 8px 0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}
.choice-pill:has(input:checked) {
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.16);
  color: var(--navy);
}
.choice input { width: auto; margin: 0; }
.req, .opt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 6px;
}
.req { color: #b42318; }
.opt { color: var(--muted); }
.hint { font-size: 0.8rem; color: var(--muted); }

.stats {
  margin-top: 28px;
  background: var(--bar);
  color: #fff;
}
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 14px 0;
  font-weight: 600;
  font-size: 0.92rem;
}
.stats-row span { color: var(--gold-soft); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { background: #fff; padding: 18px; border-top: 4px solid var(--gold); }
.step strong { display: block; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; }

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.panel {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
}
.panel h3 { margin-top: 0; color: var(--gold); }
label { display: block; font-size: 0.88rem; font-weight: 600; margin: 12px 0 6px; }
input, textarea, select {
  width: 100%;
  border: 1px solid #d7d0bb;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}
button:not(.menu-toggle):not(.card-book):not(.office-tab), .btn {
  border: 0;
  background: var(--gold);
  color: #1a1a1a;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 14px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.booking-full button, .booking-full .btn, .panel .btn { width: auto; }
button:disabled { opacity: 0.55; cursor: not-allowed; }
.msg { margin-top: 10px; font-size: 0.92rem; font-weight: 600; }
.msg.ok { color: #067647; }
.msg.err { color: #b42318; }

footer {
  background: var(--navy);
  color: #c9d4e3;
  padding: 28px 0;
  font-size: 0.88rem;
}
footer a { color: var(--gold-soft); }
.foot-row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.book-list { list-style: none; padding: 0; margin: 16px 0 0; }
.book-list li {
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.book-list small { color: var(--muted); }

.how { padding: 24px 0 16px; }
#coverage { padding: 16px 0 28px; }

@media (max-width: 1024px) {
  .topbar {
    padding: 10px 0 12px;
  }
  .topbar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand toggle"
      "call call";
    column-gap: 10px;
    row-gap: 8px;
    align-items: center;
    position: relative;
  }
  .brand {
    grid-area: brand;
    flex: 1;
    min-width: 0;
  }
  .menu-toggle {
    display: inline-flex;
    grid-area: toggle;
    justify-self: end;
  }
  .call {
    grid-area: call;
    justify-self: center;
    width: auto;
    max-width: 100%;
    min-width: 0;
    height: auto;
    flex: none;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.92rem;
    line-height: 1.1;
    white-space: nowrap;
    z-index: 1;
  }
  .call svg {
    width: 15px;
    height: 15px;
  }
  .call-label {
    position: static;
    display: block;
    width: auto;
    max-width: none;
    padding: 0;
    opacity: 1;
    transform: none;
    overflow: visible;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    pointer-events: auto;
    transition: none;
  }
  .call-label small { display: none; }
  .call-number {
    display: block;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    font-weight: 700;
  }
  #site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(15, 28, 48, 0.16);
    padding: 8px;
    z-index: 40;
  }
  .topbar.nav-open #site-nav { display: flex; }
  #site-nav a {
    padding: 12px 14px;
    border-radius: 8px;
  }
  #site-nav a:hover,
  #site-nav a.active {
    background: rgba(197, 160, 89, 0.12);
  }
}

@media (max-width: 900px) {
  .page-split {
    grid-template-columns: 1fr;
    margin-top: 88px;
    /* Let the fixed book sheet compete with the backdrop in the root stacking context */
    z-index: auto;
  }
  .page-rest { grid-column: 1; }
  .card-book {
    display: inline-block;
  }
  .page-book {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    grid-column: unset;
    grid-row: unset;
    width: min(100%, 400px);
    z-index: 120;
    margin: 0;
    padding: 0 16px 28px;
    background: #fff;
    box-shadow: -16px 0 40px rgba(15, 28, 48, 0.28);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(105%);
    transition: transform 0.35s ease;
    pointer-events: none;
  }
  .page-book.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .page-book .emergency {
    position: static;
    max-height: none;
    border-width: 0;
    padding: 0;
  }
  .page-book .emergency-kicker {
    display: none;
  }
  .book-sheet-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 3;
    margin: 0 -16px 12px;
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .book-sheet-bar-title {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
  }
  .book-sheet-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: static;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f5f7fb;
    color: var(--navy);
    cursor: pointer;
    line-height: 0;
  }
  .book-sheet-close-x {
    display: block;
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-1px);
  }
  .book-sheet-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 110;
    margin: 0;
    border: 0;
    padding: 0;
    background: rgba(15, 28, 48, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .book-sheet-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  body.book-sheet-open {
    overflow: hidden;
  }
  .office-bar { margin-top: 0; }
  .office-switch { width: min(100%, 420px); }
  .office-tab { flex: 1; min-width: 0; padding: 10px 8px 8px; }
  .office-tab-icon { width: 34px; height: 28px; }
  .office-tab-icon--cab,
  .office-tab-icon--pair { width: 40px; }
  .brands-stage { padding: 22px 12px 16px; border-radius: 14px; }
  .flow-body { padding-top: 18px; }
  .cards, .cards-3, .cards-2, .rescue-grid, .steps, .grid-2 { grid-template-columns: 1fr; }
  .hero,
  .hero-photo,
  .hero-copy { min-height: 340px; }
  .hero-copy { padding: 0; }
  .tire-visual { justify-content: center; }
  .tire-photo { height: 200px; }
}

@media (max-width: 560px) {
  .call {
    padding: 6px 12px;
    font-size: 0.84rem;
  }
  .call svg { width: 14px; height: 14px; }
  .call-number { font-size: 0.84rem; }
  .brand-mark { width: 32px; height: 32px; }
  .brand strong,
  .brand em {
    font-size: 0.68rem;
    letter-spacing: 0.03em;
  }
}

/* ~17" screens and up: pull hero up further; show garage (bottom anchor) */
@media (min-width: 1600px) {
  .hero,
  .hero-photo,
  .hero-copy { min-height: 360px; }
  .hero { margin-bottom: 48px; }
  .hero-photo {
    background-position: center 40%;
  }
  .hero-copy {
    align-items: flex-start;
    justify-content: center;
    padding-top: 48px;
  }
  .office-bar {
    transform: translate(-50%, 45%);
  }
  .page-split {
    margin-top: 210px;
  }
}
