/* APEX AUTO GROUP — Mainstay Premium tier */
:root {
  --primary: #1f2227;
  --primary-dark: #13161a;
  --bg: #f6f1e6;
  --bg-alt: #ecdfc8;
  --card: #ffffff;
  --ink: #1c1f24;
  --ink-soft: #5b5f66;
  --rule: #cdc6b3;
  --accent-cordovan: #6a1f23;
  --accent-brass: #9a7530;
  --accent-muted: #8a8074;
  --shadow: rgba(31, 34, 39, 0.12);
  --display: 'Manrope', system-ui, sans-serif;
  --body: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--rule); text-decoration-thickness: 1px; text-underline-offset: 0.2em; transition: text-decoration-color 0.2s, color 0.2s; }
a:hover { text-decoration-color: var(--accent-cordovan); color: var(--accent-cordovan); }

h1, h2, h3, h4 { font-family: var(--display); color: var(--primary); font-weight: 600; line-height: 1.1; }
h1 { font-size: clamp(2.875rem, 5.5vw, 4.5rem); font-weight: 600; line-height: 1.05; letter-spacing: -0.022em; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.625rem); font-weight: 500; letter-spacing: -0.015em; line-height: 1.1; }
h3 { font-size: 1.4rem; font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1em; }
em { font-style: italic; }
strong { font-weight: 600; color: var(--primary); }

.smallcaps {
  font-family: var(--body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--ink-soft);
  display: inline-block;
}
.smallcaps--brass { color: var(--accent-brass); }
.smallcaps--cordovan { color: var(--accent-cordovan); }
.smallcaps--ivory { color: var(--bg); }

.eyebrow {
  display: inline-flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: 1rem;
}
.eyebrow::after {
  content: ''; width: 24px; height: 2px; background: var(--accent-brass);
}
.eyebrow--center { align-items: center; }
.eyebrow--center::after { margin: 0 auto; }

.wrap { max-width: 76rem; margin: 0 auto; padding: 0 1.5rem; }
.wrap--narrow { max-width: 44rem; margin: 0 auto; padding: 0 1.5rem; }
.wrap--medium { max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; }
.wrap--prose { max-width: 46rem; margin: 0 auto; padding: 0 1.5rem; }

.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--primary); color: var(--bg);
  padding: 0.5rem 1rem; font-size: 0.85rem; z-index: 200; text-decoration: none;
}
.skip-link:focus { top: 0; }

