/* =========================================================
   RST Roadside Service & Towing — Site Stylesheet
   Brand: Red / White / Charcoal. Calm, industrial, trustworthy.
   ========================================================= */

:root {
  --red: #B3242E;
  --red-dark: #8C1C25;
  --red-darker: #6C161D;
  --ink: #23262B;
  --ink-soft: #32353C;
  --charcoal: #2A2D33;
  --white: #FFFFFF;
  --paper: #FAF7F2;
  --line: #E7E1D6;
  --gray: #5E6167;
  --gray-light: #90939A;
  --amber: #D3941F;
  --shadow-sm: 0 1px 2px rgba(35,38,43,0.06), 0 1px 1px rgba(35,38,43,0.04);
  --shadow-md: 0 6px 20px rgba(35,38,43,0.09), 0 2px 6px rgba(35,38,43,0.05);
  --shadow-lg: 0 20px 50px rgba(35,38,43,0.14), 0 6px 16px rgba(35,38,43,0.07);
  --radius: 8px;
  --radius-lg: 12px;
  --maxw: 1200px;
  --font-head: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
svg { width: 1em; height: 1em; vertical-align: -0.125em; flex: none; }
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 1.25em; }
li { margin-bottom: 0.35em; }
p { margin: 0 0 1em; }
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
section { position: relative; }
.section-pad { padding: 64px 0; }
@media (max-width: 640px) {
  .section-pad { padding: 40px 0; }
  body { font-size: 16px; }
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 0.5em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.005em; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.15rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.005em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--red);
  display: inline-block;
}
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lede { font-size: 1.1rem; color: var(--gray); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 1.08rem; }
@media (max-width: 480px) {
  /* Long CTA labels ("Call Now — (403) 458-6010") must never force the page
     to scroll horizontally on small phones — let them wrap instead. */
  .btn { white-space: normal; text-align: center; line-height: 1.3; padding: 14px 18px; font-size: 0.92rem; gap: 8px; }
  .btn-lg { padding: 15px 20px; font-size: 0.96rem; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-top {
  background: var(--ink);
  color: #cfd1d4;
  font-size: 0.82rem;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 34px;
}
.header-top a { color: #fff; font-weight: 600; }
.header-top .htop-phone { display: flex; align-items: center; gap: 6px; }
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px;
  background: var(--red);
  color: var(--white);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  flex: none;
}
.brand-word { display: flex; flex-direction: column; line-height: 1.05; }
.brand-word strong {
  font-family: var(--font-head);
  font-size: 1.18rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand-word span {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
}
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 13px;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 3px solid transparent;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.open > a { color: var(--red); }
.main-nav > ul > li > a svg { width: 12px; height: 12px; }
.dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  min-width: 260px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .14s ease, transform .14s ease;
}
.main-nav > ul > li:hover .dropdown,
.main-nav > ul > li.open .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 5px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.dropdown a:hover { background: var(--paper); color: var(--red); }
.dropdown .dd-all {
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 10px;
  font-weight: 700;
  color: var(--red);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-call {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: var(--red);
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.header-call svg { width: 20px; height: 20px; flex: none; }
.header-call .hc-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; display: block; }
.header-call .hc-number { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.01em; }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-call .hc-label { display: none; }
  .header-main .container { height: 68px; }
}
@media (max-width: 600px) {
  .header-top { display: none; }
}
@media (max-width: 460px) {
  .brand-word strong { font-size: 0.98rem; }
  .brand-word span { display: none; }
}
@media (max-width: 400px) {
  .header-call .hc-number { display: none; }
  .header-call { padding: 11px; border-radius: 50%; }
}

/* Mobile drawer nav */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 900;
  display: none;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-nav-top .brand-word strong, .mobile-nav-top .brand-word span { color: #fff; }
.mobile-nav-close { background: none; border: none; color: #fff; width: 40px; height: 40px; }
.mobile-nav-close svg { width: 26px; height: 26px; }
.mobile-nav-body { padding: 10px 8px 100px; }
.mobile-nav details {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 12px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary svg { width: 14px; height: 14px; transition: transform .15s; color: #9a9da2; }
.mobile-nav details[open] summary svg { transform: rotate(180deg); }
.mobile-nav .msub { padding: 0 12px 14px 20px; display: flex; flex-direction: column; gap: 2px; }
.mobile-nav .msub a { color: #cfd1d4; padding: 9px 0; font-size: 0.96rem; border-bottom: 1px dashed rgba(255,255,255,0.08); }
.mobile-nav > .mobile-nav-body > a.mtop {
  display: block;
  padding: 16px 12px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-foot { padding: 18px 12px; display: flex; flex-direction: column; gap: 10px; }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 800;
  background: var(--ink);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -6px 18px rgba(0,0,0,0.22);
}
.mobile-cta-bar .mcb-row { display: flex; gap: 8px; }
.mobile-cta-bar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 10px;
  border-radius: 6px;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.mobile-cta-bar a svg { width: 17px; height: 17px; }
.mobile-cta-bar .mcb-call { background: var(--red); color: #fff; }
.mobile-cta-bar .mcb-quote { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
@media (max-width: 780px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 68px; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 68px 0 84px;
  border-bottom: 5px solid var(--red);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 82% 20%, rgba(179,36,46,0.24), transparent 55%);
  pointer-events: none;
}
.hero.hero-photo {
  background-image:
    linear-gradient(100deg, rgba(28,30,34,0.96) 0%, rgba(28,30,34,0.90) 32%, rgba(28,30,34,0.70) 60%, rgba(28,30,34,0.86) 100%),
    url("../images/photos/hero-flatbed.jpg");
  background-size: cover;
  background-position: center 62%;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(179,36,46,0.14);
  border: 1px solid rgba(179,36,46,0.45);
  color: #ff8a97;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.hero-eyebrow svg { width: 13px; height: 13px; }
.hero h1 { color: #fff; margin-bottom: 14px; }
.hero .hero-sub { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.05em; color: #ff8a97; font-size: 1.15rem; margin-bottom: 18px; }
.hero p.hero-desc { color: #c9cbce; font-size: 1.08rem; max-width: 620px; margin-bottom: 28px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-trust { display: grid; grid-template-columns: repeat(4, auto); gap: 22px; }
.hero-trust .ht-item { display: flex; align-items: center; gap: 9px; color: #d7d9db; font-size: 0.88rem; font-weight: 600; }
.hero-trust svg { width: 20px; height: 20px; color: var(--red); flex: none; }
.hero-panel {
  background: rgba(28,30,34,0.94);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.hero-panel h3 { color: #fff; margin-bottom: 6px; }
.hero-panel p { color: #b9bbbe; font-size: 0.94rem; }
.hero-panel .hp-phone {
  display: flex; align-items: center; gap: 12px;
  background: var(--red);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 16px 0;
}
.hero-panel .hp-phone svg { width: 26px; height: 26px; color: #fff; flex: none; }
.hero-panel .hp-phone strong { display: block; color: #fff; font-family: var(--font-head); font-size: 1.4rem; }
.hero-panel .hp-phone span { color: #ffd7dc; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-panel ul { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 9px; }
.hero-panel ul li { display: flex; gap: 9px; align-items: flex-start; color: #d7d9db; font-size: 0.92rem; }
.hero-panel ul svg { width: 16px; height: 16px; color: var(--red); flex: none; margin-top: 3px; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: repeat(2, auto); }
  .hero { padding: 40px 0 56px; }
}

/* ---------- Emergency band ---------- */
.emergency-band {
  background: var(--red);
  color: #fff;
  padding: 34px 0;
}
.emergency-band .eb-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.emergency-band h2 { color: #fff; margin: 0 0 8px; font-size: clamp(1.35rem,3vw,1.9rem); }
.emergency-band .eb-list { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0; padding: 0; list-style: none; }
.emergency-band .eb-list li { color: #ffd7dc; font-size: 0.94rem; font-weight: 600; }
.emergency-band .eb-call {
  display: flex; align-items: center; gap: 12px;
  background: var(--ink);
  padding: 16px 24px;
  border-radius: var(--radius);
  flex: none;
}
.emergency-band .eb-call svg { width: 24px; height: 24px; }
.emergency-band .eb-call strong { font-family: var(--font-head); font-size: 1.3rem; display:block; }
.emergency-band .eb-call span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: #ffb; opacity: 0.8; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .15s ease, transform .15s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 52px; height: 52px;
  background: #fdecef;
  color: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: 8px; }
.card h3 a { color: inherit; }
.card p { color: var(--gray); font-size: 0.96rem; margin-bottom: 10px; }
.card .card-link { color: var(--red); font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.03em; display: inline-flex; align-items: center; gap: 6px; }
.card .card-link svg { width: 14px; height: 14px; }

.service-cat-card {
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow-md);
}
.service-cat-card.alt { background: var(--red); }
.service-cat-card h3 { color: #fff; }
.service-cat-card p { color: rgba(255,255,255,0.78); }
.service-cat-card ul { list-style: none; padding: 0; margin: 16px 0; display: flex; flex-direction: column; gap: 8px; }
.service-cat-card ul a { color: rgba(255,255,255,0.9); font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.service-cat-card ul a:hover { color: #fff; text-decoration: underline; }
.service-cat-card ul svg { width: 14px; height: 14px; flex: none; }

/* ---------- Alt section bg ---------- */
.bg-paper { background: var(--paper); }
.bg-ink { background: var(--ink); color: #fff; }
.bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }
.bg-ink p { color: #c4c6c9; }
.bg-ink .eyebrow { color: #ff8a97; }
.bg-ink .eyebrow::before { background: #ff8a97; }

/* ---------- Two-col content block ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 30px; } }
.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }
/* Keep the shorter column (usually a photo + call-out panel) pinned alongside
   long-form copy instead of leaving a tall empty gap once its own content ends. */
@media (min-width: 901px) {
  .split > *:last-child { position: sticky; top: 108px; align-self: start; }
}

.info-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 24px;
}
.info-panel h4 { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.info-panel h4 svg { width: 18px; height: 18px; color: var(--red); }

.checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }
.checklist svg { width: 19px; height: 19px; color: var(--red); flex: none; margin-top: 2px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step .step-num {
  width: 40px; height: 40px;
  background: var(--red); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  margin-bottom: 14px;
}
.step h4 { margin-bottom: 6px; }
.step p { color: var(--gray); font-size: 0.92rem; }

/* ---------- Scenario list ---------- */
.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .scenario-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .scenario-grid { grid-template-columns: 1fr; } }
.scenario {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.scenario .sc-quote { font-family: var(--font-head); font-size: 1.02rem; text-transform: none; letter-spacing: 0; color: var(--ink); margin-bottom: 8px; }
.scenario .sc-quote::before { content: "\201C"; color: var(--red); font-size: 1.3em; }
.scenario p { color: var(--gray); font-size: 0.9rem; margin-bottom: 10px; }
.scenario a { color: var(--red); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; }

/* ---------- Area cards ---------- */
.area-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.area-card .ac-head {
  background: var(--ink);
  color: #fff;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.area-card .ac-head h3 { color: #fff; margin: 0; }
.area-card .ac-head svg { width: 22px; height: 22px; color: var(--red); }
.area-card .ac-body { padding: 20px 22px; }
.area-card p { color: var(--gray); font-size: 0.94rem; }
.area-card .card-link { margin-top: 6px; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 4px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 16px; height: 16px; color: var(--red); flex: none; transition: transform .15s; }
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 4px 20px; color: var(--gray); max-width: 850px; }
.faq-item .faq-a p:last-child { margin-bottom: 0; }

/* ---------- Compare table ---------- */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.compare { width: 100%; border-collapse: collapse; min-width: 560px; }
table.compare th, table.compare td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
table.compare thead th { background: var(--ink); color: #fff; font-family: var(--font-head); text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.03em; }
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare tbody tr:nth-child(odd) { background: var(--paper); }
table.compare td:first-child { font-weight: 700; white-space: nowrap; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { background: var(--paper); border-bottom: 1px solid var(--line); }
.breadcrumbs .container { display: flex; align-items: center; gap: 8px; padding: 12px 20px; font-size: 0.84rem; color: var(--gray); flex-wrap: wrap; }
.breadcrumbs a { color: var(--gray); font-weight: 600; }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs .sep { color: var(--gray-light); }
.breadcrumbs .current { color: var(--ink); font-weight: 700; }

/* ---------- Page header (interior pages) ---------- */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 44px 0 40px;
  border-bottom: 5px solid var(--red);
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #c4c6c9; max-width: 720px; font-size: 1.05rem; margin-bottom: 22px; }
.page-hero .phc { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--red-darker), var(--red));
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.final-cta h2 { color: #fff; margin-bottom: 10px; }
.final-cta p { color: #ffd7dc; font-size: 1.1rem; max-width: 620px; margin: 0 auto 30px; }
.final-cta .fc-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.final-cta .btn-primary { background: var(--ink); }
.final-cta .btn-primary:hover { background: #000; }

/* ---------- Quote form ---------- */
.quote-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.quote-form .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 560px) { .quote-form .f-row { grid-template-columns: 1fr; } }
.quote-form label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; color: var(--ink-soft); }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--paper);
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none; border-color: var(--red); background: #fff;
}
.quote-form .fld { margin-bottom: 14px; }
.quote-form .form-note { font-size: 0.82rem; color: var(--gray); margin-top: 12px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #b6b8bb; }
.footer-top { padding: 56px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 0.86rem; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-grid a { font-size: 0.92rem; color: #b6b8bb; }
.footer-grid a:hover { color: #fff; }
.footer-brand .brand-word strong, .footer-brand .brand-word span { color: #fff; }
.footer-brand .f-tag { font-family: var(--font-head); color: #ff8a97; text-transform: uppercase; letter-spacing: 0.04em; margin: 14px 0 16px; font-size: 0.95rem; }
.footer-brand .f-contact { display: flex; flex-direction: column; gap: 8px; font-size: 0.92rem; }
.footer-brand .f-contact a { display: flex; align-items: center; gap: 9px; color: #e7e8ea; font-weight: 600; }
.footer-brand .f-contact svg { width: 16px; height: 16px; color: var(--red); flex: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  font-size: 0.82rem;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-bottom a { color: #9a9da2; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .fb-legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Misc ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.tag {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.divider-red { height: 4px; width: 64px; background: var(--red); margin: 18px 0; }
.callout {
  background: var(--paper);
  border-left: 5px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 22px 0;
}
.callout p:last-child { margin-bottom: 0; }
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--red); color: #fff; padding: 10px 16px; z-index: 2000;
}
.skip-link:focus { left: 10px; top: 10px; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.center-cta { text-align: center; margin-top: 30px; }
.small-print { font-size: 0.82rem; color: var(--gray-light); }

/* ---------- Photos ---------- */
.photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  background: var(--paper);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame.ratio-4-3 { aspect-ratio: 4 / 3; }
.photo-frame.ratio-3-2 { aspect-ratio: 3 / 2; }
.photo-frame.ratio-16-9 { aspect-ratio: 16 / 9; }
.photo-frame.ratio-1-1 { aspect-ratio: 1 / 1; }
.photo-frame .pf-tag {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(35,38,43,0.85);
  color: #fff;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  border-left: 3px solid var(--red);
}
.photo-frame.accent-top { border-top: 4px solid var(--red); }

.fleet-strip { margin-top: 30px; }
.fleet-strip .fs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .fleet-strip .fs-grid { grid-template-columns: 1fr; } }
.fleet-strip figure { margin: 0; }
.fleet-strip figcaption {
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--gray);
  font-weight: 500;
}
.fleet-strip figcaption strong { color: var(--ink); font-weight: 700; }