/* HEADER */
.site-header {
  position: sticky; top: 0; background: var(--bg);
  z-index: 100; transition: box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { box-shadow: 0 4px 16px var(--shadow); }
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 0;
}
.brandlock { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.brandlock-seal {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-cordovan);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 0.55rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  line-height: 1; text-align: center;
  border: 2px solid var(--accent-brass);
}
.brandlock-seal span { display: block; }
.wordmark-block { display: flex; flex-direction: column; line-height: 1; }
.wordmark {
  font-family: var(--display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--primary); text-decoration: none;
  letter-spacing: -0.01em;
}
.wordmark-tag {
  font-family: var(--body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 0.35rem;
}
.site-nav { display: flex; gap: 1.85rem; align-items: center; justify-self: center; }
.site-nav a {
  font-family: var(--body); font-size: 0.9rem;
  color: var(--ink); text-decoration: none; font-weight: 500;
  transition: color 0.2s;
}
.site-nav a:hover, .site-nav a.is-current { color: var(--accent-cordovan); }
.site-nav a.is-current { border-bottom: 1px solid var(--accent-brass); padding-bottom: 0.25rem; }

.header-phone-block { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.05; }
.header-phone-eyebrow {
  font-family: var(--body); font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500; color: var(--ink-soft);
  margin-bottom: 0.3rem;
}
.header-phone {
  font-family: var(--display); font-size: 1.25rem; font-weight: 500;
  letter-spacing: 0.005em; color: var(--primary); text-decoration: none;
}
.header-phone:hover { color: var(--accent-cordovan); }
.header-cta {
  font-family: var(--body); font-size: 0.82rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.15em;
  background: var(--accent-cordovan); color: var(--bg);
  padding: 0.85rem 1.25rem; text-decoration: none;
  transition: background 0.2s;
}
.header-cta:hover { background: #511619; color: var(--bg); }

.location-selector {
  font-family: var(--body); font-size: 0.85rem; font-weight: 500;
  border: 1px solid var(--rule); background: var(--card);
  color: var(--primary); padding: 0.55rem 0.85rem;
  margin-right: 0.5rem;
}
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem; font-size: 1.4rem; color: var(--primary); }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 1fr auto auto; gap: 1rem; }
  .site-nav { display: none; }
  .location-selector { display: none; }
}
@media (max-width: 720px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .header-phone-block { display: none; }
  .menu-toggle { display: block; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--body); font-size: 0.88rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 1rem 1.5rem; text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid transparent; cursor: pointer;
}
.btn--primary { background: var(--accent-cordovan); color: var(--bg); }
.btn--primary:hover { background: #511619; color: var(--bg); }
.btn--ghost-ivory { background: transparent; color: var(--bg); border-color: var(--bg); }
.btn--ghost-ivory:hover { background: var(--bg); color: var(--primary); }
.btn--ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--ghost:hover { background: var(--primary); color: var(--bg); }
.btn--link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--body); font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent-cordovan); text-decoration: none;
  padding: 0.5rem 0; border-bottom: 1px solid var(--accent-cordovan);
}
.btn--link:hover { color: #511619; border-color: #511619; }

/* HOMEPAGE HERO — Pattern #4 editorial-magazine cover */
.hero-editorial {
  background: var(--bg);
  padding: 5rem 0 6rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.hero-editorial-grid {
  display: grid;
  grid-template-columns: 60% 35%;
  gap: 5%;
  align-items: end;
}
.hero-editorial-text { position: relative; padding-bottom: 1rem; }
.hero-editorial-text .smallcaps { color: var(--accent-brass); margin-bottom: 2rem; display: block; }
.hero-editorial h1 {
  color: var(--primary);
  margin-bottom: 2rem;
  text-wrap: balance;
}
.hero-editorial-rule {
  width: 64px; height: 3px; background: var(--accent-brass);
  margin: 2rem 0;
}
.hero-editorial-sub {
  font-size: 1.25rem; line-height: 1.5; color: var(--ink);
  max-width: 36ch; margin-bottom: 2.5rem;
}
.hero-editorial-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-editorial-image {
  aspect-ratio: 3 / 4;
  background-size: cover; background-position: center;
  box-shadow: -32px 32px 0 var(--accent-brass), 0 20px 60px var(--shadow);
  position: relative;
  align-self: end;
}
@media (max-width: 980px) {
  .hero-editorial-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-editorial-image { aspect-ratio: 4 / 3; box-shadow: 0 20px 60px var(--shadow); }
}

/* PAGE HERO (interior pages) */
.page-hero {
  position: relative;
  min-height: 360px;
  padding: 5rem 0 3rem;
  background: var(--primary);
  color: var(--bg);
  overflow: hidden;
}
.page-hero--tall { min-height: 480px; }
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.42;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,22,26,0.4) 0%, rgba(19,22,26,0.85) 100%);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: var(--bg); max-width: 22ch; text-wrap: balance; }
.page-hero .smallcaps { color: var(--accent-brass); margin-bottom: 1.5rem; display: block; }
.page-hero-rule { width: 32px; height: 2px; background: var(--accent-brass); margin: 1.5rem 0; }
.page-hero-sub { color: rgba(246,241,230,0.9); font-size: 1.125rem; max-width: 56ch; }

.breadcrumb {
  font-family: var(--body); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(246,241,230,0.7); margin-bottom: 1.5rem; display: block;
}
.breadcrumb a { color: rgba(246,241,230,0.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-brass); }

/* SECTION SCAFFOLD */
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--primary); color: var(--bg); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--bg); }
.section--card { background: var(--card); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .smallcaps { color: var(--accent-brass); display: block; margin-bottom: 1rem; }
.section-header h2 { max-width: 28ch; margin: 0 auto; text-wrap: balance; }

/* LOCATIONS STRIP (5 cards) */
.locations-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.location-card {
  background: var(--card);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
}
.location-card-img {
  aspect-ratio: 3 / 2;
  background-size: cover; background-position: center;
}
.location-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.location-card h3 {
  font-family: var(--display); font-size: 1.25rem; font-weight: 600;
  margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.location-card-addr { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0.5rem; }
.location-card-phone {
  font-family: var(--display); font-size: 1rem; font-weight: 500;
  display: block; margin-bottom: 1rem; text-decoration: none; color: var(--primary);
}
.location-card-phone:hover { color: var(--accent-cordovan); }
.location-card .btn--link { margin-top: auto; }
@media (max-width: 1100px) { .locations-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .locations-strip { grid-template-columns: 1fr; } }

/* BLUE SEAL BAND */
.blue-seal-band { text-align: center; }
.blue-seal-band h2 { max-width: 32ch; margin: 0 auto 2rem; }
.blue-seal-band .blue-seal-essay {
  max-width: 46rem; margin: 0 auto 3rem; font-size: 1.125rem; line-height: 1.7;
}
.blue-seal-card {
  background: var(--card);
  border: 2px solid var(--accent-brass);
  padding: 2.5rem;
  max-width: 32rem; margin: 0 auto;
  text-align: center;
  box-shadow: 0 8px 32px var(--shadow);
}
.blue-seal-emblem {
  width: 110px; height: 110px; margin: 0 auto 1.5rem;
  background: var(--accent-cordovan); color: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 50%; border: 4px solid var(--accent-brass);
  font-family: var(--display); font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center; line-height: 1.3; padding: 0.5rem;
}
.blue-seal-emblem strong { display: block; font-size: 1.1rem; letter-spacing: 0.05em; margin: 0.15rem 0; color: var(--bg); }

/* NUMERICAL CREDENTIALS BAND */
.credentials-band {
  background: var(--primary);
  color: var(--bg);
  padding: 4rem 0;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}
.cred-stat { font-variant-numeric: tabular-nums; }
.cred-stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--bg);
  line-height: 1; letter-spacing: -0.02em;
  display: block; margin-bottom: 0.5rem;
}
.cred-stat-num em { color: var(--accent-brass); font-style: normal; }
.cred-stat-label {
  font-family: var(--body); font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(246,241,230,0.72); font-weight: 500;
  max-width: 18ch; margin: 0 auto; line-height: 1.4;
}
@media (max-width: 880px) { .credentials-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
@media (max-width: 480px) { .credentials-grid { grid-template-columns: 1fr; } }

/* SERVICES GRID 5-col */
.services-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem 1.25rem;
}
.svc-tile {
  background: transparent;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
  display: block;
  transition: border-color 0.2s;
}
.svc-tile:hover { border-top-color: var(--accent-cordovan); }
.svc-tile-icon {
  width: 36px; height: 36px; margin-bottom: 1.25rem;
  stroke: var(--primary); stroke-width: 1.25; fill: none;
}
.svc-tile h3 {
  font-family: var(--display); font-size: 1.05rem; font-weight: 500;
  margin-bottom: 0.5rem; letter-spacing: -0.005em;
}
.svc-tile p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }
@media (max-width: 980px) { .services-grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .services-grid-5 { grid-template-columns: repeat(2, 1fr); } }

/* SERVICES GRID 2-col (services index page) */
.services-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.svc-card {
  background: var(--card);
  border: 1px solid var(--rule);
}
.svc-card-img {
  aspect-ratio: 16 / 9;
  background-size: cover; background-position: center;
}
.svc-card-body { padding: 2rem; }
.svc-card-body .smallcaps { color: var(--accent-brass); display: block; margin-bottom: 0.75rem; }
.svc-card-body h2 {
  font-family: var(--display); font-size: 1.75rem; font-weight: 600;
  letter-spacing: -0.01em; margin-bottom: 1rem;
}
.svc-card-body ul { list-style: none; margin: 1.25rem 0; padding: 0; }
.svc-card-body li {
  padding: 0.4rem 0 0.4rem 1.5rem; position: relative;
  font-size: 0.95rem; color: var(--ink);
}
.svc-card-body li::before {
  content: ''; position: absolute; left: 0; top: 0.85rem;
  width: 8px; height: 1px; background: var(--accent-brass);
}
@media (max-width: 760px) { .services-grid-2 { grid-template-columns: 1fr; } }

/* FLEET BAND (image + copy) */
.fleet-band { background: var(--bg-alt); padding: 5rem 0; }
.fleet-band-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4rem;
  align-items: center;
}
.fleet-band-image {
  aspect-ratio: 16 / 9;
  background-size: cover; background-position: center;
  box-shadow: 0 20px 60px var(--shadow);
}
.fleet-band-text .smallcaps { color: var(--accent-brass); display: block; margin-bottom: 1rem; }
.fleet-band-text h2 { margin-bottom: 1.5rem; text-wrap: balance; }
.fleet-band-text p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.25rem; }
.fleet-band-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
@media (max-width: 980px) { .fleet-band-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* PULL-QUOTES */
.pullquote {
  padding: 5rem 0;
  text-align: center;
}
.pullquote--alt { background: var(--bg-alt); }
.pullquote-text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  line-height: 1.45;
  color: var(--primary);
  max-width: 56rem; margin: 0 auto 1.75rem;
  text-wrap: balance;
}
.pullquote-attr {
  font-family: var(--body); font-size: 0.82rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--ink-soft);
}
.pullquote--inline { padding: 3rem 0; }
.pullquote--inline .pullquote-text { font-size: 1.5rem; }

/* REVIEWS */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--rule);
  padding: 1.75rem;
}
.review-card-source {
  font-family: var(--body); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--ink-soft); margin-bottom: 0.75rem;
}
.review-card-stars { color: var(--accent-cordovan); margin-bottom: 1rem; letter-spacing: 0.05em; }
.review-card-quote {
  font-style: italic; font-size: 1.0625rem; line-height: 1.55;
  color: var(--ink); margin-bottom: 1rem;
}
.review-card-attr {
  font-family: var(--body); font-size: 0.78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent-cordovan); display: block;
}
.reviews-summary {
  text-align: center; padding: 2.5rem 0 0;
  font-family: var(--display); font-size: 1.05rem; font-weight: 500;
}
.reviews-summary-links { margin-top: 1rem; display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 980px) { .reviews-grid { grid-template-columns: 1fr; } }

/* SERVICE AREA + MAP */
.area-map-grid {
  display: grid; grid-template-columns: 5fr 4fr; gap: 3rem; align-items: stretch;
}
.area-map-frame {
  width: 100%; min-height: 420px; border: 0;
  filter: saturate(0.85) contrast(1.05);
  background: var(--bg-alt);
}
.area-map-info .smallcaps { color: var(--accent-brass); display: block; margin-bottom: 1rem; }
.area-map-info h3 { font-size: 1.75rem; margin-bottom: 1.25rem; font-family: var(--display); font-weight: 600; }
.area-map-info p { font-size: 1.0625rem; line-height: 1.7; }
@media (max-width: 880px) { .area-map-grid { grid-template-columns: 1fr; } }

/* FOOTER — 3 bands */
.footer-top {
  background: var(--primary-dark);
  color: var(--bg);
  padding: 4rem 0 3rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 2.5rem;
}
.footer-grid h4 {
  font-family: var(--body); font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--accent-brass); margin-bottom: 1rem;
}
.footer-grid p, .footer-grid li, .footer-grid address {
  font-size: 0.92rem; line-height: 1.65; color: rgba(246,241,230,0.85);
  font-style: normal;
}
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: 0.4rem; }
.footer-grid a { color: rgba(246,241,230,0.85); text-decoration: none; transition: color 0.2s; }
.footer-grid a:hover { color: var(--accent-brass); }
.footer-wordmark {
  font-family: var(--display); font-size: 1.25rem; font-weight: 700;
  color: var(--bg); display: block; margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.footer-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 1.25rem; }
.footer-badge {
  background: rgba(154,117,48,0.15);
  border: 1px solid var(--accent-brass);
  padding: 0.5rem; font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent-brass); text-align: center; font-weight: 500;
  line-height: 1.3;
}
.footer-middle {
  background: var(--bg-alt);
  padding: 1.5rem 0;
  text-align: center;
  border-top: 2px solid var(--accent-brass);
  border-bottom: 2px solid var(--accent-brass);
}
.footer-middle p {
  font-family: var(--display); font-size: 0.95rem; font-weight: 500;
  color: var(--primary); margin: 0; letter-spacing: -0.005em;
}
.footer-bottom {
  background: var(--primary-dark);
  color: rgba(246,241,230,0.55);
  padding: 1.25rem 0;
  font-size: 0.82rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom em { font-style: italic; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom .wrap { flex-direction: column; text-align: center; } }

/* LOCATION DETAIL PAGE — sticky NAP card layout */
.loc-layout {
  display: grid; grid-template-columns: 1fr 22rem; gap: 4rem;
  padding: 4rem 0; align-items: start;
}
.loc-sticky {
  position: sticky; top: 6rem;
  background: var(--card); border: 1px solid var(--rule);
  padding: 2rem; box-shadow: 0 8px 32px var(--shadow);
}
.loc-sticky h3 { font-family: var(--display); font-size: 1.1rem; margin-bottom: 1rem; }
.loc-sticky address {
  font-style: normal; font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.25rem;
}
.loc-sticky .loc-phone {
  font-family: var(--display); font-size: 1.25rem; font-weight: 500;
  display: block; margin-bottom: 1.25rem; color: var(--primary); text-decoration: none;
}
.loc-sticky-hours {
  font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1.5rem; line-height: 1.5;
}
.loc-sticky-hours strong { color: var(--primary); }
.loc-article h2 {
  font-family: var(--display); font-size: 1.625rem; margin: 2.5rem 0 1.25rem;
}
.loc-article p { font-size: 1.0625rem; line-height: 1.7; }
.loc-amenities {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  padding: 3rem 0; border-top: 1px solid var(--rule);
}
.loc-amenity h4 { font-family: var(--display); font-size: 1.05rem; margin-bottom: 0.5rem; }
.loc-amenity p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.loc-cross {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  padding: 3rem 0; border-top: 1px solid var(--rule);
}
.loc-cross-card { background: var(--card); border: 1px solid var(--rule); padding: 1.25rem; text-decoration: none; }
.loc-cross-card h4 { font-family: var(--display); font-size: 1rem; margin-bottom: 0.35rem; }
.loc-cross-card span { font-family: var(--body); font-size: 0.78rem; color: var(--accent-cordovan); text-transform: uppercase; letter-spacing: 0.14em; }
@media (max-width: 980px) {
  .loc-layout { grid-template-columns: 1fr; }
  .loc-sticky { position: static; }
  .loc-amenities { grid-template-columns: 1fr; }
  .loc-cross { grid-template-columns: 1fr 1fr; }
}

/* LOCATIONS INDEX — alternating image-text blocks */
.loc-alt-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; padding: 4rem 0;
  border-bottom: 1px solid var(--rule);
}
.loc-alt-block:nth-child(even) .loc-alt-image { order: 2; }
.loc-alt-image {
  aspect-ratio: 16 / 9;
  background-size: cover; background-position: center;
  box-shadow: 0 16px 48px var(--shadow);
}
.loc-alt-text .smallcaps { color: var(--accent-brass); display: block; margin-bottom: 0.75rem; }
.loc-alt-text h2 { font-family: var(--display); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.loc-alt-text address { font-style: normal; margin-bottom: 1rem; line-height: 1.6; }
.loc-alt-text .loc-alt-phone {
  font-family: var(--display); font-size: 1.15rem; font-weight: 500;
  display: block; margin-bottom: 1rem; text-decoration: none; color: var(--primary);
}
@media (max-width: 760px) {
  .loc-alt-block { grid-template-columns: 1fr; }
  .loc-alt-block:nth-child(even) .loc-alt-image { order: 0; }
}

/* SERVICE DETAIL — article + sidebar */
.svc-detail-layout {
  display: grid; grid-template-columns: 1fr 20rem; gap: 4rem;
  padding: 4rem 0; align-items: start;
}
.svc-detail-article {
  max-width: 44rem;
}
.svc-detail-article h2 {
  font-family: var(--display); font-size: 1.625rem; font-weight: 600;
  margin: 3rem 0 1rem; letter-spacing: -0.01em;
}
.svc-detail-article h2 .smallcaps {
  display: block; color: var(--accent-brass);
  font-size: 0.72rem; font-weight: 500; margin-bottom: 0.5rem;
}
.svc-detail-article p { font-size: 1.0625rem; line-height: 1.75; margin-bottom: 1.25rem; }
.svc-detail-article p.lead { font-size: 1.15rem; line-height: 1.7; }
.svc-detail-article dl {
  margin: 1.5rem 0;
  display: grid; grid-template-columns: 1fr; gap: 0.85rem;
}
.svc-detail-article dt {
  font-family: var(--body); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-weight: 600; color: var(--accent-cordovan);
}
.svc-detail-article dd { font-size: 1rem; color: var(--ink); padding-left: 0; margin-bottom: 0.5rem; }
.svc-detail-article ul { margin: 1rem 0 1.5rem 1.25rem; }
.svc-detail-article li { margin-bottom: 0.5rem; line-height: 1.6; }
.svc-sidebar {
  position: sticky; top: 6rem;
  background: var(--card); border: 1px solid var(--rule);
  padding: 1.75rem;
}
.svc-sidebar h4 { font-family: var(--display); font-size: 1.1rem; margin-bottom: 1rem; }
.svc-sidebar ul { list-style: none; padding: 0; margin: 1rem 0; }
.svc-sidebar li { padding: 0.4rem 0; border-bottom: 1px solid var(--rule); }
.svc-sidebar li:last-child { border: 0; }
.svc-sidebar a { font-size: 0.92rem; text-decoration: none; color: var(--primary); }
.svc-sidebar a:hover { color: var(--accent-cordovan); }
@media (max-width: 980px) {
  .svc-detail-layout { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
}

/* FAQ */
.faq-block { padding: 3rem 0; }
.faq-block details {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0;
}
.faq-block details:last-child { border-bottom: 1px solid var(--rule); }
.faq-block summary {
  font-family: var(--display); font-size: 1.15rem; font-weight: 600;
  color: var(--primary); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-block summary::after { content: '+'; font-size: 1.5rem; color: var(--accent-cordovan); font-weight: 300; }
.faq-block details[open] summary::after { content: '−'; }
.faq-block details p { padding: 1rem 0 0; font-size: 1rem; line-height: 1.7; color: var(--ink); }

/* FLEET PAGE — segments */
.segment-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  padding: 3rem 0;
}
.segment-card {
  background: var(--card); border: 1px solid var(--rule);
  padding: 1.75rem; display: flex; flex-direction: column;
}
.segment-card-num {
  font-family: var(--display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; color: var(--accent-brass);
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.segment-card h3 { font-family: var(--display); font-size: 1.15rem; margin-bottom: 0.75rem; }
.segment-card p { font-size: 0.95rem; line-height: 1.55; color: var(--ink); margin: 0; }
@media (max-width: 980px) { .segment-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .segment-grid { grid-template-columns: 1fr; } }

.sla-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3rem 0;
}
.sla-list { list-style: none; padding: 0; }
.sla-list li {
  padding: 1.25rem 0; border-bottom: 1px solid var(--rule);
}
.sla-list li:last-child { border: 0; }
.sla-list strong {
  display: block; font-family: var(--display); font-size: 1.05rem;
  color: var(--accent-cordovan); margin-bottom: 0.4rem; font-weight: 600;
}
.sla-list span { font-size: 0.98rem; line-height: 1.6; }
@media (max-width: 760px) { .sla-grid { grid-template-columns: 1fr; } }

/* PRICING TIERS (commercial accounts) */
.tier-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  padding: 3rem 0;
}
.tier-card {
  background: var(--card); border: 1px solid var(--rule);
  padding: 2rem;
}
.tier-card--featured {
  border-color: var(--accent-brass);
  border-width: 2px;
  box-shadow: 0 12px 36px var(--shadow);
}
.tier-card-num {
  font-family: var(--display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; color: var(--accent-brass); text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.tier-card h3 { font-family: var(--display); font-size: 1.3rem; margin-bottom: 0.5rem; }
.tier-card-price {
  font-family: var(--display); font-size: 0.95rem; color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.tier-card ul { list-style: none; padding: 0; margin: 1rem 0; }
.tier-card li {
  padding: 0.45rem 0 0.45rem 1.5rem; position: relative;
  font-size: 0.95rem;
}
.tier-card li::before {
  content: ''; position: absolute; left: 0; top: 0.85rem;
  width: 10px; height: 1px; background: var(--accent-brass);
}
@media (max-width: 880px) { .tier-grid { grid-template-columns: 1fr; } }

/* FLEET CONSULTATION FORM */
.form-layout {
  display: grid; grid-template-columns: 5fr 4fr; gap: 3rem; padding: 4rem 0;
}
.form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-fields .form-full { grid-column: 1 / -1; }
.form-fields label {
  font-family: var(--body); font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-soft); display: block; margin-bottom: 0.5rem;
}
.form-fields input, .form-fields select, .form-fields textarea {
  width: 100%; padding: 0.75rem 0.9rem;
  font-family: var(--body); font-size: 1rem;
  border: 1px solid var(--rule); background: var(--card); color: var(--ink);
  border-radius: 0;
}
.form-fields textarea { min-height: 7rem; resize: vertical; }
.form-fields input:focus, .form-fields select:focus, .form-fields textarea:focus {
  outline: 2px solid var(--accent-cordovan); outline-offset: 1px;
}
.form-checkboxes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
  margin-top: 0.5rem;
}
.form-checkboxes label {
  font-size: 0.88rem; letter-spacing: 0; text-transform: none;
  color: var(--ink); font-weight: 400;
  display: flex; gap: 0.5rem; align-items: center;
  margin: 0;
}
.form-aside {
  background: var(--bg-alt);
  padding: 2rem;
  align-self: start;
  position: sticky; top: 6rem;
}
.form-aside h4 { font-family: var(--display); font-size: 1.1rem; margin-bottom: 1rem; }
.form-aside p { font-size: 0.95rem; margin-bottom: 1rem; }
.form-aside ol {
  list-style: none; counter-reset: step; padding: 0;
}
.form-aside ol li {
  counter-increment: step; padding: 0.65rem 0 0.65rem 2.5rem;
  position: relative; border-top: 1px solid var(--rule);
  font-size: 0.92rem; line-height: 1.5;
}
.form-aside ol li:first-child { border-top: 0; }
.form-aside ol li::before {
  content: counter(step, decimal-leading-zero); position: absolute;
  left: 0; top: 0.8rem; font-family: var(--display); font-weight: 700;
  color: var(--accent-brass); font-size: 0.85rem; letter-spacing: 0.1em;
}
@media (max-width: 980px) {
  .form-layout { grid-template-columns: 1fr; }
  .form-aside { position: static; }
}

/* TEAM */
.team-leadership { display: grid; grid-template-columns: 1fr; gap: 0; }
.team-leader-card {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem;
  padding: 3rem 0; align-items: center; border-bottom: 1px solid var(--rule);
}
.team-leader-card:nth-child(even) .team-leader-img { order: 2; }
.team-leader-img {
  aspect-ratio: 4 / 5; max-height: 28rem;
  background-size: cover; background-position: center top;
  box-shadow: 0 12px 36px var(--shadow);
}
.team-leader-text .smallcaps { color: var(--accent-brass); display: block; margin-bottom: 0.5rem; }
.team-leader-text h3 { font-family: var(--display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.team-leader-text .team-role {
  font-family: var(--body); font-size: 0.85rem; color: var(--accent-cordovan);
  text-transform: uppercase; letter-spacing: 0.16em; font-weight: 500;
  display: block; margin-bottom: 1rem;
}
.team-leader-text p { font-size: 1rem; line-height: 1.7; margin-bottom: 1rem; }
@media (max-width: 760px) {
  .team-leader-card { grid-template-columns: 1fr; }
  .team-leader-card:nth-child(even) .team-leader-img { order: 0; }
}

.master-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
  padding: 3rem 0;
}
.master-card {
  background: var(--card); border: 1px solid var(--rule);
  overflow: hidden;
}
.master-card-img {
  aspect-ratio: 4 / 5;
  background-size: cover; background-position: center top;
}
.master-card-body { padding: 1.25rem; }
.master-card-body h4 { font-family: var(--display); font-size: 1.05rem; margin-bottom: 0.25rem; }
.master-card-body .master-meta {
  font-size: 0.78rem; color: var(--accent-cordovan);
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500;
  margin-bottom: 0.75rem; display: block;
}
.master-card-body p { font-size: 0.88rem; color: var(--ink); margin: 0; line-height: 1.5; }
@media (max-width: 760px) { .master-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .master-grid { grid-template-columns: 1fr; } }

/* REVIEWS PAGE */
.review-stats-band {
  background: var(--primary); color: var(--bg);
  padding: 3rem 0; margin-bottom: 4rem;
}
.review-stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem;
  text-align: center;
}
.review-stat strong {
  font-family: var(--display); font-size: 2.25rem; font-weight: 700;
  color: var(--accent-brass); display: block; line-height: 1; letter-spacing: -0.01em;
}
.review-stat span {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(246,241,230,0.75); display: block; margin-top: 0.5rem;
}
@media (max-width: 880px) { .review-stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

/* CONTACT PAGE */
.contact-grid {
  display: grid; grid-template-columns: 5fr 4fr; gap: 3rem; padding: 4rem 0;
}
.contact-nap {
  background: var(--bg-alt); padding: 2rem;
}
.contact-nap h3 { font-family: var(--display); margin-bottom: 1.25rem; }
.contact-nap address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.contact-nap .loc-phone {
  font-family: var(--display); font-size: 1.15rem; font-weight: 500;
  text-decoration: none; color: var(--primary);
}
.contact-locations-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  padding: 3rem 0; border-top: 1px solid var(--rule);
}
.contact-loc-card {
  background: var(--card); border: 1px solid var(--rule);
  padding: 1.25rem; text-decoration: none;
}
.contact-loc-card h4 { font-family: var(--display); font-size: 1.05rem; margin-bottom: 0.35rem; }
.contact-loc-card p { font-size: 0.85rem; color: var(--ink-soft); margin: 0.25rem 0; line-height: 1.4; }
.contact-loc-card a { color: var(--primary); }
@media (max-width: 1100px) { .contact-locations-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-locations-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .contact-locations-grid { grid-template-columns: 1fr; } }

/* CTA CLOSER */
.cta-closer {
  background: var(--primary); color: var(--bg);
  padding: 4rem 0; text-align: center;
}
.cta-closer h2 { color: var(--bg); max-width: 32ch; margin: 0 auto 1.5rem; }
.cta-closer p { color: rgba(246,241,230,0.85); max-width: 48ch; margin: 0 auto 2rem; }
.cta-closer-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* PROSE LONG-FORM */
.prose { max-width: 46rem; margin: 0 auto; padding: 4rem 1.5rem; }
.prose h2 {
  font-family: var(--display); font-size: 1.875rem; font-weight: 600;
  margin: 3rem 0 1.25rem; letter-spacing: -0.01em;
}
.prose h2 .smallcaps {
  display: block; color: var(--accent-brass);
  font-size: 0.78rem; font-weight: 500; margin-bottom: 0.5rem;
}
.prose p { font-size: 1.125rem; line-height: 1.75; margin-bottom: 1.25rem; }
.prose blockquote {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 1.5rem; line-height: 1.45; color: var(--primary);
  padding: 2rem 0; margin: 2rem 0;
  border-left: 3px solid var(--accent-brass); padding-left: 2rem;
}
.prose blockquote cite {
  display: block; margin-top: 1rem;
  font-family: var(--body); font-style: normal; font-size: 0.85rem;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink-soft);
}
