:root {
  --wine: #5b151b;
  --wine-2: #741e28;
  --wine-3: #3f0f14;
  --cream: #fbf7f1;
  --paper: #fffdf9;
  --ink: #251819;
  --muted: #6f5f5d;
  --line: #dfd2c8;
  --gold: #d8c5a1;
  --charcoal: #171616;
  --shadow: 0 18px 48px rgba(42, 22, 22, 0.14);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

a {
  color: inherit;
}

.shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 50;
  padding: 10px 14px;
  color: #fff;
  background: var(--wine);
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  color: #fff;
  background:
    radial-gradient(circle at 15% 0, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(90deg, var(--wine-3), var(--wine), var(--wine-3));
  box-shadow: 0 2px 16px rgba(32, 10, 12, 0.24);
}

.nav-shell {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 248px;
  color: #fff;
  text-decoration: none;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
}

.brand-lockup.dark {
  color: var(--ink);
}

.crest {
  width: 48px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 3px solid var(--gold);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.brand-lockup strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-lockup small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.brand-lockup.dark small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 250px;
  display: none;
  padding: 12px;
  background: var(--wine-3);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link,
.quote-btn,
.primary-btn,
.outline-btn,
.fleet-item a,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.phone-link {
  gap: 8px;
  white-space: nowrap;
}

.phone-link svg {
  width: 18px;
  height: 18px;
}

.quote-btn {
  min-width: 158px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.quote-btn:hover,
.quote-btn:focus-visible,
.primary-btn:hover,
.primary-btn:focus-visible,
.outline-btn:hover,
.outline-btn:focus-visible,
.fleet-item a:hover,
.fleet-item a:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: transparent;
  color: #fff;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 352px;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 247, 241, 1) 0%, rgba(251, 247, 241, 0.94) 34%, rgba(251, 247, 241, 0.28) 64%, rgba(251, 247, 241, 0.04) 100%),
    url("../img/imi-hero-chainbridge.png") center 54% / cover no-repeat;
}

.hero-shell {
  position: relative;
  min-height: 352px;
  display: grid;
  grid-template-columns: minmax(360px, 0.45fr) minmax(430px, 0.55fr);
  align-items: end;
  gap: 28px;
}

.hero-copy {
  z-index: 1;
  align-self: center;
  padding: 42px 0;
}

.hero h1 {
  max-width: 520px;
  margin: 0;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p {
  max-width: 520px;
  margin: 20px 0 0;
  color: #3f3432;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.primary-btn,
.outline-btn {
  gap: 10px;
  min-width: 168px;
  padding: 0 22px;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(180deg, #842331, var(--wine));
  border: 1px solid var(--wine);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 7px 0 #3e0e14,
    0 16px 32px rgba(91, 21, 27, 0.26);
}

.outline-btn {
  color: var(--wine);
  background: linear-gradient(180deg, #fff, #f5eadf);
  border: 1px solid rgba(91, 21, 27, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 6px 0 rgba(91, 21, 27, 0.1),
    0 14px 28px rgba(91, 21, 27, 0.12);
}

.primary-btn svg,
.outline-btn svg {
  width: 20px;
  height: 20px;
}

.hero-car {
  display: none;
}

.proof-strip {
  padding: 22px 0;
  background: rgba(255, 253, 249, 0.96);
  border-top: 1px solid rgba(91, 21, 27, 0.1);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.proof-grid article {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;
}

.round-icon,
.service-icon {
  display: grid;
  place-items: center;
  flex: none;
  color: var(--wine);
  background: #eee8e2;
}

.round-icon {
  width: 46px;
  height: 46px;
  border: 2px solid var(--wine);
  border-radius: 50%;
  background: transparent;
}

.round-icon svg,
.service-icon svg {
  width: 28px;
  height: 28px;
}

.proof-grid h2 {
  margin: 0;
  font-size: 16px;
}

.proof-grid p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.services {
  padding: 30px 0 36px;
}

.section-title {
  margin: 0 0 24px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.05;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid transparent;
}

.service-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px 20px;
  min-height: 126px;
  padding: 12px 34px 10px 0;
  border-right: 1px solid var(--line);
}

.service-card:last-child {
  border-right: 0;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.service-card h3 {
  grid-column: 2;
  min-width: 0;
  margin: 0 0 6px;
  font-size: 17px;
}

.service-card p {
  grid-column: 2;
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-card a {
  grid-column: 2;
  min-width: 0;
  color: var(--wine);
  font-weight: 800;
  text-decoration: none;
}

.fleet-band {
  padding: 48px 0;
  color: #fff;
  background:
    linear-gradient(rgba(12, 12, 12, 0.9), rgba(12, 12, 12, 0.9)),
    url("../img/leatherbg.png") left top repeat;
}

.section-head.center {
  max-width: 820px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-head.center h2,
.fleet-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  color: var(--wine);
}

.section-head.center.light h2,
.section-head.center.light p {
  color: #fff;
}

.section-head.center p {
  margin: 12px auto 0;
  color: var(--muted);
}

.fleet-lead {
  margin: 8px 0 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}

.fleet-picker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.fleet-pill {
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.fleet-pill.is-active,
.fleet-pill:hover,
.fleet-pill:focus-visible {
  color: var(--wine);
  background: #fff;
}

.fleet-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.fleet-image-panel {
  min-height: 360px;
  display: grid;
  place-items: center;
}

.fleet-image-panel img {
  max-height: 360px;
  width: auto;
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.45));
}

.fleet-copy {
  color: #fff;
}

.fleet-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.04;
}

.fleet-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.fleet-tag,
.card-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fleet-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.fleet-stats article {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.fleet-stats strong,
.fleet-stats span {
  display: block;
}

.fleet-stats strong {
  font-size: 26px;
}

.fleet-stats span {
  color: rgba(255, 255, 255, 0.72);
}

.fleet-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.fleet-features li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold);
}

.fleet-thumbs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.fleet-thumbs button {
  height: 104px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #0f0f0f;
  cursor: pointer;
}

.fleet-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-item {
  display: grid;
  grid-template-columns: minmax(200px, 0.95fr) minmax(230px, 1fr);
  align-items: center;
  gap: 34px;
  padding: 8px 42px;
}

.fleet-item:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.fleet-item img {
  width: 100%;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.35));
}

.fleet-item h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.fleet-item ul {
  display: grid;
  gap: 4px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.84);
}

.fleet-item li::before {
  content: "✦";
  margin-right: 8px;
  color: var(--gold);
}

.fleet-item a {
  width: 132px;
  min-height: 38px;
  color: #fff;
  background: var(--wine);
  border: 1px solid rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.gallery-section {
  padding: 44px 0;
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.section-row p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.text-link {
  color: var(--wine);
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 12px;
}

.gallery-grid figure {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  background: #eee8e2;
}

.gallery-tile {
  position: relative;
  min-height: 240px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #eee8e2;
  cursor: pointer;
  text-align: left;
}

.gallery-tile.gallery-large {
  grid-row: span 2;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.04);
}

.pricing-section {
  padding: 58px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.pricing-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.currency-switcher {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.currency-switcher button {
  min-width: 62px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--wine);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.currency-switcher button.is-active {
  color: #fff;
  background: var(--wine);
}

.leather-panel {
  background:
    linear-gradient(rgba(16, 15, 15, 0.9), rgba(16, 15, 15, 0.9)),
    url("../img/leatherbg.png") left top repeat;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.pricing-table {
  overflow-x: auto;
}

.pricing-table table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.pricing-table th {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
}

.pricing-table td:first-child {
  font-weight: 900;
}

.pricing-note {
  color: var(--muted);
  font-size: 13px;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.term-card {
  padding: 22px;
}

.term-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-copy h2 {
  margin: 16px 0 10px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.footer-logo {
  width: 86px;
}

.quote-form {
  padding: 24px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quote-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(216, 197, 161, 0.7);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.quote-form textarea {
  margin-top: 12px;
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.form-actions button {
  border: 0;
  cursor: pointer;
}

#form-message {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(10, 8, 8, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.lightbox button {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(91, 21, 27, 0.86);
  font-size: 30px;
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.service-page-hero {
  padding: 78px 0;
  background:
    linear-gradient(90deg, rgba(251, 247, 241, 1), rgba(251, 247, 241, 0.9), rgba(251, 247, 241, 0.42)),
    url("../img/imi-hero-chainbridge.png") center 54% / cover no-repeat;
}

.service-page-hero h1,
.content-section h2 {
  max-width: 780px;
  margin: 0;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}

.service-page-hero p {
  max-width: 680px;
  color: var(--ink);
  font-size: 19px;
}

.content-section {
  padding: 58px 0;
  background: #fffdf9;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 38px;
}

.content-card {
  padding: 24px;
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 42px rgba(91, 21, 27, 0.08);
}

.content-card h3 {
  margin-top: 0;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.scenario-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faq-grid {
  margin-top: 24px;
}

.faq-grid summary {
  color: var(--wine);
  font-weight: 900;
  cursor: pointer;
}

.process-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  position: relative;
}

.step-number {
  display: inline-grid;
  min-height: 34px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 12px;
  color: #fff;
  background: linear-gradient(180deg, #842331, var(--wine));
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 5px 0 #3e0e14,
    0 14px 26px rgba(91, 21, 27, 0.18);
  font-weight: 900;
}

.landing-cta-panel {
  padding: 34px;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 8%, rgba(216, 197, 161, 0.34), transparent 32%),
    linear-gradient(135deg, #fffaf4, #f2e5d7);
  border: 1px solid rgba(91, 21, 27, 0.14);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(91, 21, 27, 0.1);
}

.landing-cta-panel h2 {
  margin: 0 0 12px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.06;
}

.landing-cta-panel p {
  max-width: 820px;
  color: var(--muted);
}

.related-card {
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(91, 21, 27, 0.14);
}

.service-page-hero {
  background:
    linear-gradient(90deg, rgba(251, 247, 241, 0.98), rgba(251, 247, 241, 0.88) 48%, rgba(251, 247, 241, 0.32)),
    url("../img/imi-hero-chainbridge.png") center 54% / cover no-repeat;
}

.service-page-hero h1 {
  font-size: clamp(38px, 4.8vw, 58px);
}

.service-pricing-table table {
  min-width: 920px;
}

.gallery-grid .gallery-large {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(63, 15, 20, 0.78);
  border-radius: 4px;
  font-weight: 700;
}

.quote-process {
  padding: 28px 0 24px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.price-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.2fr 0.55fr;
  align-items: center;
  gap: 46px;
}

.price-box {
  padding-right: 40px;
  border-right: 1px solid var(--line);
}

.price-box h2,
.process-box h2 {
  margin: 0 0 10px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.05;
}

.price-box p {
  margin: 0 0 16px;
  color: var(--muted);
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 13px;
}

.benefit-list span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  color: var(--wine);
  border: 1px solid var(--wine);
  border-radius: 50%;
}

.process-box {
  text-align: center;
}

.process-box ol {
  counter-reset: flow;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.process-box li {
  position: relative;
  padding-top: 42px;
}

.process-box li::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  left: 50%;
  top: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--wine);
  border-radius: 50%;
  transform: translateX(-50%);
  font-weight: 800;
}

.process-box strong {
  display: block;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
}

.process-box span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.hand-note {
  margin: 0;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
  text-align: center;
  transform: rotate(-8deg);
}

.promise-band {
  padding: 24px 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% -30%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(90deg, var(--wine-3), var(--wine), var(--wine-3));
}

.promise-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 36px;
  align-items: center;
}

blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.2;
}

blockquote::before {
  content: "“";
  margin-right: 10px;
  font-size: 52px;
  line-height: 0;
}

blockquote span {
  display: block;
  margin-top: 8px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
}

.promise-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.tiny-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  font-size: 20px;
}

.promise-grid strong,
.promise-grid small {
  display: block;
}

.promise-grid small {
  color: rgba(255, 255, 255, 0.74);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 0.75fr 1.55fr;
  gap: 36px;
  padding: 28px 0 26px;
}

.footer-brand p {
  margin: 16px 0 0;
  color: var(--muted);
}

address {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 34px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-style: normal;
}

address a {
  color: var(--ink);
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.contact-form label {
  display: grid;
  gap: 4px;
}

.contact-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--ink);
  border: 1px solid #b48671;
  border-radius: 4px;
  background: #fffdf9;
  font: inherit;
  resize: vertical;
}

.contact-form button {
  justify-self: end;
  min-width: 160px;
  color: #fff;
  background: var(--wine);
  border: 0;
  cursor: pointer;
}

.contact-form p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.copyright {
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--wine-3);
}

.copyright .shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.copyright a {
  text-decoration: none;
}

.copyright .admin-entry {
  color: inherit;
}

.copyright .admin-entry:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.copyright .admin-entry:focus-visible {
  color: var(--accent-gold);
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 72px;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background: var(--wine-3);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow);
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    display: none;
    transform: none;
    box-shadow: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    justify-self: end;
  }

  .phone-link {
    display: none;
  }

  .proof-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fleet-showcase,
  .price-grid,
  .promise-grid,
  .contact-section,
  .terms-grid,
  .content-grid,
  .process-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .fleet-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-item:first-child,
  .price-box,
  address {
    border-right: 0;
    border-left: 0;
  }

  .price-box,
  address {
    padding-right: 0;
    padding-left: 0;
  }

  .promise-grid {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .topbar {
    position: relative;
  }

  .nav-shell {
    position: relative;
    min-height: 70px;
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .brand-lockup {
    padding-right: 54px;
    min-width: 0;
  }

  .nav-toggle {
    position: absolute;
    top: 14px;
    right: 0;
    z-index: 3;
    display: inline-flex;
    background: rgba(91, 21, 27, 0.92);
  }

  .brand-lockup strong {
    font-size: 18px;
  }

  .brand-lockup small {
    font-size: 10px;
  }

  .crest {
    width: 40px;
    height: 46px;
    font-size: 13px;
  }

  .header-actions {
    display: none;
  }

  .hero,
  .hero-shell {
    min-height: 0;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(251, 247, 241, 0.98), rgba(251, 247, 241, 0.82) 45%, rgba(251, 247, 241, 0.12)),
      url("../img/imi-hero-chainbridge.png") center / cover no-repeat;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: min(100%, 332px);
    min-width: 0;
    padding: 38px 0 10px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero p {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(100%, 332px);
    gap: 12px;
  }

  .primary-btn,
  .outline-btn {
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero-car {
    display: none;
  }

  .proof-grid,
  .service-grid,
  .fleet-item,
  .gallery-grid,
  .process-box ol,
  .form-row,
  .form-grid,
  .fleet-stats,
  .fleet-features {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .fleet-image-panel {
    min-height: 220px;
  }

  .fleet-image-panel img {
    max-height: 220px;
  }

  .fleet-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-toolbar,
  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-grid {
    gap: 18px;
  }

  .service-card {
    padding-right: 0;
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .fleet-item {
    padding: 22px 0;
    gap: 10px;
    text-align: center;
  }

  .fleet-item ul {
    justify-items: center;
  }

  .fleet-item a {
    margin: 0 auto;
  }

  .section-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid .gallery-large {
    grid-row: auto;
  }

  .gallery-grid figure {
    min-height: 230px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .hand-note {
    transform: none;
  }

  .contact-form button {
    width: 100%;
  }

  .copyright .shell {
    flex-direction: column;
  }
}

/* 2026 premium refresh */
.eyebrow {
  margin: 0 0 10px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-editorial {
  min-height: 0;
  padding: 46px 0 42px;
  background:
    radial-gradient(circle at 72% 18%, rgba(216, 197, 161, 0.26), transparent 34%),
    linear-gradient(135deg, #fffdf9 0%, #f5eee4 58%, #ece0d2 100%);
}

.hero-editorial-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: 42px;
}

.hero-editorial .hero-copy {
  padding: 0;
}

.hero-editorial h1 {
  max-width: 560px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.9vw, 58px);
  line-height: 1.04;
}

.hero-editorial .hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #433231;
  font-size: 17px;
}

.hero-photo-card {
  position: relative;
  margin: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(91, 21, 27, 0.14);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(91, 21, 27, 0.18);
}

.hero-photo-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: 50% 52%;
  border-radius: 12px;
}

.hero-photo-card figcaption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(63, 15, 20, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.hero-photo-card figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  white-space: nowrap;
}

.hero-photo-card figcaption span {
  color: rgba(255, 255, 255, 0.78);
}

.proof-strip {
  background: #fffaf4;
}

.round-icon {
  width: 54px;
  height: 54px;
}

.round-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.7;
}

.service-icon {
  width: 66px;
  height: 66px;
  font-size: 30px;
}

.fleet-section {
  padding: 68px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(91, 21, 27, 0.08), transparent 30%),
    linear-gradient(180deg, #fffdf9, #f4eadf);
  border-top: 1px solid var(--line);
}

.fleet-section .section-head.center h2,
.pricing-section .section-head.center h2 {
  color: var(--wine);
}

.fleet-card-picker,
.gallery-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.fleet-card-picker {
  margin: 30px 0;
}

.vehicle-card {
  display: grid;
  gap: 5px;
  min-height: 118px;
  padding: 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(91, 21, 27, 0.18);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 0 rgba(91, 21, 27, 0.08),
    0 22px 48px rgba(91, 21, 27, 0.12);
  cursor: pointer;
  transform: translateY(0);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.vehicle-card span,
.vehicle-card small {
  color: var(--muted);
}

.vehicle-card strong {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.vehicle-card.is-active,
.vehicle-card:hover,
.vehicle-card:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--wine), #7b2630);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 0 #3e0e14,
    0 24px 52px rgba(91, 21, 27, 0.26);
  transform: translateY(-4px);
}

.vehicle-card.is-active span,
.vehicle-card.is-active strong,
.vehicle-card.is-active small,
.vehicle-card:hover span,
.vehicle-card:hover strong,
.vehicle-card:hover small {
  color: #fff;
}

.fleet-detail-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(91, 21, 27, 0.16);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(91, 21, 27, 0.12);
}

.fleet-detail-card .fleet-image-panel {
  min-height: 310px;
  background:
    radial-gradient(circle at 50% 60%, rgba(91, 21, 27, 0.14), transparent 46%),
    linear-gradient(180deg, #fff, #f3eadf);
  border-radius: 14px;
}

.fleet-detail-card .fleet-copy,
.fleet-detail-card .fleet-copy p,
.fleet-detail-card .fleet-stats span {
  color: var(--muted);
}

.fleet-detail-card .fleet-copy h3,
.fleet-detail-card .fleet-stats strong {
  color: var(--wine);
}

.fleet-detail-card .fleet-stats article {
  background: #fffaf4;
  border: 1px solid var(--line);
}

.fleet-detail-card .fleet-features {
  color: var(--ink);
}

.fleet-detail-card .primary-btn {
  width: fit-content;
}

.gallery-section {
  width: 100%;
  max-width: none;
  padding: 66px 0;
  background: #fffdf9;
}

.gallery-picker {
  min-width: min(520px, 100%);
}

.gallery-pill {
  min-height: 52px;
  display: grid;
  place-items: center;
  gap: 1px;
  padding: 6px 14px 8px;
  color: var(--wine);
  background: linear-gradient(180deg, #fff, #f4e7dc);
  border: 1px solid rgba(91, 21, 27, 0.24);
  border-radius: 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.05;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 6px 0 rgba(91, 21, 27, 0.12),
    0 16px 30px rgba(91, 21, 27, 0.1);
  transform: translateY(0);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.gallery-pill span,
.gallery-pill strong {
  display: block;
  white-space: nowrap;
}

.gallery-pill.is-active,
.gallery-pill:hover,
.gallery-pill:focus-visible {
  color: #fff;
  background: linear-gradient(180deg, #842331, var(--wine));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 6px 0 #3e0e14,
    0 18px 34px rgba(91, 21, 27, 0.24);
  transform: translateY(-3px);
}

.gallery-grid {
  grid-template-columns: 1.35fr 1fr 1fr;
}

.gallery-tile {
  min-height: 260px;
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(91, 21, 27, 0.12);
}

.gallery-tile img {
  object-fit: cover;
}

.pricing-section {
  background:
    radial-gradient(circle at 80% 8%, rgba(216, 197, 161, 0.24), transparent 30%),
    linear-gradient(180deg, #f8f0e7, #fffdf9);
}

.premium-table {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(91, 21, 27, 0.14);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(91, 21, 27, 0.1);
}

.premium-table table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
}

.premium-table th,
.premium-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.premium-table th {
  color: var(--wine);
  background: #f1e4d8;
  font-size: 13px;
  text-transform: uppercase;
}

.premium-table tr:last-child td {
  border-bottom: 0;
}

.premium-table td:first-child {
  color: var(--wine);
  font-weight: 900;
}

.pricing-section .term-card {
  color: var(--ink);
  background: #fffaf4;
  border: 1px solid rgba(91, 21, 27, 0.14);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(91, 21, 27, 0.08);
}

.pricing-section .term-card ul {
  color: var(--muted);
}

.contact-section {
  display: block;
  width: 100%;
  max-width: none;
  padding: 72px 0;
  background:
    linear-gradient(rgba(91, 21, 27, 0.9), rgba(91, 21, 27, 0.9)),
    url("../img/leatherbg.png") left top repeat;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(560px, 1fr);
  gap: 44px;
  align-items: start;
  max-width: 1180px;
}

.contact-info-panel {
  color: #fff;
}

.contact-info-panel .eyebrow,
.contact-info-panel h2 {
  color: #fff;
}

.contact-info-panel h2 {
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.05;
}

.contact-info-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

.contact-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
}

.contact-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card small,
.contact-card a {
  color: rgba(255, 255, 255, 0.76);
}

.parchment-form {
  padding: 32px;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0, rgba(216, 197, 161, 0.36), transparent 32%),
    linear-gradient(135deg, #fffaf0, #f3e2ca 55%, #fff8ea);
  border: 1px solid rgba(216, 197, 161, 0.92);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(31, 10, 12, 0.28);
}

.parchment-form h3 {
  margin: 0;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.parchment-form > p {
  color: var(--muted);
}

.parchment-form label {
  color: var(--wine);
}

.parchment-form input,
.parchment-form select,
.parchment-form textarea {
  border-color: rgba(91, 21, 27, 0.28);
  background: rgba(255, 253, 249, 0.9);
}

.parchment-form #form-message {
  color: var(--wine);
}

@media (max-width: 1120px) {
  .hero-editorial-grid,
  .fleet-detail-card,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .fleet-card-picker,
  .gallery-picker {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .hero-editorial {
    padding: 42px 0;
  }

  .hero-editorial-grid {
    gap: 24px;
  }

  .hero-editorial h1 {
    font-size: 35px;
    line-height: 1.04;
  }

  .hero-photo-card img {
    height: 330px;
  }

  .hero-photo-card {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-photo-card figcaption {
    position: static;
    width: 100%;
    margin-top: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    overflow-wrap: anywhere;
  }

  .hero-photo-card figcaption span {
    display: block;
    min-width: 0;
    width: 100%;
    max-width: 260px;
    white-space: normal;
    font-size: 13px;
  }

  .section-title,
  .section-head.center h2,
  .pricing-section .section-head.center h2,
  .contact-info-panel h2 {
    font-size: 30px;
    line-height: 1.08;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .services-section,
  .service-grid,
  .service-card,
  .service-card h3,
  .service-card p,
  .service-card a {
    min-width: 0;
    max-width: 100%;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: hidden;
  }

  .service-card h3,
  .service-card p,
  .service-card a {
    grid-column: 1;
  }

  .service-card p,
  .service-card h3 {
    overflow-wrap: break-word;
  }

  .fleet-card-picker,
  .gallery-picker,
  .gallery-grid,
  .contact-shell,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .fleet-detail-card,
  .parchment-form {
    padding: 20px;
  }

  .section-row {
    align-items: stretch;
  }
}

/* 2026 dark premium direction */
:root {
  --noir: #151817;
  --noir-2: #222624;
  --noir-3: #0f1110;
  --champagne: #d7bd88;
  --champagne-2: #f1dfb6;
  --accent-rose: #8b123d;
  --accent-rose-2: #b01d55;
}

body {
  background: #f6f0e7;
}

.topbar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    #171b1a;
  border-bottom: 1px solid rgba(215, 189, 136, 0.28);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.brand-logo {
  filter: drop-shadow(0 0 10px rgba(215, 189, 136, 0.22));
}

.brand-lockup small,
.site-nav,
.phone-link {
  color: rgba(255, 248, 232, 0.82);
}

.site-nav a::after {
  background: var(--champagne);
}

.quote-btn {
  color: #201817;
  background: linear-gradient(180deg, #f4dca5, #caa261);
  border-color: rgba(255, 239, 190, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 4px 0 #8d6b36,
    0 16px 28px rgba(0, 0, 0, 0.22);
}

.primary-btn,
.quote-form button.primary-btn {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(180deg, var(--accent-rose-2), var(--accent-rose));
  border-color: rgba(244, 220, 165, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 6px 0 #4f0a25,
    0 0 24px rgba(176, 29, 85, 0.34);
}

.outline-btn {
  color: #fff8e8;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(241, 223, 182, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 5px 0 rgba(0, 0, 0, 0.28),
    0 14px 26px rgba(0, 0, 0, 0.2);
}

.hero-editorial {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  padding: 88px 0 126px;
  color: #fff8e8;
  background:
    linear-gradient(90deg, rgba(17, 20, 19, 0.98) 0%, rgba(21, 24, 23, 0.94) 34%, rgba(21, 24, 23, 0.62) 58%, rgba(21, 24, 23, 0.18) 100%),
    url("../img/imi-hero-chainbridge.png") right center / cover no-repeat;
}

.hero-editorial::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(44vw, 620px);
  opacity: 0.38;
  background:
    repeating-linear-gradient(58deg, transparent 0 36px, rgba(215, 189, 136, 0.5) 37px 38px, transparent 39px 72px),
    repeating-linear-gradient(122deg, transparent 0 42px, rgba(215, 189, 136, 0.35) 43px 44px, transparent 45px 86px);
  mask-image: linear-gradient(90deg, #000, transparent 86%);
  pointer-events: none;
}

.hero-editorial::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(246, 240, 231, 0.98));
  pointer-events: none;
}

.hero-editorial-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(360px, 0.78fr) minmax(480px, 1.1fr);
}

.hero-editorial .eyebrow {
  color: var(--champagne-2);
}

.hero-editorial h1 {
  max-width: 650px;
  color: #fff8e8;
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.hero-editorial .hero-copy p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 248, 232, 0.86);
}

.hero-photo-card {
  align-self: end;
  margin-top: 70px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-photo-card img {
  height: 280px;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0;
}

.hero-photo-card figcaption {
  display: none;
}

.proof-strip {
  display: none;
}

.services {
  position: relative;
  z-index: 3;
  margin-top: -72px;
  padding: 0 0 44px;
}

.services > .eyebrow,
.services > .section-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.service-grid {
  gap: 20px;
  border: 0;
}

.service-card {
  min-height: 178px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  justify-items: center;
  gap: 10px;
  padding: 22px 18px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 231, 218, 0.88));
  border: 1px solid rgba(215, 189, 136, 0.75);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 0 rgba(118, 101, 70, 0.22),
    0 18px 42px rgba(20, 24, 23, 0.22);
}

.service-card h3,
.service-card p,
.service-card a {
  grid-column: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  color: #202423;
  background:
    radial-gradient(circle at 36% 22%, rgba(255, 255, 255, 0.88), transparent 38%),
    linear-gradient(145deg, #e8e0d0, #bfb39c);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 20px rgba(0, 0, 0, 0.16);
}

.service-card h3 {
  color: #171b1a;
  font-size: 18px;
}

.service-card p {
  color: #4d4a43;
  font-size: 13px;
}

.service-card a {
  color: var(--accent-rose);
  text-transform: uppercase;
  font-size: 12px;
}

.fleet-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 76px;
  color: #fff8e8;
  background:
    radial-gradient(circle at 52% 18%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #171b1a, #202423 54%, #151817);
  border-top: 1px solid rgba(215, 189, 136, 0.28);
  border-bottom: 1px solid rgba(215, 189, 136, 0.25);
}

.fleet-section::before,
.fleet-section::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  height: 180px;
  opacity: 0.36;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 17px, rgba(215, 189, 136, 0.42) 18px 19px, transparent 20px 38px);
  pointer-events: none;
}

.fleet-section::before {
  top: 42%;
  transform: rotate(-7deg);
}

.fleet-section::after {
  bottom: 6%;
  transform: rotate(7deg);
}

.fleet-section .shell {
  position: relative;
  z-index: 1;
}

.fleet-section .section-head.center h2,
.fleet-section .section-head.center p,
.fleet-section .eyebrow {
  color: #fff8e8;
}

.fleet-card-picker {
  width: min(760px, 100%);
  margin: 22px auto 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.vehicle-card {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  color: #fff8e8;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(215, 189, 136, 0.54);
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 5px 0 rgba(0, 0, 0, 0.32),
    0 12px 22px rgba(0, 0, 0, 0.22);
}

.vehicle-card span {
  color: inherit;
}

.vehicle-card strong {
  color: inherit;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
}

.vehicle-card small {
  display: none;
}

.vehicle-card.is-active,
.vehicle-card:hover,
.vehicle-card:focus-visible {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, var(--accent-rose-2), var(--accent-rose));
  border-color: rgba(241, 223, 182, 0.78);
}

.fleet-detail-card {
  width: min(980px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(360px, 1.25fr) minmax(280px, 0.75fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.13)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(215, 189, 136, 0.54);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 20px 46px rgba(0, 0, 0, 0.34);
}

.fleet-detail-card .fleet-image-panel {
  min-height: 330px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18)),
    url("../img/imi-hero-chainbridge.png") center 48% / cover no-repeat;
  border-radius: 0;
}

.fleet-detail-card .fleet-image-panel img {
  width: 90%;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.48));
}

.fleet-detail-card .fleet-copy {
  display: grid;
  align-content: center;
  padding: 28px;
  color: #fff8e8;
  background: rgba(230, 221, 199, 0.18);
  border-left: 1px solid rgba(215, 189, 136, 0.38);
  backdrop-filter: blur(10px);
}

.fleet-detail-card .fleet-copy h3,
.fleet-detail-card .fleet-stats strong,
.fleet-detail-card .fleet-copy p,
.fleet-detail-card .fleet-stats span,
.fleet-detail-card .fleet-features {
  color: #fff8e8;
}

.fleet-detail-card .fleet-stats article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(215, 189, 136, 0.35);
}

.gallery-section {
  background: #fbf8f2;
}

.gallery-grid {
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

.gallery-tile,
.gallery-tile.gallery-large {
  min-height: 150px;
  grid-row: auto;
  border-radius: 7px;
  border: 1px solid rgba(215, 189, 136, 0.42);
  box-shadow: 0 14px 24px rgba(20, 24, 23, 0.16);
}

.gallery-tile:nth-child(2),
.gallery-tile:nth-child(4) {
  min-height: 230px;
}

.gallery-picker {
  display: none;
}

.pricing-section {
  background:
    radial-gradient(circle at 12% 0, rgba(215, 189, 136, 0.18), transparent 28%),
    #f5efe5;
}

.premium-table {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.premium-table table {
  min-width: 760px;
}

.premium-table th {
  color: #171b1a;
  background: transparent;
  border-bottom: 1px solid rgba(24, 27, 26, 0.3);
}

.premium-table td {
  border-bottom: 1px solid rgba(24, 27, 26, 0.18);
}

.terms-grid {
  display: none;
}

.promise-band,
.contact-section {
  background:
    radial-gradient(circle at 42% 8%, rgba(215, 189, 136, 0.08), transparent 30%),
    linear-gradient(180deg, #171b1a, #201c19);
  border-top: 1px solid rgba(215, 189, 136, 0.28);
}

.contact-shell {
  align-items: center;
}

.contact-info-panel h2,
.contact-info-panel .eyebrow {
  color: var(--champagne-2);
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(215, 189, 136, 0.3);
}

.parchment-form {
  color: #fff8e8;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(215, 189, 136, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 54px rgba(0, 0, 0, 0.28);
}

.parchment-form h3,
.parchment-form label,
.parchment-form #form-message {
  color: var(--champagne-2);
}

.parchment-form > p {
  color: rgba(255, 248, 232, 0.76);
}

.parchment-form input,
.parchment-form select,
.parchment-form textarea {
  color: #fff8e8;
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(215, 189, 136, 0.58);
}

.parchment-form input::placeholder,
.parchment-form textarea::placeholder {
  color: rgba(255, 248, 232, 0.55);
}

.copyright {
  background: #111312;
  border-top: 1px solid rgba(215, 189, 136, 0.2);
}

@media (max-width: 1120px) {
  .hero-editorial {
    min-height: 0;
    padding-bottom: 118px;
  }

  .hero-editorial-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-card {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .nav-shell {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 10px;
    padding-right: 0;
  }

  .brand-lockup {
    padding-right: 0;
  }

  .nav-toggle {
    display: none !important;
  }

  .site-nav {
    position: static;
    grid-column: 1 / -1;
    display: flex !important;
    flex-direction: row;
    gap: 12px;
    min-width: 0;
    overflow-x: auto;
    padding: 8px 2px 2px;
    background: transparent;
    border: 0;
    box-shadow: none;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a,
  .nav-dropdown-toggle {
    flex: 0 0 auto;
    font-size: 12px;
    white-space: nowrap;
  }

  .nav-dropdown-menu {
    display: none;
  }

  .hero-editorial {
    padding: 56px 0 110px;
  }

  .hero-editorial h1 {
    font-size: 34px;
  }

  .services {
    margin-top: -54px;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    width: 100%;
    padding: 24px 18px;
  }

  .service-card p {
    width: 100%;
    max-width: 310px;
    overflow-wrap: break-word;
  }

  .fleet-detail-card {
    grid-template-columns: 1fr;
  }

  .fleet-detail-card .fleet-copy {
    border-left: 0;
    border-top: 1px solid rgba(215, 189, 136, 0.38);
  }

  .gallery-tile:nth-child(2),
  .gallery-tile:nth-child(4) {
    min-height: 170px;
  }
}

/* Burgundy-gold glassmorphism system */
:root {
  --primary-burgundy: #800020;
  --primary-burgundy-light: #a52a2a;
  --accent-gold: #d4af37;
  --bg-dark: #0a0a0a;
  --bg-charcoal: #1a1a1a;
  --text-light: #f5f5f5;
  --text-muted: #a0a0a0;
  --glass-bg: rgba(255, 255, 255, 0.055);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: blur(12px);
  --glow-burgundy: 0 0 15px rgba(128, 0, 32, 0.5);
  --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --wine: var(--primary-burgundy);
  --wine-2: var(--primary-burgundy-light);
  --champagne: var(--accent-gold);
  --accent-rose: var(--primary-burgundy);
  --accent-rose-2: var(--primary-burgundy-light);
}

.hero-editorial::before {
  opacity: 0.2;
  background-image:
    radial-gradient(var(--accent-gold) 0.5px, transparent 0.5px),
    linear-gradient(58deg, transparent 0 46px, rgba(212, 175, 55, 0.34) 47px 48px, transparent 49px 92px);
  background-size: 30px 30px, auto;
}

.primary-btn,
.quote-form button.primary-btn,
.quote-btn,
.outline-btn,
.vehicle-card,
.gallery-pill {
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.primary-btn,
.quote-form button.primary-btn,
.quote-btn {
  text-transform: uppercase;
  letter-spacing: 0.7px;
  background:
    linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-burgundy-light) 100%);
  border: 1px solid rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow-premium);
}

.quote-btn {
  color: #fff;
}

.primary-btn::after,
.quote-form button.primary-btn::after,
.quote-btn::after,
.outline-btn::after,
.vehicle-card::after,
.gallery-pill::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -85%;
  width: 70%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(25deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.primary-btn:hover,
.primary-btn:focus-visible,
.quote-form button.primary-btn:hover,
.quote-form button.primary-btn:focus-visible,
.quote-btn:hover,
.quote-btn:focus-visible,
.outline-btn:hover,
.outline-btn:focus-visible,
.vehicle-card:hover,
.vehicle-card:focus-visible,
.vehicle-card.is-active,
.gallery-pill:hover,
.gallery-pill:focus-visible,
.gallery-pill.is-active {
  border-color: var(--accent-gold);
  box-shadow: var(--glow-burgundy), var(--shadow-premium);
}

.primary-btn:hover::after,
.primary-btn:focus-visible::after,
.quote-form button.primary-btn:hover::after,
.quote-form button.primary-btn:focus-visible::after,
.quote-btn:hover::after,
.quote-btn:focus-visible::after,
.outline-btn:hover::after,
.outline-btn:focus-visible::after,
.vehicle-card:hover::after,
.vehicle-card:focus-visible::after,
.vehicle-card.is-active::after,
.gallery-pill:hover::after,
.gallery-pill:focus-visible::after,
.gallery-pill.is-active::after {
  left: 115%;
}

.fleet-detail-card,
.fleet-detail-card .fleet-copy,
.contact-card,
.parchment-form {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.service-card,
.gallery-tile {
  transition: var(--transition-smooth);
}

.service-card:hover,
.gallery-tile:hover,
.gallery-tile:focus-visible,
.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.82);
  transform: translateY(-3px);
}

.parchment-form input,
.parchment-form select,
.parchment-form textarea,
.quote-form input,
.quote-form select,
.quote-form textarea {
  transition: var(--transition-smooth);
}

.parchment-form input:focus,
.parchment-form select:focus,
.parchment-form textarea:focus,
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--primary-burgundy-light);
  box-shadow: 0 0 10px rgba(128, 0, 32, 0.3);
}

/* Layout guide alignment */
:root {
  --max: 1440px;
}

.topbar {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.58), rgba(10, 10, 10, 0.32));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.topbar.is-scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.services-section,
.fleet-section,
.gallery-section,
.pricing-section,
.contact-section {
  padding-top: clamp(80px, 7vw, 120px);
  padding-bottom: clamp(80px, 7vw, 120px);
}

.services {
  padding-bottom: clamp(64px, 6vw, 96px);
}

.premium-table th {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(36, 39, 37, 0.98), rgba(12, 12, 12, 0.96));
  border-bottom-color: rgba(212, 175, 55, 0.38);
}

.premium-table th:first-child {
  border-top-left-radius: 8px;
}

.premium-table th:last-child {
  border-top-right-radius: 8px;
}

.currency-switcher {
  border-color: rgba(212, 175, 55, 0.28);
  background: rgba(10, 10, 10, 0.08);
}

.currency-switcher button {
  border-radius: 4px;
}

.currency-switcher button.is-active {
  background:
    linear-gradient(135deg, var(--primary-burgundy), var(--primary-burgundy-light));
  box-shadow: 0 0 12px rgba(128, 0, 32, 0.3);
}

.form-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.form-half {
  grid-column: span 2;
}

.form-quarter {
  grid-column: span 1;
}

.form-full {
  grid-column: 1 / -1;
}

.parchment-form .form-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.parchment-form .form-actions .primary-btn {
  width: 100%;
  min-height: 48px;
  justify-content: center;
}

@media (max-width: 980px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-quarter {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .services-section,
  .fleet-section,
  .gallery-section,
  .pricing-section,
  .contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

.form-half,
.form-quarter,
.form-full {
    grid-column: 1 / -1;
  }
}

/* Stitch fidelity correction: glass panels, merged fleet gallery, stable form */
.service-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(246, 240, 226, 0.24);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 18px 42px rgba(0, 0, 0, 0.26);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 42%);
  pointer-events: none;
}

.service-card h3,
.service-card p,
.service-card a,
.service-icon {
  position: relative;
  z-index: 1;
}

.fleet-section {
  padding-bottom: clamp(44px, 5vw, 70px);
}

.fleet-detail-card {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-color: rgba(255, 255, 255, 0.24);
}

.fleet-detail-card .fleet-copy,
.contact-card,
.parchment-form {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
}

.fleet-gallery {
  width: min(980px, 100%);
  margin: 28px auto 0;
  color: #fff8e8;
}

.fleet-gallery > div:first-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  margin-bottom: 16px;
}

.fleet-gallery .eyebrow {
  color: var(--champagne-2);
}

.fleet-gallery .section-title {
  margin: 0;
  color: #fff8e8;
  font-size: clamp(22px, 2.7vw, 34px);
}

.fleet-gallery p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 248, 232, 0.68);
}

.fleet-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.fleet-gallery .gallery-tile,
.fleet-gallery .gallery-tile.gallery-large,
.fleet-gallery .gallery-tile:nth-child(2),
.fleet-gallery .gallery-tile:nth-child(4) {
  min-height: 92px;
  aspect-ratio: 1.45 / 1;
  border-radius: 6px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.fleet-gallery .gallery-tile img {
  filter: saturate(0.92) contrast(1.02);
}

.fleet-gallery .gallery-tile:hover img,
.fleet-gallery .gallery-tile:focus-visible img {
  filter: saturate(1.08) contrast(1.05);
}

.gallery-section {
  display: none;
}

.fleet-detail-card .fleet-image-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 42% 44%, rgba(212, 175, 55, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 10, 0.18);
}

.fleet-detail-card .fleet-image-panel::before {
  content: "";
  position: absolute;
  inset: 12% -8%;
  opacity: 0.34;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 18px, rgba(212, 175, 55, 0.35) 19px 20px, transparent 21px 38px);
  transform: rotate(-7deg);
  pointer-events: none;
}

.fleet-detail-card .fleet-image-panel img {
  position: relative;
  z-index: 1;
}

.currency-switcher {
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(238, 231, 218, 0.58));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 26px rgba(0, 0, 0, 0.12);
}

.currency-switcher button {
  min-width: 58px;
  border-radius: 999px;
  color: #2a201c;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(224, 214, 196, 0.9));
  border: 1px solid rgba(120, 96, 52, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 4px 0 rgba(126, 103, 62, 0.22),
    0 10px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.currency-switcher button:hover,
.currency-switcher button:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 5px 0 rgba(126, 103, 62, 0.25),
    0 0 18px rgba(128, 0, 32, 0.2);
}

.currency-switcher button.is-active {
  color: #fff;
  background:
    linear-gradient(135deg, var(--primary-burgundy), var(--primary-burgundy-light));
  border-color: rgba(212, 175, 55, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 4px 0 #4f0a25,
    0 0 18px rgba(128, 0, 32, 0.36);
}

.fleet-gallery {
  min-height: 150px;
}

.fleet-gallery .gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 42px;
  align-items: center;
  gap: 12px;
}

.fleet-gallery .gallery-tile,
.fleet-gallery .gallery-tile.gallery-large,
.fleet-gallery .gallery-tile:nth-child(2),
.fleet-gallery .gallery-tile:nth-child(4) {
  min-height: 0;
  aspect-ratio: auto;
  animation: galleryDrift 7s ease-in-out infinite;
  will-change: transform;
}

.fleet-gallery .gallery-tile {
  grid-column: span 3;
  grid-row: span 2;
}

.fleet-gallery .gallery-large {
  grid-column: span 4;
  grid-row: span 3;
}

.fleet-gallery .gallery-float-2,
.fleet-gallery .gallery-float-5 {
  grid-row: span 3;
  transform: translateY(12px);
  animation-delay: -1.2s;
}

.fleet-gallery .gallery-float-3 {
  grid-column: span 2;
  transform: translateY(-8px);
  animation-delay: -2.4s;
}

.fleet-gallery .gallery-float-4 {
  grid-column: span 3;
  transform: translateY(18px);
  animation-delay: -3.1s;
}

.fleet-gallery .gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes galleryDrift {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fleet-gallery .gallery-tile {
    animation: none;
  }
}

@media (max-width: 760px) {
  .fleet-gallery .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 38px;
  }

  .fleet-gallery .gallery-tile,
  .fleet-gallery .gallery-large,
  .fleet-gallery .gallery-float-2,
  .fleet-gallery .gallery-float-3,
  .fleet-gallery .gallery-float-4,
  .fleet-gallery .gallery-float-5 {
    grid-column: span 3;
    grid-row: span 2;
  }
}

/* Final gallery treatment: real thumbnails, compact floating composition */
.fleet-gallery {
  width: min(920px, 100%);
  min-height: 122px;
  margin-top: 22px;
  padding-inline: clamp(6px, 2vw, 20px);
}

.fleet-gallery .gallery-grid {
  height: 148px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
  align-items: center;
}

.fleet-gallery .gallery-tile,
.fleet-gallery .gallery-tile.gallery-large,
.fleet-gallery .gallery-tile:nth-child(2),
.fleet-gallery .gallery-tile:nth-child(4) {
  min-height: 0;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  animation: galleryDrift 6.5s ease-in-out infinite;
}

.fleet-gallery .gallery-float-1 {
  grid-column: 2 / span 2;
  grid-row: 2 / span 2;
  rotate: -2deg;
}

.fleet-gallery .gallery-float-2 {
  grid-column: 4 / span 2;
  grid-row: 1 / span 2;
  rotate: 1.5deg;
  animation-delay: -1.4s;
}

.fleet-gallery .gallery-float-3 {
  grid-column: 6 / span 2;
  grid-row: 2 / span 3;
  rotate: -1deg;
  animation-delay: -2.2s;
}

.fleet-gallery .gallery-float-4 {
  grid-column: 8 / span 2;
  grid-row: 1 / span 2;
  rotate: 2.5deg;
  animation-delay: -3s;
}

.fleet-gallery .gallery-float-5 {
  grid-column: 10 / span 2;
  grid-row: 2 / span 2;
  rotate: -1.8deg;
  animation-delay: -4s;
}

.fleet-gallery .gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.fleet-gallery .gallery-tile:hover,
.fleet-gallery .gallery-tile:focus-visible {
  z-index: 3;
  transform: translateY(-7px) scale(1.04);
}

.fleet-gallery .gallery-tile:hover img,
.fleet-gallery .gallery-tile:focus-visible img {
  filter: saturate(1.12) contrast(1.06);
}

@media (max-width: 760px) {
  .header-actions {
    display: none;
  }

  .fleet-gallery {
    min-height: 190px;
  }

  .fleet-gallery .gallery-grid {
    height: 204px;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }

  .fleet-gallery .gallery-float-1 {
    grid-column: 1 / span 3;
    grid-row: 1 / span 2;
  }

  .fleet-gallery .gallery-float-2 {
    grid-column: 4 / span 3;
    grid-row: 2 / span 2;
  }

  .fleet-gallery .gallery-float-3 {
    grid-column: 1 / span 2;
    grid-row: 4 / span 2;
  }

  .fleet-gallery .gallery-float-4 {
    grid-column: 3 / span 2;
    grid-row: 4 / span 2;
  }

  .fleet-gallery .gallery-float-5 {
    grid-column: 5 / span 2;
    grid-row: 4 / span 2;
  }
}

/* Liquid glass polish and stable service dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown-menu {
  top: calc(100% + 10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.service-card,
.fleet-detail-card,
.fleet-detail-card .fleet-copy,
.contact-card,
.parchment-form,
.vehicle-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.16) 38%, rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.82), transparent 32%),
    rgba(236, 226, 207, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(26px) saturate(160%) contrast(1.02);
  -webkit-backdrop-filter: blur(26px) saturate(160%) contrast(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(255, 255, 255, 0.22),
    0 18px 48px rgba(0, 0, 0, 0.24);
}

.service-card {
  color: #171b1a;
}

.service-card::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.62), transparent 28%, rgba(255, 255, 255, 0.2) 48%, transparent 72%);
  mix-blend-mode: screen;
}

.fleet-detail-card,
.fleet-detail-card .fleet-copy,
.contact-card,
.parchment-form,
.vehicle-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07) 48%, rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.32), transparent 28%),
    rgba(255, 255, 255, 0.07);
}

.fleet-gallery {
  width: min(760px, 100%);
  min-height: 132px;
}

.fleet-gallery .gallery-grid {
  height: 154px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 1fr;
  gap: 14px;
  align-items: center;
}

.fleet-gallery .gallery-tile,
.fleet-gallery .gallery-tile.gallery-large,
.fleet-gallery .gallery-tile:nth-child(2),
.fleet-gallery .gallery-tile:nth-child(4),
.fleet-gallery .gallery-float-1,
.fleet-gallery .gallery-float-2,
.fleet-gallery .gallery-float-3,
.fleet-gallery .gallery-float-4,
.fleet-gallery .gallery-float-5 {
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  height: 112px;
  transform: none;
}

.fleet-gallery .gallery-float-1 {
  translate: 0 14px;
  rotate: -2deg;
}

.fleet-gallery .gallery-float-2 {
  translate: 0 -8px;
  rotate: 1.6deg;
}

.fleet-gallery .gallery-float-3 {
  translate: 0 10px;
  rotate: -1deg;
}

.fleet-gallery .gallery-float-4 {
  translate: 0 -4px;
  rotate: 2deg;
}

.fleet-gallery .gallery-float-5 {
  translate: 0 12px;
  rotate: -1.4deg;
}

.fleet-gallery .gallery-tile img {
  object-fit: contain;
  background: #ebe0cc;
}

@media (max-width: 760px) {
  .fleet-gallery {
    width: min(100%, 330px);
    min-height: 260px;
  }

  .fleet-gallery .gallery-grid {
    height: 260px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 1fr);
  }

  .fleet-gallery .gallery-tile,
  .fleet-gallery .gallery-tile.gallery-large,
  .fleet-gallery .gallery-tile:nth-child(2),
  .fleet-gallery .gallery-tile:nth-child(4),
  .fleet-gallery .gallery-float-1,
  .fleet-gallery .gallery-float-2,
  .fleet-gallery .gallery-float-3,
  .fleet-gallery .gallery-float-4,
  .fleet-gallery .gallery-float-5 {
    height: 112px;
  }
}

/* Final thumbnail layout: larger uniform image cards with beige matte */
.fleet-gallery {
  width: min(900px, 100%);
  min-height: 176px;
  margin-top: 28px;
  overflow: visible;
}

.fleet-gallery .gallery-grid {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 20px 12px 26px;
}

.fleet-gallery .gallery-tile,
.fleet-gallery .gallery-tile.gallery-large,
.fleet-gallery .gallery-tile:nth-child(2),
.fleet-gallery .gallery-tile:nth-child(4),
.fleet-gallery .gallery-float-1,
.fleet-gallery .gallery-float-2,
.fleet-gallery .gallery-float-3,
.fleet-gallery .gallery-float-4,
.fleet-gallery .gallery-float-5 {
  flex: 0 0 170px;
  width: 170px;
  height: 112px;
  min-height: 112px;
  display: block;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #ebe0cc;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.fleet-gallery .gallery-float-1 {
  translate: 0 10px;
  rotate: -3deg;
}

.fleet-gallery .gallery-float-2 {
  translate: 0 -12px;
  rotate: 2deg;
}

.fleet-gallery .gallery-float-3 {
  flex-basis: 190px;
  width: 190px;
  height: 124px;
  translate: 0 8px;
  rotate: -1deg;
}

.fleet-gallery .gallery-float-4 {
  translate: 0 -6px;
  rotate: 2.8deg;
}

.fleet-gallery .gallery-float-5 {
  translate: 0 12px;
  rotate: -2deg;
}

.fleet-gallery .gallery-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #ebe0cc;
}

@media (max-width: 980px) {
  .fleet-gallery .gallery-grid {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .fleet-gallery {
    width: min(100%, 352px);
    min-height: 0;
  }

  .fleet-gallery .gallery-grid {
    gap: 12px;
    padding: 16px 0 20px;
  }

  .fleet-gallery .gallery-tile,
  .fleet-gallery .gallery-tile.gallery-large,
  .fleet-gallery .gallery-tile:nth-child(2),
  .fleet-gallery .gallery-tile:nth-child(4),
  .fleet-gallery .gallery-float-1,
  .fleet-gallery .gallery-float-2,
  .fleet-gallery .gallery-float-3,
  .fleet-gallery .gallery-float-4,
  .fleet-gallery .gallery-float-5 {
    flex-basis: calc(50% - 8px);
    width: calc(50% - 8px);
    height: 104px;
    min-height: 104px;
  }
}

/* Thumbnail gallery: even rows, no overlap */
.fleet-gallery {
  width: min(980px, 100%);
  min-height: 0;
  margin: 28px auto 0;
  padding: 0;
}

.fleet-gallery .gallery-grid {
  height: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
  align-items: stretch;
  justify-items: stretch;
  padding: 18px 0 8px;
}

.fleet-gallery .gallery-tile,
.fleet-gallery .gallery-tile.gallery-large,
.fleet-gallery .gallery-tile:nth-child(2),
.fleet-gallery .gallery-tile:nth-child(4),
.fleet-gallery .gallery-float-1,
.fleet-gallery .gallery-float-2,
.fleet-gallery .gallery-float-3,
.fleet-gallery .gallery-float-4,
.fleet-gallery .gallery-float-5 {
  width: 100%;
  min-width: 0;
  height: auto;
  min-height: 0;
  aspect-ratio: 1.55 / 1;
  flex: initial;
  grid-column: auto;
  grid-row: auto;
  translate: 0 0;
  rotate: 0deg;
  transform: none;
  animation: galleryDrift 8s ease-in-out infinite;
}

.fleet-gallery .gallery-tile:nth-child(2n) {
  animation-delay: -1.5s;
}

.fleet-gallery .gallery-tile:nth-child(3n) {
  animation-delay: -3s;
}

.fleet-gallery .gallery-tile:hover,
.fleet-gallery .gallery-tile:focus-visible {
  transform: translateY(-5px);
}

@media (min-width: 900px) {
  .fleet-gallery .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-actions {
    display: none !important;
  }

  .fleet-gallery {
    width: 100%;
  }

  .fleet-gallery .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

.contact-shell {
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
}

.quote-form,
.parchment-form {
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.quote-form label {
  min-width: 0;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  min-width: 0;
}

.form-half {
  grid-column: span 6;
}

.form-quarter {
  grid-column: span 3;
}

.form-full {
  grid-column: 1 / -1;
}

.parchment-form > .form-full {
  display: grid;
  margin-top: 14px;
}

@media (max-width: 1120px) {
  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-toggle {
    display: none;
  }

  .header-actions {
    display: flex;
  }

  .phone-link {
    display: inline-flex;
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .form-quarter {
    grid-column: span 6;
  }

  .fleet-gallery .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .service-card {
    min-height: 172px;
    padding: 20px 14px;
  }

  .fleet-gallery .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .fleet-gallery .gallery-tile,
  .fleet-gallery .gallery-tile.gallery-large,
  .fleet-gallery .gallery-tile:nth-child(2),
  .fleet-gallery .gallery-tile:nth-child(4) {
    min-height: 76px;
  }

  .form-half,
  .form-quarter,
  .form-full {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .service-grid,
  .fleet-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Final enforced layout: liquid glass cards and non-overlapping thumbnails */
.services {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(235, 224, 204, 0.74)),
    radial-gradient(circle at 18% 0, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(128, 0, 32, 0.07));
}

.service-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.16) 45%, rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.22),
    0 18px 50px rgba(39, 34, 28, 0.22);
}

.service-card::after,
.fleet-detail-card::after,
.parchment-form::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.58), transparent 28%, rgba(255, 255, 255, 0.16) 46%, transparent 72%);
  opacity: 0.72;
  pointer-events: none;
}

.fleet-detail-card,
.parchment-form {
  position: relative;
  overflow: hidden;
}

.fleet-detail-card > *,
.parchment-form > * {
  position: relative;
  z-index: 1;
}

.fleet-gallery {
  width: min(980px, 100%);
  margin: 26px auto 0;
  padding: 0;
}

.fleet-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  width: 100%;
  height: auto;
  padding: 18px 0 6px;
}

.fleet-gallery .gallery-tile,
.fleet-gallery .gallery-tile.gallery-large,
.fleet-gallery .gallery-tile:nth-child(2),
.fleet-gallery .gallery-tile:nth-child(4),
.fleet-gallery .gallery-float-1,
.fleet-gallery .gallery-float-2,
.fleet-gallery .gallery-float-3,
.fleet-gallery .gallery-float-4,
.fleet-gallery .gallery-float-5 {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1.55 / 1;
  grid-column: auto;
  grid-row: auto;
  translate: 0 0;
  rotate: 0deg;
  transform: none;
  padding: 0;
  background: #ebe0cc;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 12px 26px rgba(0, 0, 0, 0.2);
  animation: galleryDrift 8s ease-in-out infinite;
}

.fleet-gallery .gallery-tile:nth-child(even) {
  animation-delay: -1.7s;
}

.fleet-gallery .gallery-tile:nth-child(3n) {
  animation-delay: -3.2s;
}

.fleet-gallery .gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ebe0cc;
}

.fleet-gallery .gallery-tile:hover,
.fleet-gallery .gallery-tile:focus-visible {
  transform: translateY(-5px);
}

@media (max-width: 760px) {
  .header-actions {
    display: none !important;
  }

  .fleet-gallery .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .fleet-gallery .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Liquid glass needs a detailed backdrop behind the cards */
.services {
  width: 100%;
  max-width: none;
  margin-top: -62px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2)) 82px;
  background:
    linear-gradient(180deg, rgba(11, 14, 13, 0.18), rgba(11, 14, 13, 0.54) 42%, rgba(237, 226, 206, 0.26) 100%),
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.26), transparent 24%),
    url("../img/imi-hero-chainbridge.png") center 62% / cover no-repeat;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.service-grid {
  position: relative;
  z-index: 1;
}

.service-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1) 42%, rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(28px) saturate(175%) brightness(1.08);
  -webkit-backdrop-filter: blur(28px) saturate(175%) brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(255, 255, 255, 0.16),
    0 20px 52px rgba(0, 0, 0, 0.28);
}

.service-card h3 {
  color: #101312;
}

.service-card p {
  color: rgba(26, 24, 21, 0.78);
}

.service-card::before {
  opacity: 0.55;
}

.hero-editorial {
  min-height: 650px;
  padding: 74px 0 210px;
  background:
    linear-gradient(90deg, rgba(13, 16, 15, 0.78) 0%, rgba(13, 16, 15, 0.54) 25%, rgba(13, 16, 15, 0.14) 52%, rgba(13, 16, 15, 0.02) 100%),
    linear-gradient(180deg, rgba(13, 16, 15, 0.04), rgba(13, 16, 15, 0.26) 72%, rgba(13, 16, 15, 0.62) 100%),
    url("../img/imi-hero-chainbridge.png") center 55% / cover no-repeat;
}

.hero-editorial-grid {
  grid-template-columns: minmax(320px, 0.52fr) minmax(520px, 1.48fr);
}

.hero-editorial .hero-copy {
  max-width: 540px;
}

.hero-editorial h1 {
  max-width: 520px;
  font-size: clamp(36px, 3.7vw, 56px);
}

.hero-editorial .hero-copy p:not(.eyebrow) {
  max-width: 510px;
}

.hero-editorial::after {
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(18, 21, 20, 0.92));
}

.services {
  width: min(var(--max), calc(100% - 48px));
  max-width: var(--max);
  margin: -190px auto 0;
  padding: 0 0 54px;
  background: transparent;
}

.services::before {
  display: none;
}

.service-grid {
  gap: 22px;
}

.fleet-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  width: 100%;
  height: auto;
  padding: 18px 0 6px;
}

.thumb-card {
  width: 100%;
  min-width: 0;
  aspect-ratio: 1.55 / 1;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: #ebe0cc;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 12px 26px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  animation: galleryDrift 8s ease-in-out infinite;
}

.thumb-card:nth-child(even) {
  animation-delay: -1.7s;
}

.thumb-card:nth-child(3n) {
  animation-delay: -3.2s;
}

.thumb-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #ebe0cc;
}

.thumb-card:hover,
.thumb-card:focus-visible {
  transform: translateY(-5px);
}

@media (max-width: 760px) {
  .services {
    width: min(100% - 28px, var(--max));
    margin-top: -86px;
    padding-right: 0;
    padding-left: 0;
  }

  .hero-editorial {
    min-height: 660px;
    padding-bottom: 142px;
    background:
      linear-gradient(90deg, rgba(13, 16, 15, 0.74) 0%, rgba(13, 16, 15, 0.48) 42%, rgba(13, 16, 15, 0.12) 100%),
      linear-gradient(180deg, rgba(13, 16, 15, 0.08), rgba(13, 16, 15, 0.72) 100%),
      url("../img/imi-hero-chainbridge.png") 60% center / cover no-repeat;
  }

  .hero-editorial h1 {
    font-size: 31px;
  }

  .fleet-gallery .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Clean thumbnail grid, isolated from legacy gallery styles */
.fleet-gallery {
  width: min(980px, 100%);
  margin: 28px auto 0;
  padding: 0;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  padding: 18px 0 6px;
}

.thumb-card {
  appearance: none;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  display: block;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: #ebe0cc;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 12px 26px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  animation: galleryDrift 8s ease-in-out infinite;
}

.thumb-card:nth-child(even) {
  animation-delay: -1.6s;
}

.thumb-card:nth-child(3n) {
  animation-delay: -3.1s;
}

.thumb-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #ebe0cc;
}

.thumb-card:hover,
.thumb-card:focus-visible {
  transform: translateY(-5px);
  outline: none;
  border-color: rgba(212, 175, 55, 0.72);
}

@media (max-width: 760px) {
  .thumb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/* Hard override for the vehicle thumbnails */
#vehicle-gallery.thumb-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  width: min(980px, 100%) !important;
  margin: 0 auto !important;
  padding: 18px 0 8px !important;
}

#vehicle-gallery.thumb-grid > .thumb-card {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1.55 / 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: #ebe0cc !important;
  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  border-radius: 8px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 12px 26px rgba(0, 0, 0, 0.22) !important;
}

#vehicle-gallery.thumb-grid > .thumb-card > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #ebe0cc !important;
}

@media (max-width: 760px) {
  #vehicle-gallery.thumb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
}

/* Uiverse-inspired liquid glass service cards */
.services .service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: clamp(14px, 1.45vw, 22px);
  align-items: start;
}

.services {
  position: relative;
  z-index: 8;
}

.services::before {
  display: block;
  content: none;
}

.services .service-glass-card {
  position: relative;
  width: 100%;
  min-height: 132px;
  height: 132px;
  padding: 0;
  overflow: visible;
  color: #fff8e8;
  text-align: left;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: skewX(8deg);
  transform-origin: center top;
  transition: transform 0.38s ease;
}

.services .service-card-shell {
  position: absolute;
  inset: 0;
  min-height: 132px;
  padding: 1.05rem 0.8rem 0.95rem;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-content: center;
  gap: 10px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.3), transparent 27%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.035)),
    rgba(120, 125, 118, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 3px solid rgba(255, 255, 255, 0.44);
  border-left: 2px outset rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  backdrop-filter: blur(20px) saturate(175%) brightness(1.04);
  -webkit-backdrop-filter: blur(20px) saturate(175%) brightness(1.04);
  box-shadow:
    -28px 34px 26px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  transition: min-height 0.38s ease, transform 0.38s ease, box-shadow 0.38s ease, background 0.38s ease;
}

.services .service-card-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.62;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.48), transparent 30%, rgba(255, 255, 255, 0.12) 48%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(13, 16, 15, 0.26) 100%);
  pointer-events: none;
}

.services .service-glass-card::after {
  display: none;
}

.services .service-card-shell > * {
  position: relative;
  z-index: 1;
  transform: skewX(-8deg);
}

.services .service-glass-card h3 {
  margin: 0;
  align-self: center;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.08;
  text-align: center;
  text-shadow: -8px 5px 12px rgba(0, 0, 0, 0.54);
}

.services .service-glass-card p {
  margin: 2px 0 0;
  color: rgba(255, 248, 232, 0.9);
  font-size: 13px;
  line-height: 1.38;
  opacity: 0;
  max-height: 0;
  transform: translateY(10px) skewX(-8deg);
  transition: opacity 0.26s ease, transform 0.26s ease, max-height 0.26s ease;
}

.services .service-glass-card a {
  justify-self: start;
  margin-top: 6px;
  color: #fff8e8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  max-height: 0;
  transform: translateY(10px) skewX(-8deg);
  transition: opacity 0.26s ease, transform 0.26s ease, color 0.2s ease, max-height 0.26s ease;
}

.services .service-glass-card:hover,
.services .service-glass-card:focus-within,
.services .service-glass-card.is-open {
  z-index: 20;
  transform: skewX(0deg);
}

.services .service-glass-card:hover .service-card-shell,
.services .service-glass-card:focus-within .service-card-shell,
.services .service-glass-card.is-open .service-card-shell {
  min-height: 258px;
  transform: translateY(-6px);
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.32), transparent 28%),
    linear-gradient(132deg, rgba(47, 52, 48, 0.86), rgba(33, 38, 36, 0.72) 48%, rgba(118, 0, 32, 0.22)),
    rgba(18, 21, 20, 0.68);
  box-shadow:
    -34px 42px 34px rgba(0, 0, 0, 0.36),
    0 0 26px rgba(212, 175, 55, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.services .service-glass-card:hover .service-card-shell > *,
.services .service-glass-card:focus-within .service-card-shell > *,
.services .service-glass-card.is-open .service-card-shell > * {
  transform: skewX(0deg);
}

.services .service-glass-card:hover p,
.services .service-glass-card:hover a,
.services .service-glass-card:focus-within p,
.services .service-glass-card:focus-within a,
.services .service-glass-card.is-open p,
.services .service-glass-card.is-open a {
  opacity: 1;
  max-height: 120px;
  transform: translateY(0);
}

.services .service-glass-card a:hover,
.services .service-glass-card a:focus-visible {
  color: var(--champagne-2);
}

@media (max-width: 1120px) {
  .services .service-grid {
    grid-template-columns: repeat(5, minmax(132px, 1fr));
    gap: 12px;
  }

  .services .service-glass-card {
    transform: skewX(5deg);
  }

  .services .service-card-shell > * {
    transform: skewX(-5deg);
  }
}

@media (max-width: 760px) {
  .services .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services .service-glass-card {
    height: 112px;
    min-height: 112px;
    transform: skewX(4deg);
  }

  .services .service-card-shell {
    min-height: 112px;
    padding: 1rem 0.95rem;
  }

  .services .service-card-shell > * {
    transform: skewX(-4deg);
  }

  .services .service-glass-card:hover {
    height: 112px;
    min-height: 112px;
    transform: skewX(4deg);
  }

  .services .service-glass-card.is-open,
  .services .service-glass-card:focus-within {
    height: 112px;
    min-height: 112px;
    transform: skewX(0deg);
  }

  .services .service-glass-card.is-open .service-card-shell,
  .services .service-glass-card:focus-within .service-card-shell {
    min-height: 232px;
    transform: translateY(-3px);
  }

  .services .service-glass-card.is-open .service-card-shell > *,
  .services .service-glass-card:focus-within .service-card-shell > * {
    transform: skewX(0deg);
  }
}

/* Fleet section refinement */
.fleet-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) 0 clamp(64px, 7vw, 104px);
  background:
    linear-gradient(180deg, rgba(14, 17, 16, 0.98), rgba(17, 20, 19, 0.97) 52%, rgba(13, 16, 15, 0.98));
}

.fleet-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.42;
  pointer-events: none;
}

.fleet-section::after {
  content: "";
  position: absolute;
  width: min(980px, 72vw);
  height: min(520px, 42vw);
  left: 50%;
  top: 34%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.16), transparent 64%),
    radial-gradient(ellipse at center, rgba(128, 0, 32, 0.16), transparent 70%);
  filter: blur(18px);
  opacity: 0.62;
  pointer-events: none;
}

.fleet-section .shell {
  position: relative;
  z-index: 1;
}

.fleet-section .section-head.center {
  max-width: 1040px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  padding: clamp(20px, 3vw, 34px) clamp(18px, 4vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    rgba(10, 12, 12, 0.34);
  background-size: 96px 96px, 96px 96px, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.fleet-section .section-head.center .eyebrow {
  margin-bottom: 14px;
  color: var(--champagne-2);
  font-size: 12px;
  letter-spacing: 0.42em;
}

.fleet-section .section-head.center h2 {
  margin: 0;
  color: #fffaf0;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(128, 0, 32, 0.75), 0 18px 38px rgba(0, 0, 0, 0.42);
}

.fleet-section .section-head.center h2::after {
  content: "";
  display: block;
  width: 176px;
  height: 2px;
  margin: 28px auto 18px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}

.fleet-section .section-head.center p:not(.eyebrow) {
  max-width: 980px;
  margin: 0 auto;
  color: rgba(255, 250, 240, 0.92);
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 750;
  line-height: 1.38;
}

.fleet-card-picker {
  margin: 0 auto clamp(26px, 3.4vw, 42px);
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
  max-width: 1040px;
}

.vehicle-card {
  min-height: 94px;
  padding: 16px 18px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(18, 21, 20, 0.48);
  color: #fffaf0;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.vehicle-card span,
.vehicle-card small {
  color: rgba(255, 250, 240, 0.72);
}

.vehicle-card strong {
  white-space: nowrap;
  color: #fffaf0;
  font-size: clamp(18px, 1.5vw, 23px);
  letter-spacing: 0.01em;
}

.vehicle-card:hover,
.vehicle-card:focus-visible,
.vehicle-card.is-active {
  border-color: rgba(212, 175, 55, 0.68);
  background:
    linear-gradient(145deg, rgba(128, 0, 32, 0.82), rgba(165, 42, 42, 0.42)),
    rgba(18, 21, 20, 0.58);
  transform: translateY(-3px);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(128, 0, 32, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.fleet-detail-card {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(330px, 0.78fr);
  gap: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(18, 21, 20, 0.52);
  box-shadow:
    0 28px 68px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.fleet-detail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 28%, rgba(212, 175, 55, 0.06) 74%, transparent);
  pointer-events: none;
}

.fleet-detail-card .fleet-image-panel {
  position: relative;
  min-height: clamp(360px, 38vw, 510px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 78%, rgba(255, 250, 240, 0.24), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035) 52%, rgba(0, 0, 0, 0.24)),
    rgba(33, 38, 36, 0.62);
}

.fleet-detail-card .fleet-image-panel::before {
  content: "";
  position: absolute;
  inset: 4% -8% -4% -10%;
  background:
    repeating-radial-gradient(ellipse at 50% 72%, transparent 0 22px, rgba(212, 175, 55, 0.2) 23px 24px, transparent 25px 48px);
  opacity: 0.54;
  transform: perspective(760px) rotateX(58deg);
  transform-origin: center bottom;
}

.fleet-detail-card .fleet-image-panel::after {
  content: "";
  position: absolute;
  width: 66%;
  height: 22%;
  left: 17%;
  bottom: 12%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.44), transparent 68%);
  filter: blur(10px);
}

.fleet-detail-card .fleet-image-panel img {
  position: relative;
  z-index: 1;
  width: min(92%, 700px);
  max-height: 88%;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.48));
}

.fleet-detail-card .fleet-copy {
  position: relative;
  z-index: 1;
  padding: clamp(30px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    rgba(26, 30, 28, 0.58);
}

.fleet-detail-card .fleet-tag {
  color: var(--champagne-2);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.fleet-detail-card .fleet-copy h3 {
  max-width: 100%;
  margin: 4px 0 14px;
  color: #fffaf0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
  white-space: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.fleet-detail-card .fleet-copy h3,
.vehicle-card strong,
.pricing-table td:first-child {
  hyphens: none;
  word-break: normal;
}

.fleet-detail-card .fleet-copy p:not(.fleet-tag) {
  color: rgba(255, 250, 240, 0.88);
  font-size: 16px;
  line-height: 1.58;
}

.fleet-detail-card .fleet-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 16px;
}

.fleet-detail-card .fleet-stats article {
  position: relative;
  min-height: 84px;
  padding: 16px 14px 14px 48px;
  border-radius: 9px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(255, 250, 240, 0.08);
}

.fleet-detail-card .fleet-stats article::before {
  content: "♙";
  position: absolute;
  left: 16px;
  top: 18px;
  color: var(--champagne);
  font-size: 20px;
}

.fleet-detail-card .fleet-stats article:nth-child(2)::before {
  content: "▣";
}

.fleet-detail-card .fleet-stats strong {
  display: block;
  color: #fffaf0;
  font-size: 28px;
  line-height: 1;
}

.fleet-detail-card .fleet-stats span {
  color: rgba(255, 250, 240, 0.72);
}

.fleet-detail-card .fleet-features {
  display: grid;
  gap: 10px;
  margin: 6px 0 24px;
  padding: 0;
  list-style: none;
  color: rgba(255, 250, 240, 0.9);
}

.fleet-detail-card .fleet-features li {
  position: relative;
  padding: 9px 10px 9px 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.fleet-detail-card .fleet-features li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fffaf0;
  background: rgba(128, 0, 32, 0.78);
  font-size: 12px;
}

@media (max-width: 920px) {
  .fleet-card-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-detail-card {
    grid-template-columns: 1fr;
  }

  .fleet-detail-card .fleet-copy {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 560px) {
  .fleet-section .section-head.center {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    box-sizing: border-box;
    padding-inline: 16px;
    overflow: hidden;
  }

  .fleet-section .section-head.center .eyebrow {
    letter-spacing: 0.28em;
  }

  .fleet-section .section-head.center h2 {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.1;
    max-width: 100%;
    overflow-wrap: normal;
  }

  .fleet-section .section-head.center p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 720;
  }

  .fleet-card-picker {
    grid-template-columns: 1fr;
  }

  .fleet-detail-card .fleet-image-panel {
    min-height: 310px;
  }

  .fleet-detail-card .fleet-copy h3 {
    font-size: clamp(32px, 10vw, 42px);
  }
}

/* Fleet compact liquid-glass polish */
.fleet-section {
  padding: clamp(58px, 6vw, 86px) 0 clamp(54px, 6vw, 82px);
}

.fleet-section .section-head.center {
  max-width: 980px;
  margin-bottom: clamp(22px, 3vw, 34px);
  padding: clamp(18px, 2.4vw, 28px) clamp(18px, 3vw, 42px);
  border-color: rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(10, 12, 12, 0.22);
  background-size: 92px 92px, 92px 92px, auto, auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fleet-section .section-head.center .eyebrow {
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.34em;
}

.fleet-section .section-head.center h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.04;
  text-transform: none;
  letter-spacing: 0;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
}

.fleet-section .section-head.center h2::after {
  width: 138px;
  margin: 20px auto 14px;
}

.fleet-section .section-head.center p:not(.eyebrow) {
  max-width: 840px;
  font-size: clamp(14px, 1.16vw, 16px);
  font-weight: 650;
  line-height: 1.5;
}

.fleet-card-picker {
  max-width: 920px;
  margin-bottom: clamp(18px, 2.5vw, 28px);
  gap: clamp(9px, 1.1vw, 14px);
}

.vehicle-card {
  min-height: 62px;
  padding: 10px 14px;
  gap: 1px;
  border-radius: 9px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.045) 62%, rgba(255, 255, 255, 0.02)),
    rgba(26, 30, 28, 0.34);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
}

.vehicle-card::before,
.vehicle-card::after {
  display: none;
}

.vehicle-card span {
  font-size: 11px;
}

.vehicle-card strong {
  font-size: clamp(16px, 1.24vw, 19px);
}

.vehicle-card small {
  font-size: 11px;
  line-height: 1.2;
}

.vehicle-card:hover,
.vehicle-card:focus-visible,
.vehicle-card.is-active {
  transform: translateY(-2px);
  background:
    linear-gradient(145deg, rgba(128, 0, 32, 0.72), rgba(165, 42, 42, 0.28) 52%, rgba(255, 255, 255, 0.08)),
    rgba(26, 30, 28, 0.36);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.3),
    0 0 18px rgba(128, 0, 32, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.fleet-detail-card {
  max-width: 1040px;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  border-radius: 12px;
}

.fleet-detail-card .fleet-image-panel {
  min-height: clamp(300px, 30vw, 390px);
  padding: clamp(18px, 2.6vw, 34px);
  background:
    radial-gradient(ellipse at 50% 76%, rgba(212, 175, 55, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(31, 35, 33, 0.8);
}

.fleet-detail-card .fleet-image-panel::before {
  inset: 8% -5% 2%;
  opacity: 0.42;
}

.fleet-detail-card .fleet-image-panel::after {
  bottom: 9%;
}

.fleet-detail-card .fleet-image-panel img {
  width: 100%;
  height: min(100%, 326px);
  max-height: 326px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.38));
}

.fleet-detail-card .fleet-copy {
  padding: clamp(22px, 3vw, 34px);
}

.fleet-detail-card .fleet-tag {
  margin-bottom: 8px;
  font-size: 11px;
}

.fleet-detail-card .fleet-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(29px, 3.2vw, 40px);
  line-height: 1.03;
}

.fleet-detail-card .fleet-copy p:not(.fleet-tag) {
  font-size: 14px;
  line-height: 1.5;
}

.fleet-detail-card .fleet-stats {
  gap: 10px;
  margin: 18px 0 12px;
}

.fleet-detail-card .fleet-stats article {
  min-height: 64px;
  padding: 11px 12px 10px 42px;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.065);
}

.fleet-detail-card .fleet-stats article::before {
  content: none;
}

.fleet-detail-card .fleet-stats strong {
  font-size: 24px;
}

.fleet-detail-card .fleet-features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 18px;
}

.fleet-detail-card .fleet-features li {
  min-height: 36px;
  padding: 8px 10px 8px 38px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.025);
  font-size: 13px;
  line-height: 1.2;
}

.fleet-detail-card .fleet-features li::before {
  content: none;
}

.fleet-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--champagne);
  background: currentColor;
  opacity: 0.95;
}

.fleet-stats .fleet-icon {
  left: 14px;
  width: 20px;
  height: 20px;
}

.fleet-icon-passengers,
.fleet-icon-comfort {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-8 0v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-8 0v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.fleet-icon-luggage {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='7' width='12' height='13' rx='2'/%3E%3Cpath d='M9 7V5a3 3 0 0 1 6 0v2M9 11h6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='7' width='12' height='13' rx='2'/%3E%3Cpath d='M9 7V5a3 3 0 0 1 6 0v2M9 11h6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.fleet-icon-seat,
.fleet-icon-vip {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 12V5a3 3 0 0 1 3-3h4a3 3 0 0 1 3 3v7M6 12h12l-1 8H7l-1-8Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 12V5a3 3 0 0 1 3-3h4a3 3 0 0 1 3 3v7M6 12h12l-1 8H7l-1-8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.fleet-icon-wifi {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5a10 10 0 0 1 14 0M8.5 16a5 5 0 0 1 7 0'/%3E%3Ccircle cx='12' cy='19' r='1'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5a10 10 0 0 1 14 0M8.5 16a5 5 0 0 1 7 0'/%3E%3Ccircle cx='12' cy='19' r='1'/%3E%3C/svg%3E") center / contain no-repeat;
}

.fleet-icon-usb {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12M8 7l4-4 4 4M8 15h8M10 21h4v-6h-4v6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12M8 7l4-4 4 4M8 15h8M10 21h4v-6h-4v6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.fleet-icon-business,
.fleet-icon-check,
.fleet-icon-climate {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.fleet-gallery {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(18, 21, 20, 0.22);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

#vehicle-gallery.thumb-grid > .thumb-card {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(245, 238, 224, 0.74) !important;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
}

@media (max-width: 920px) {
  .fleet-detail-card {
    max-width: 760px;
  }

  .fleet-detail-card .fleet-image-panel {
    min-height: 290px;
  }
}

@media (max-width: 560px) {
  html,
  body {
    overflow-x: hidden;
  }

  .fleet-section .section-head.center h2 {
    font-size: clamp(28px, 8.4vw, 36px);
  }

  .fleet-section .section-head.center,
  .fleet-card-picker,
  .fleet-detail-card,
  .fleet-gallery {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    box-sizing: border-box;
  }

  .fleet-section .section-head.center p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: block;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
    text-align: center;
  }

  .vehicle-card {
    min-height: 58px;
  }

  .vehicle-card small {
    display: none;
  }

  .fleet-detail-card .fleet-image-panel {
    min-height: 250px;
    padding: 14px;
  }

  .fleet-detail-card .fleet-image-panel img {
    max-height: 222px;
  }

  .fleet-detail-card .fleet-features {
    grid-template-columns: 1fr;
  }
}

/* Compact fleet polish */
.fleet-section {
  padding: clamp(58px, 6vw, 86px) 0 clamp(54px, 6vw, 82px);
}

.fleet-section .section-head.center {
  max-width: 980px;
  margin-bottom: clamp(22px, 3vw, 34px);
  padding: clamp(14px, 2.2vw, 24px) clamp(18px, 3.5vw, 42px);
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(12, 15, 14, 0.28);
  backdrop-filter: blur(12px) saturate(135%);
  -webkit-backdrop-filter: blur(12px) saturate(135%);
}

.fleet-section .section-head.center .eyebrow {
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
}

.fleet-section .section-head.center h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.fleet-section .section-head.center h2::after {
  width: 118px;
  margin: 18px auto 14px;
}

.fleet-section .section-head.center p:not(.eyebrow) {
  max-width: 880px;
  font-size: clamp(14px, 1.18vw, 16px);
  font-weight: 650;
}

.fleet-card-picker {
  max-width: 960px;
  margin-bottom: 22px;
  gap: 12px;
}

.vehicle-card {
  min-height: 58px;
  padding: 9px 16px;
  grid-template-columns: auto 1fr;
  align-items: center;
  align-content: center;
  column-gap: 10px;
  row-gap: 0;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.055)),
    rgba(18, 21, 20, 0.32);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.vehicle-card::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.45), transparent 32%),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.vehicle-card span {
  grid-column: 2;
  font-size: 10px;
  line-height: 1;
}

.vehicle-card strong {
  grid-column: 2;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.05;
}

.vehicle-card small {
  display: none;
}

.vehicle-card:hover,
.vehicle-card:focus-visible,
.vehicle-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055)),
    linear-gradient(145deg, rgba(128, 0, 32, 0.82), rgba(128, 0, 32, 0.46));
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.25),
    0 0 18px rgba(128, 0, 32, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.fleet-detail-card {
  max-width: 980px;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.72fr);
  border-radius: 12px;
}

.fleet-detail-card .fleet-image-panel {
  min-height: clamp(300px, 31vw, 390px);
  background:
    radial-gradient(ellipse at 50% 76%, rgba(212, 175, 55, 0.13), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(36, 41, 38, 0.78);
}

.fleet-detail-card .fleet-image-panel::before {
  inset: -8% -6% -10%;
  background:
    repeating-radial-gradient(ellipse at 50% 74%, transparent 0 18px, rgba(212, 175, 55, 0.16) 19px 20px, transparent 21px 40px);
  opacity: 0.46;
}

.fleet-detail-card .fleet-image-panel::after {
  bottom: 10%;
  height: 18%;
}

.fleet-detail-card .fleet-image-panel img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 18px;
}

.fleet-detail-card .fleet-copy {
  padding: clamp(22px, 3vw, 34px);
}

.fleet-detail-card .fleet-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(29px, 3.2vw, 42px);
  line-height: 1.02;
}

.fleet-detail-card .fleet-copy p:not(.fleet-tag) {
  font-size: 14px;
  line-height: 1.48;
}

.fleet-detail-card .fleet-stats {
  margin: 16px 0 12px;
  gap: 10px;
}

.fleet-detail-card .fleet-stats article {
  min-height: 58px;
  padding: 11px 12px 10px 38px;
  border-radius: 8px;
}

.fleet-detail-card .fleet-stats article::before {
  left: 13px;
  top: 15px;
  font-size: 15px;
}

.fleet-detail-card .fleet-stats strong {
  font-size: 24px;
}

.fleet-detail-card .fleet-features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.fleet-detail-card .fleet-features li {
  padding: 8px 9px 8px 34px;
  border-radius: 12px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.07);
}

.fleet-detail-card .fleet-features li::before {
  left: 10px;
  width: 17px;
  height: 17px;
  font-size: 11px;
}

.fleet-detail-card .fleet-features li:nth-child(1)::before {
  content: "⌑";
}

.fleet-detail-card .fleet-features li:nth-child(2)::before {
  content: "⌁";
}

.fleet-detail-card .fleet-features li:nth-child(3)::before {
  content: "⌂";
}

.fleet-detail-card .fleet-features li:nth-child(4)::before {
  content: "◇";
}

.fleet-detail-card .primary-btn {
  align-self: start;
  min-height: 42px;
  padding: 12px 22px;
}

.fleet-gallery {
  max-width: 980px;
  margin: 20px auto 0;
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(18, 21, 20, 0.28);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

#vehicle-gallery.thumb-grid > .thumb-card {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(255, 250, 240, 0.72) !important;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.32) !important;
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
}

@media (max-width: 920px) {
  .vehicle-card {
    border-radius: 14px;
  }

  .fleet-detail-card {
    max-width: 720px;
  }
}

@media (max-width: 560px) {
  .fleet-section .section-head.center h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .fleet-card-picker {
    gap: 9px;
  }

  .vehicle-card {
    min-height: 52px;
    padding: 8px 14px;
  }

  .fleet-detail-card .fleet-image-panel {
    min-height: 260px;
  }

  .fleet-detail-card .fleet-copy {
    padding: 22px 18px;
  }

  .fleet-detail-card .fleet-features {
    grid-template-columns: 1fr;
  }
}

/* Final mobile width guard for the fleet title panel */
@media (max-width: 560px) {
  .fleet-section,
  .fleet-section .shell {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .fleet-section .section-head.center {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 14px;
    padding-right: 14px;
  }

  .fleet-section .section-head.center p:not(.eyebrow) {
    width: auto !important;
    max-width: 292px !important;
    min-width: 0 !important;
    margin-left: auto;
    margin-right: auto;
    display: block;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
    font-size: 13px;
    line-height: 1.48;
  }
}

/* Lovable-inspired structure merge: motion strip and image-led fleet selector */
.marquee-band {
  position: relative;
  z-index: 5;
  overflow: hidden;
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  background:
    linear-gradient(90deg, rgba(128, 0, 32, 0.82), rgba(18, 21, 20, 0.92) 34%, rgba(128, 0, 32, 0.72)),
    rgba(18, 21, 20, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 34px rgba(0, 0, 0, 0.22);
}

.marquee-band::before,
.marquee-band::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-band::before {
  left: 0;
  background: linear-gradient(90deg, rgba(18, 21, 20, 0.98), transparent);
}

.marquee-band::after {
  right: 0;
  background: linear-gradient(270deg, rgba(18, 21, 20, 0.98), transparent);
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 28px;
  align-items: center;
  animation: premium-marquee 34s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 250, 240, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.5);
}

@keyframes premium-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.fleet-card-picker {
  max-width: 1060px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 4px;
}

.vehicle-card {
  min-height: 138px;
  padding: 9px;
  grid-template-rows: 72px auto auto;
  align-content: start;
  text-align: left;
  border-radius: 14px;
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.045)),
    rgba(18, 21, 20, 0.36);
  overflow: hidden;
}

.vehicle-card::before,
.vehicle-card::after {
  display: none !important;
}

.vehicle-card-media {
  display: block;
  width: 100%;
  height: 72px;
  margin: 0 0 8px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 250, 240, 0.14);
}

.vehicle-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) contrast(1.03);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.vehicle-card-kicker {
  font-size: 10px;
  line-height: 1;
  color: rgba(255, 250, 240, 0.62);
}

.vehicle-card strong {
  margin-top: 1px;
  font-size: clamp(17px, 1.28vw, 21px);
}

.vehicle-card small {
  margin-top: 3px;
  color: rgba(255, 250, 240, 0.68);
}

.vehicle-card:hover .vehicle-card-media img,
.vehicle-card:focus-visible .vehicle-card-media img,
.vehicle-card.is-active .vehicle-card-media img {
  transform: scale(1.06);
  filter: saturate(1.03) contrast(1.06);
}

.vehicle-card:hover,
.vehicle-card:focus-visible,
.vehicle-card.is-active {
  border-color: rgba(212, 175, 55, 0.7);
  background:
    linear-gradient(145deg, rgba(128, 0, 32, 0.76), rgba(165, 42, 42, 0.3) 48%, rgba(255, 255, 255, 0.07)),
    rgba(18, 21, 20, 0.46);
}

.fleet-detail-card {
  max-width: 1060px;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.48fr);
  border-radius: 16px;
}

.fleet-detail-card .fleet-image-panel {
  min-height: clamp(330px, 34vw, 430px);
  padding: clamp(18px, 2vw, 26px);
}

.fleet-detail-card .fleet-image-panel img {
  width: 100%;
  height: 100%;
  max-height: 372px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.fleet-detail-card .fleet-copy {
  padding: clamp(24px, 2.8vw, 38px);
}

.fleet-detail-card .fleet-copy h3 {
  font-size: clamp(31px, 3.4vw, 46px);
}

.fleet-gallery {
  max-width: 1060px;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

@media (max-width: 920px) {
  .fleet-card-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .marquee-track {
    animation-duration: 26s;
  }

  .marquee-track span {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .fleet-card-picker {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .vehicle-card {
    min-height: 116px;
    padding: 7px;
    grid-template-rows: 58px auto auto;
  }

  .vehicle-card-media {
    height: 58px;
    margin-bottom: 7px;
  }

  .vehicle-card strong {
    font-size: 16px;
  }

  .vehicle-card small {
    display: none;
  }

  .fleet-detail-card {
    grid-template-columns: 1fr;
  }

  .fleet-detail-card .fleet-image-panel {
    min-height: 245px;
  }
}

@media (max-width: 560px) {
  .fleet-section,
  .fleet-section .shell {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .fleet-section .section-head.center,
  .fleet-card-picker,
  .fleet-detail-card,
  .fleet-gallery {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .fleet-card-picker {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }

  .vehicle-card {
    position: relative;
    display: block !important;
    min-height: 136px;
    padding: 18px 138px 16px 16px;
  }

  .vehicle-card-media {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 116px;
    height: 72px;
    margin: 0;
  }

  .vehicle-card-kicker,
  .vehicle-card strong,
  .vehicle-card small {
    display: block;
  }

  .vehicle-card strong {
    font-size: 15px;
  }

  .vehicle-card small {
    display: block;
    font-size: 10px;
    line-height: 1.15;
  }
}

/* Unified warm glass direction: fleet and pricing */
:root {
  --warm-page: #e7dcc9;
  --warm-dark: #615646;
  --warm-mid: #9a8b75;
  --warm-panel: rgba(242, 231, 211, 0.54);
  --warm-panel-strong: rgba(248, 239, 222, 0.72);
  --warm-border: rgba(128, 0, 32, 0.18);
  --warm-gold-border: rgba(212, 175, 55, 0.38);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 250, 240, 0.52), transparent 24%),
    linear-gradient(135deg, rgba(128, 0, 32, 0.025), transparent 32%),
    var(--warm-page);
}

.fleet-section,
.pricing-section,
.promise-band,
.contact-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 250, 240, 0.28), transparent 26%),
    linear-gradient(rgba(128, 0, 32, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 0, 32, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #d9cbb4, #cdbb9e 55%, #d9cbb4);
  background-size: auto, 34px 34px, 34px 34px, auto;
  color: #3a221f;
}

.fleet-section {
  padding: clamp(52px, 6vw, 82px) 0;
}

.fleet-section .shell {
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px;
  padding: clamp(16px, 2vw, 24px);
  display: grid;
  grid-template-columns: minmax(270px, 340px) minmax(0, 1fr);
  grid-template-areas:
    "head head"
    "picker detail"
    "picker gallery";
  gap: clamp(14px, 1.6vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.14)),
    var(--warm-panel);
  box-shadow:
    0 28px 70px rgba(64, 42, 26, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(128, 0, 32, 0.08);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
}

.fleet-section .section-head.center {
  grid-area: head;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(16px, 2vw, 24px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.14)),
    rgba(255, 250, 240, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 16px 34px rgba(64, 42, 26, 0.1);
}

.fleet-section .section-head.center .eyebrow {
  color: var(--primary-burgundy);
}

.fleet-section .section-head.center h2 {
  color: #4a211f;
  font-size: clamp(30px, 3.6vw, 44px);
  text-shadow: 0 14px 32px rgba(72, 49, 34, 0.16);
}

.fleet-section .section-head.center p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(66, 40, 32, 0.82);
}

.fleet-card-picker {
  grid-area: picker;
  align-self: stretch;
  max-width: none;
  margin: 0;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background:
    repeating-linear-gradient(135deg, rgba(128, 0, 32, 0.035) 0 1px, transparent 1px 9px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.16)),
    rgba(245, 234, 215, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 20px 42px rgba(64, 42, 26, 0.12);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.vehicle-card {
  min-height: 88px;
  padding: 8px 10px 8px 104px;
  position: relative;
  display: block !important;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22)),
    rgba(255, 250, 240, 0.52);
  color: #55221f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 12px 28px rgba(64, 42, 26, 0.11);
}

.vehicle-card-media {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 82px;
  height: 72px;
  margin: 0;
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.5);
}

.vehicle-card-kicker {
  display: block;
  color: rgba(128, 0, 32, 0.58);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.vehicle-card strong {
  display: block;
  color: #6b171b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.vehicle-card small {
  display: block;
  color: rgba(72, 40, 33, 0.7);
  font-size: 12px;
  line-height: 1.2;
}

.vehicle-card:hover,
.vehicle-card:focus-visible,
.vehicle-card.is-active {
  border-color: rgba(212, 175, 55, 0.62);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(212, 175, 55, 0.12)),
    rgba(128, 0, 32, 0.1);
  transform: translateY(-1px);
}

.fleet-detail-card {
  grid-area: detail;
  max-width: none;
  min-height: 385px;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.1)),
    rgba(86, 73, 58, 0.34);
  box-shadow:
    0 22px 50px rgba(64, 42, 26, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.fleet-detail-card .fleet-image-panel {
  min-height: 385px;
  padding: 0;
  background:
    radial-gradient(circle at 16% 80%, rgba(255, 250, 240, 0.58), transparent 28%),
    linear-gradient(180deg, rgba(30, 24, 20, 0.12), rgba(255, 250, 240, 0.34)),
    rgba(92, 80, 65, 0.42);
}

.fleet-detail-card .fleet-image-panel::before {
  inset: 16px;
  border-radius: 22px;
  border: 2px solid rgba(212, 175, 55, 0.34);
  background:
    radial-gradient(circle at 10% 50%, rgba(255, 209, 120, 0.36), transparent 18%),
    radial-gradient(circle at 92% 22%, rgba(128, 0, 32, 0.16), transparent 26%);
  opacity: 1;
  transform: none;
}

.fleet-detail-card .fleet-image-panel img {
  width: 100%;
  height: 100%;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(0.9) contrast(1.02);
}

.fleet-detail-card .fleet-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  width: auto;
  max-width: 560px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2)),
    rgba(232, 216, 190, 0.58);
  color: #4a211f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 18px 38px rgba(64, 42, 26, 0.14);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.fleet-detail-card .fleet-tag,
.fleet-detail-card .fleet-copy h3,
.fleet-detail-card .fleet-copy p:not(.fleet-tag),
.fleet-detail-card .fleet-stats span,
.fleet-detail-card .fleet-stats strong,
.fleet-detail-card .fleet-features {
  color: #4a211f;
}

.fleet-detail-card .fleet-copy h3 {
  font-size: clamp(30px, 3.1vw, 44px);
}

.fleet-detail-card .fleet-stats,
.fleet-detail-card .fleet-features,
.fleet-detail-card .primary-btn {
  display: none;
}

.fleet-gallery {
  grid-area: gallery;
  max-width: none;
  margin: 0;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.16)),
    rgba(245, 234, 215, 0.44);
}

#vehicle-gallery.thumb-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

#vehicle-gallery.thumb-grid > .thumb-card {
  min-height: 92px !important;
  aspect-ratio: 16 / 9 !important;
  border-radius: 12px !important;
  background: rgba(255, 250, 240, 0.64) !important;
}

.pricing-section .shell {
  width: min(1060px, calc(100% - 48px));
  max-width: 1060px;
  padding: clamp(16px, 2vw, 24px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.13)),
    var(--warm-panel);
  box-shadow:
    0 26px 64px rgba(64, 42, 26, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.pricing-section .section-head.center {
  max-width: none;
  margin: 0 0 16px;
  min-height: 132px;
  padding: 22px 28px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18)),
    rgba(255, 250, 240, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.pricing-section .section-head.center h2,
.pricing-section .section-head.center p,
.pricing-section .eyebrow,
.pricing-note,
.term-card,
.pricing-table td,
.pricing-table th {
  color: #4a211f;
}

.pricing-toolbar {
  max-width: none;
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.16)),
    rgba(245, 234, 215, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.currency-switcher {
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.currency-switcher button {
  border-radius: 999px;
  color: #4a211f;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.currency-switcher button.is-active {
  color: #fffaf0;
  background: linear-gradient(145deg, var(--primary-burgundy), var(--primary-burgundy-light));
}

.pricing-table {
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.14)),
    rgba(255, 250, 240, 0.42);
}

.pricing-table th {
  height: 64px;
  background:
    linear-gradient(145deg, rgba(128, 0, 32, 0.9), rgba(128, 0, 32, 0.56)),
    rgba(255, 250, 240, 0.2);
  color: #fffaf0;
}

@media (max-width: 980px) {
  .fleet-section .shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "picker"
      "detail"
      "gallery";
  }

  .fleet-card-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .fleet-section .shell,
  .pricing-section .shell {
    width: min(100% - 28px, 1180px);
    padding: 12px;
  }

  .fleet-card-picker {
    grid-template-columns: 1fr;
  }

  .fleet-detail-card,
  .fleet-detail-card .fleet-image-panel {
    min-height: 430px;
  }

  .fleet-detail-card .fleet-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  #vehicle-gallery.thumb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Final responsive clamp for warm glass boards */
@media (max-width: 620px) {
  .fleet-section .shell,
  .pricing-section .shell {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }

  .fleet-section .section-head.center,
  .fleet-card-picker,
  .fleet-detail-card,
  .fleet-gallery,
  .pricing-toolbar,
  .pricing-table,
  .pricing-note,
  .terms-grid {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }

  .fleet-detail-card {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .fleet-detail-card .fleet-image-panel,
  .fleet-detail-card .fleet-image-panel img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .fleet-detail-card .fleet-copy {
    left: 12px;
    right: 12px;
    max-width: none;
  }

  .pricing-table {
    overflow-x: auto;
  }

  .pricing-table table {
    min-width: 720px;
  }

  .fleet-section .section-head.center {
    padding: 16px 14px;
  }

  .fleet-section .section-head.center .eyebrow {
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .fleet-section .section-head.center h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .fleet-section .section-head.center h2::after {
    margin: 12px auto 10px;
  }

  .fleet-section .section-head.center p:not(.eyebrow) {
    max-width: 300px !important;
    font-size: 12px;
    line-height: 1.42;
  }

  .vehicle-card {
    min-height: 82px;
    padding: 10px 12px 10px 100px;
  }

  .vehicle-card-media {
    left: 10px;
    top: 10px;
    width: 76px;
    height: 60px;
  }

  .fleet-detail-card,
  .fleet-detail-card .fleet-image-panel {
    min-height: 360px;
  }

  .fleet-detail-card .fleet-copy h3 {
    font-size: clamp(26px, 7vw, 32px);
  }

  .fleet-detail-card .fleet-copy p:not(.fleet-tag) {
    font-size: 12px;
    line-height: 1.42;
  }
}

/* Final glass depth, fixed fleet controls, pricing and section transitions */
.section-head.center,
.service-card-shell,
.fleet-section .shell,
.fleet-section .section-head.center,
.fleet-card-picker,
.vehicle-card,
.vehicle-picker-quote,
.fleet-detail-card,
.fleet-detail-card .fleet-copy,
.fleet-spec-float article,
.fleet-gallery,
#vehicle-gallery.thumb-grid > .thumb-card,
.pricing-section .shell,
.pricing-section .section-head.center,
.pricing-toolbar,
.currency-switcher,
.pricing-table,
.term-card,
.contact-form-card,
.contact-card {
  box-shadow:
    0 18px 38px rgba(84, 58, 36, 0.16),
    0 2px 0 rgba(255, 255, 255, 0.42) inset,
    0 -10px 24px rgba(84, 58, 36, 0.055) inset,
    0 0 0 1px rgba(255, 255, 255, 0.24) inset;
}

.fleet-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 250, 240, 0.34), transparent 25%),
    linear-gradient(rgba(128, 0, 32, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 0, 32, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, #dccfb9, #cdbb9e 68%, #bdab8f);
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.pricing-section {
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 250, 240, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(128, 0, 32, 0.045), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, #9f8d72, #b8a588 48%, #d0bea2);
  background-size: auto, auto, 38px 38px, 38px 38px, auto;
}

.promise-band {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 250, 240, 0.3), transparent 30%),
    linear-gradient(180deg, #d9c9ad, #efe3ce);
}

.skyline-divider {
  position: relative;
  overflow: hidden;
  height: 118px;
  margin: 0;
  background:
    linear-gradient(180deg, #bdab8f, #9f8d72 58%, #b8a588);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(128, 0, 32, 0.16);
}

.skyline-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 250, 240, 0.22), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 42px);
}

.skyline-divider svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.skyline-divider path {
  fill: none;
  stroke: rgba(128, 0, 32, 0.62);
  stroke-width: 2.4;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: drop-shadow(0 2px 0 rgba(255, 250, 240, 0.52)) drop-shadow(0 0 12px rgba(212, 175, 55, 0.24));
}

.fleet-card-picker {
  height: 558px;
  align-self: start;
  overflow: hidden;
}

.vehicle-card {
  min-height: 88px;
  height: 88px;
  color: #4a211f;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.vehicle-card.is-active {
  border-color: rgba(212, 175, 55, 0.82);
  background:
    linear-gradient(145deg, rgba(128, 0, 32, 0.92), rgba(128, 0, 32, 0.68) 48%, rgba(80, 20, 24, 0.52)),
    rgba(128, 0, 32, 0.74);
}

.vehicle-card.is-active .vehicle-card-kicker,
.vehicle-card.is-active strong,
.vehicle-card.is-active small {
  color: #fff8e8;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.24);
}

.vehicle-picker-quote {
  min-height: 48px;
  margin-top: auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.58);
  background:
    linear-gradient(145deg, var(--primary-burgundy), #5b0616),
    var(--primary-burgundy);
  color: #fff8e8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.vehicle-picker-quote:hover,
.vehicle-picker-quote:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 20px 34px rgba(84, 58, 36, 0.2),
    0 0 22px rgba(128, 0, 32, 0.2),
    0 2px 0 rgba(255, 255, 255, 0.32) inset;
}

.fleet-detail-card .fleet-image-panel {
  padding: 16px;
}

.fleet-detail-card .fleet-image-panel::before {
  inset: 18px;
  border-radius: 24px;
}

.fleet-detail-card .fleet-image-panel img {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow:
    0 22px 42px rgba(64, 42, 26, 0.2),
    0 2px 0 rgba(255, 255, 255, 0.35) inset;
}

.fleet-detail-card .fleet-copy {
  left: 30px;
  right: auto;
  bottom: 24px;
  max-width: 430px;
  padding: 14px 18px 16px;
}

.fleet-detail-card .fleet-tag {
  margin-bottom: 4px;
  font-size: 10px;
  letter-spacing: 0.28em;
}

.fleet-detail-card .fleet-copy h3 {
  margin-bottom: 6px;
  font-size: clamp(27px, 2.55vw, 36px);
}

.fleet-detail-card .fleet-copy p:not(.fleet-tag) {
  font-size: 13px;
  line-height: 1.42;
}

.fleet-spec-float {
  position: absolute;
  z-index: 3;
  top: 28px;
  right: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(112px, 1fr));
  gap: 10px;
  max-width: 270px;
}

.fleet-spec-float article {
  position: relative;
  min-height: 58px;
  padding: 11px 12px 10px 42px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.2)),
    rgba(232, 216, 190, 0.62);
  color: #4a211f;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.fleet-spec-float .fleet-icon {
  left: 14px;
  color: var(--primary-burgundy);
}

.fleet-spec-float strong {
  display: block;
  color: #5f1b1b;
  font-size: 18px;
  line-height: 1;
}

.fleet-spec-float small {
  display: block;
  margin-top: 2px;
  color: rgba(74, 33, 31, 0.68);
  font-size: 10px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fleet-icon-water {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 2h6M10 2v5l-2 2v11a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2V9l-2-2V2'/%3E%3Cpath d='M9 14h6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 2h6M10 2v5l-2 2v11a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2V9l-2-2V2'/%3E%3Cpath d='M9 14h6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pricing-table table {
  border-collapse: separate;
  border-spacing: 0 8px;
  overflow: hidden;
}

.pricing-table thead tr {
  background:
    linear-gradient(145deg, rgba(128, 0, 32, 0.92), rgba(128, 0, 32, 0.62)),
    rgba(128, 0, 32, 0.76);
  box-shadow:
    0 18px 34px rgba(84, 58, 36, 0.16),
    0 2px 0 rgba(255, 255, 255, 0.18) inset;
}

.pricing-table th {
  height: 62px;
  background: transparent;
  color: #fff8e8;
  border-bottom: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.pricing-table th:first-child {
  border-radius: 16px 0 0 16px;
}

.pricing-table th:last-child {
  border-right: 0;
  border-radius: 0 16px 16px 0;
}

.pricing-table tbody tr {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.18)),
    rgba(255, 250, 240, 0.48);
  box-shadow:
    0 10px 24px rgba(84, 58, 36, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.52) inset;
}

.pricing-table td {
  border-bottom: 0;
  border-right: 1px solid rgba(128, 0, 32, 0.08);
}

.pricing-table td:first-child {
  border-radius: 14px 0 0 14px;
}

.pricing-table td:last-child {
  border-radius: 0 14px 14px 0;
  border-right: 0;
}

.currency-switcher {
  gap: 4px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.14)),
    rgba(206, 184, 151, 0.34);
  box-shadow:
    0 14px 30px rgba(84, 58, 36, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.46) inset,
    0 -8px 20px rgba(84, 58, 36, 0.08) inset;
}

.currency-switcher button {
  min-width: 58px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.16)),
    rgba(255, 250, 240, 0.34);
  color: #4a211f;
  box-shadow:
    0 8px 16px rgba(84, 58, 36, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.64) inset;
}

.currency-switcher button.is-active {
  transform: translateY(1px);
  color: #fff8e8;
  border-color: rgba(128, 0, 32, 0.42);
  background:
    linear-gradient(145deg, #5d0b18, var(--primary-burgundy));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 18px rgba(128, 0, 32, 0.12) inset,
    0 -1px 0 rgba(255, 255, 255, 0.16) inset;
}

@media (max-width: 980px) {
  .fleet-card-picker {
    height: auto;
  }
}

@media (max-width: 620px) {
  .fleet-spec-float {
    top: 20px;
    right: 20px;
    grid-template-columns: 1fr;
    max-width: 118px;
    gap: 7px;
  }

  .fleet-spec-float article {
    min-height: 46px;
    padding: 8px 9px 8px 34px;
  }

  .fleet-spec-float strong {
    font-size: 14px;
  }

  .fleet-spec-float small {
    font-size: 8px;
  }

  .fleet-spec-float .fleet-icon {
    left: 10px;
    width: 16px;
    height: 16px;
  }

  .fleet-detail-card .fleet-copy {
    max-width: calc(100% - 24px);
    padding: 12px 14px;
  }
}

/* Skyline strip and fleet selector refinement */
.skyline-divider {
  height: 46px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.18), transparent 58%),
    linear-gradient(180deg, #71111c 0%, #4d0a13 100%);
  border-top: 1px solid rgba(255, 228, 166, 0.3);
  border-bottom: 1px solid rgba(255, 228, 166, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -10px 22px rgba(0, 0, 0, 0.18),
    0 16px 34px rgba(84, 12, 24, 0.14);
}

.skyline-divider::before {
  background:
    linear-gradient(90deg, rgba(77, 10, 19, 0.96), transparent 15%, transparent 85%, rgba(77, 10, 19, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 228, 166, 0.055) 0 1px, transparent 1px 42px);
}

.skyline-divider svg {
  inset: 0 0 -1px;
}

.skyline-divider .skyline-line,
.skyline-divider .skyline-detail {
  fill: none;
  stroke: #d4af37;
  stroke-linejoin: round;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.skyline-divider .skyline-line {
  stroke-width: 1.45;
  filter:
    drop-shadow(0 1px 0 rgba(255, 244, 204, 0.34))
    drop-shadow(0 0 5px rgba(212, 175, 55, 0.36));
}

.skyline-divider .skyline-detail {
  stroke-width: 0.8;
  opacity: 0.74;
}

.skyline-divider text {
  fill: rgba(212, 175, 55, 0.9);
  font-family: Inter, Arial, sans-serif;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-anchor: middle;
}

.fleet-card-picker {
  height: 548px;
  align-content: start;
}

.vehicle-card {
  height: 88px;
  min-height: 88px;
  padding-left: 112px;
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 14px 28px rgba(84, 58, 36, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.62) inset,
    0 -10px 18px rgba(84, 58, 36, 0.06) inset;
}

.vehicle-card-media {
  left: 10px;
  top: 11px;
  width: 88px;
  height: 64px;
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.78), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(212, 175, 55, 0.14) 48%, rgba(128, 0, 32, 0.1)),
    rgba(255, 250, 240, 0.44);
  color: #6b171b;
  box-shadow:
    0 12px 22px rgba(84, 58, 36, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.68) inset,
    0 -9px 18px rgba(84, 58, 36, 0.12) inset;
}

.vehicle-card-media img {
  display: none;
}

.vehicle-card-media::before {
  content: "";
  width: 72px;
  height: 38px;
  background: #6b171b;
  opacity: 1;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.34));
  -webkit-mask: var(--vehicle-outline) center / contain no-repeat;
  mask: var(--vehicle-outline) center / contain no-repeat;
}

.vehicle-card[data-vehicle="eclass"] .vehicle-card-media,
.vehicle-card[data-vehicle="sclass"] .vehicle-card-media {
  --vehicle-outline: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 64' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 43h9c4-9 12-16 24-20h28c13 2 24 9 31 20h13c4 0 7 3 7 7v4h-12'/%3E%3Cpath d='M33 54h48M99 54h12M19 54h8'/%3E%3Cpath d='M43 24 35 42M70 24l13 18M38 42h47'/%3E%3Ccircle cx='31' cy='54' r='8'/%3E%3Ccircle cx='94' cy='54' r='8'/%3E%3Cpath d='M109 45h7M15 46h9'/%3E%3C/svg%3E");
}

.vehicle-card[data-vehicle="vito"] .vehicle-card-media,
.vehicle-card[data-vehicle="vclass"] .vehicle-card-media {
  --vehicle-outline: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 64' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 43h8l8-18c2-4 6-6 11-6h49c9 0 16 6 20 14l5 10h9c3 0 6 3 6 6v5h-13'/%3E%3Cpath d='M31 54h55M103 54h8M16 54h7'/%3E%3Cpath d='M39 22v20M61 22v20M84 22v20M27 42h75'/%3E%3Ccircle cx='27' cy='54' r='8'/%3E%3Ccircle cx='95' cy='54' r='8'/%3E%3Cpath d='M107 45h8M12 46h8'/%3E%3C/svg%3E");
}

.vehicle-card.is-active {
  border-color: rgba(212, 175, 55, 0.9);
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 240, 188, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(128, 0, 32, 0.96), rgba(98, 8, 22, 0.88) 52%, rgba(72, 9, 18, 0.9)),
    #800020;
  box-shadow:
    0 18px 34px rgba(84, 12, 24, 0.24),
    0 0 0 1px rgba(255, 228, 166, 0.2) inset,
    0 2px 0 rgba(255, 255, 255, 0.24) inset,
    0 -12px 24px rgba(0, 0, 0, 0.18) inset;
}

.vehicle-card.is-active .vehicle-card-media {
  color: #fff8e8;
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(145deg, rgba(255, 250, 240, 0.24), rgba(212, 175, 55, 0.12)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 228, 166, 0.5);
}

.vehicle-card.is-active .vehicle-card-media::before {
  background: #fff8e8;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.18))
    drop-shadow(0 0 10px rgba(255, 228, 166, 0.22));
}

.fleet-detail-card .fleet-copy {
  bottom: 18px;
  left: 26px;
  right: auto;
  z-index: 5;
  width: min(266px, calc(100% - 52px));
  max-width: 266px;
  max-height: 58px;
  overflow: hidden;
  padding: 6px 9px 7px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(232, 216, 190, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 8px 18px rgba(64, 42, 26, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.24) inset;
  backdrop-filter: blur(9px) saturate(130%);
  -webkit-backdrop-filter: blur(9px) saturate(130%);
}

.fleet-detail-card .fleet-image-panel::before {
  z-index: 0;
}

.fleet-detail-card .fleet-image-panel::after {
  z-index: 1;
  pointer-events: none;
}

.fleet-detail-card .fleet-image-panel img {
  position: relative;
  z-index: 2;
}

.fleet-detail-card .fleet-tag {
  margin-bottom: 1px;
  font-size: 7px;
  letter-spacing: 0.18em;
}

.fleet-detail-card .fleet-copy h3 {
  margin-bottom: 2px;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1;
}

.fleet-detail-card .fleet-copy p:not(.fleet-tag) {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(74, 33, 31, 0.84);
  font-size: 9px;
  line-height: 1.16;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

@media (max-width: 980px) {
  .fleet-card-picker {
    height: auto;
  }

  .vehicle-card {
    padding-left: 108px;
  }
}

@media (max-width: 620px) {
  .skyline-divider {
    height: 46px;
  }

  .skyline-divider text {
    display: none;
  }

  .vehicle-card {
    height: 82px;
    min-height: 82px;
    padding-left: 104px;
  }

  .vehicle-card-media {
    width: 82px;
    height: 58px;
  }

  .vehicle-card-media::before {
    width: 66px;
    height: 34px;
  }

  .fleet-detail-card .fleet-copy {
    left: 12px;
    right: auto;
    bottom: 12px;
    max-width: min(292px, calc(100% - 24px));
    padding: 8px 10px;
  }

  .fleet-detail-card .fleet-copy h3 {
    font-size: clamp(18px, 5vw, 22px);
  }
}

/* Final correction: use provided divider image, real side-view vehicle assets, readable fleet label */
.skyline-divider {
  height: 46px;
  background: #5a0b16 url("../img/europe-city-divider-tile-web-150.webp") center center / auto 46px repeat-x;
}

.skyline-divider svg,
.skyline-divider::before {
  display: none;
}

.vehicle-card {
  padding-left: 126px;
}

.vehicle-card-media {
  left: 12px;
  top: 13px;
  width: 96px;
  height: 58px;
  overflow: hidden;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.16)),
    rgba(245, 234, 215, 0.52);
}

.vehicle-card-media::before {
  display: none;
}

.vehicle-card-media img {
  display: block !important;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: saturate(1.04) contrast(1.03);
}

.vehicle-card.is-active .vehicle-card-media {
  background:
    radial-gradient(circle at 36% 18%, rgba(255, 255, 255, 0.5), transparent 34%),
    linear-gradient(145deg, rgba(255, 248, 232, 0.36), rgba(212, 175, 55, 0.16)),
    rgba(255, 248, 232, 0.12);
}

.vehicle-card.is-active .vehicle-card-media img {
  mix-blend-mode: normal;
  filter: saturate(1.08) contrast(1.06) drop-shadow(0 5px 9px rgba(0, 0, 0, 0.2));
}

.fleet-detail-card .fleet-copy {
  bottom: 16px;
  left: 24px;
  right: auto;
  z-index: 6;
  width: min(380px, calc(100% - 48px));
  max-width: 380px;
  max-height: none;
  overflow: visible;
  padding: 12px 15px 13px;
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.24)),
    rgba(245, 234, 215, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow:
    0 16px 32px rgba(64, 42, 26, 0.18),
    0 2px 0 rgba(255, 255, 255, 0.72) inset,
    0 -9px 20px rgba(84, 58, 36, 0.08) inset;
  backdrop-filter: blur(18px) saturate(165%);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
}

.fleet-detail-card .fleet-tag {
  margin-bottom: 4px;
  color: #8a001f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.fleet-detail-card .fleet-copy h3 {
  margin-bottom: 5px;
  color: #4a211f;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.02;
  text-shadow: none;
}

.fleet-detail-card .fleet-copy p:not(.fleet-tag) {
  display: block;
  margin: 0;
  overflow: visible;
  color: rgba(48, 31, 27, 0.9);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.34;
  -webkit-line-clamp: unset;
}

@media (max-width: 620px) {
  .vehicle-card {
    padding-left: 116px;
  }

  .vehicle-card-media {
    width: 88px;
    height: 54px;
  }

  .fleet-detail-card .fleet-copy {
    left: 12px;
    bottom: 12px;
    width: min(340px, calc(100% - 24px));
    max-width: min(340px, calc(100% - 24px));
    padding: 10px 12px;
  }

  .fleet-detail-card .fleet-copy h3 {
    font-size: clamp(20px, 5.8vw, 24px);
  }

  .fleet-detail-card .fleet-copy p:not(.fleet-tag) {
    font-size: 11px;
    line-height: 1.3;
  }
}

/* Final readability fix: keep hero service card text crisp in the resting state */
.services .service-glass-card {
  transform: none !important;
  perspective: none;
}

.services .service-card-shell {
  transform: none !important;
  isolation: isolate;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.services .service-card-shell > *,
.services .service-glass-card h3,
.services .service-glass-card p,
.services .service-glass-card a {
  transform: none !important;
  filter: none !important;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  backface-visibility: hidden;
}

.services .service-glass-card h3 {
  color: #fffaf0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
}

.services .service-glass-card p {
  color: rgba(255, 250, 240, 0.9);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.26);
}

.services .service-glass-card a {
  color: #ffd86a;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.28);
}

/* Reference typography and final glass polish */
:root {
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

h1,
h2,
h3,
.hero-title,
.section-head h2,
.fleet-copy h3,
.quote-form h3,
.term-card .card-label {
  font-family: var(--font-display);
}

.fleet-detail-card .fleet-image-panel {
  padding: 18px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(245, 234, 215, 0.08)),
    rgba(92, 69, 48, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 24px 52px rgba(64, 42, 26, 0.22),
    0 2px 0 rgba(255, 255, 255, 0.5) inset,
    0 -18px 38px rgba(73, 45, 32, 0.16) inset;
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}

.fleet-detail-card .fleet-image-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 4;
  display: block;
  border-radius: 22px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(245, 234, 215, 0.2), transparent 13%, transparent 86%, rgba(245, 234, 215, 0.18)),
    linear-gradient(180deg, rgba(245, 234, 215, 0.18), transparent 15%, transparent 82%, rgba(72, 46, 31, 0.22));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.34) inset,
    0 0 30px rgba(245, 234, 215, 0.32) inset,
    0 0 54px rgba(45, 29, 24, 0.28) inset;
}

.fleet-detail-card .fleet-image-panel img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 72%, rgba(0, 0, 0, 0.88) 86%, rgba(0, 0, 0, 0.2) 100%);
  mask-image: radial-gradient(ellipse at center, #000 72%, rgba(0, 0, 0, 0.88) 86%, rgba(0, 0, 0, 0.2) 100%);
}

.fleet-detail-card .fleet-copy {
  left: 24px;
  bottom: 24px;
  width: min(350px, calc(100% - 48px));
  max-width: 350px;
  padding: 9px 13px 10px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.13)),
    rgba(245, 234, 215, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow:
    0 14px 30px rgba(54, 32, 24, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.62) inset,
    0 -10px 20px rgba(84, 58, 36, 0.07) inset;
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
}

.fleet-detail-card .fleet-copy h3 {
  margin-bottom: 3px;
  color: #3b1718;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.02;
}

.fleet-detail-card .fleet-copy p:not(.fleet-tag) {
  color: rgba(45, 27, 24, 0.88);
  font-size: 10px;
  line-height: 1.25;
}

.fleet-detail-card .fleet-tag {
  margin-bottom: 3px;
  color: #7b001b;
  font-size: 8px;
}

.pricing-section .shell {
  max-width: 1180px;
}

.pricing-toolbar {
  max-width: 1040px;
  margin-inline: auto;
}

.currency-switcher {
  gap: 6px;
  padding: 7px;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12)),
    rgba(245, 234, 215, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 18px 34px rgba(64, 42, 26, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
  backdrop-filter: blur(18px) saturate(165%);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
}

.currency-switcher button {
  min-width: 56px;
  min-height: 34px;
  border-radius: 999px;
  color: #5b151b;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18)),
    rgba(245, 234, 215, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow:
    0 7px 13px rgba(64, 42, 26, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.currency-switcher button.is-active {
  color: #fff8e8;
  background:
    linear-gradient(145deg, rgba(91, 21, 27, 0.94), rgba(128, 0, 32, 0.82));
  border-color: rgba(128, 0, 32, 0.72);
  box-shadow:
    0 2px 4px rgba(255, 255, 255, 0.1),
    0 9px 20px rgba(91, 21, 27, 0.24) inset,
    0 -1px 0 rgba(255, 255, 255, 0.18) inset;
  transform: translateY(1px);
}

.pricing-table.premium-table {
  max-width: 1040px;
  margin: 22px auto 0;
  padding: 12px;
  overflow-x: auto;
  border-radius: 26px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.45), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.14)),
    rgba(245, 234, 215, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 28px 62px rgba(64, 42, 26, 0.17),
    0 2px 0 rgba(255, 255, 255, 0.7) inset,
    0 -18px 44px rgba(84, 58, 36, 0.08) inset;
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.pricing-table table {
  min-width: 900px;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.pricing-table th:nth-child(1),
.pricing-table td:nth-child(1) {
  width: 32%;
}

.pricing-table th:nth-child(2),
.pricing-table th:nth-child(3),
.pricing-table td:nth-child(2),
.pricing-table td:nth-child(3),
.pricing-table th:nth-child(4),
.pricing-table th:nth-child(5),
.pricing-table td:nth-child(4),
.pricing-table td:nth-child(5) {
  width: 17%;
}

.pricing-table thead tr {
  background: transparent;
  box-shadow: none;
}

.pricing-table th {
  padding: 17px 16px;
  color: #fff8e8;
  font-size: 12px;
  letter-spacing: 0.04em;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(91, 21, 27, 0.94), rgba(128, 0, 32, 0.86));
  border-right: 1px solid rgba(255, 248, 232, 0.2);
  box-shadow:
    0 12px 24px rgba(91, 21, 27, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.pricing-table th:first-child {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.pricing-table th:last-child {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-right: 0;
}

.pricing-table tbody tr {
  background: transparent;
}

.pricing-table td {
  padding: 12px 16px;
  color: #44211f;
  font-size: 14px;
  font-weight: 760;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.2)),
    rgba(255, 250, 240, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(215, 188, 145, 0.22);
  border-right: 1px solid rgba(128, 82, 58, 0.12);
  box-shadow:
    0 12px 22px rgba(64, 42, 26, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.68) inset;
}

.pricing-table td:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
}

.pricing-table td:last-child {
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.46);
}

.pricing-table tbody tr:hover td {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.26)),
    rgba(255, 248, 232, 0.52);
}

.price-vehicle {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: #3b1718;
  font-weight: 900;
  white-space: nowrap;
}

.price-vehicle img {
  width: 78px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.18)),
    rgba(245, 234, 215, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 8px 14px rgba(64, 42, 26, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  mix-blend-mode: multiply;
}

.pricing-note {
  max-width: 1040px;
  margin: 12px auto 0;
  color: rgba(68, 33, 31, 0.72);
}

.pricing-toolbar .card-label {
  color: rgba(104, 22, 29, 0.76);
}

.terms-grid {
  max-width: 1040px;
  margin: 26px auto 0;
}

.term-card {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  padding: 25px 25px 24px;
  border-radius: 22px;
  color: #44211f;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.55), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.16)),
    rgba(245, 234, 215, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 22px 44px rgba(64, 42, 26, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.68) inset,
    0 -16px 38px rgba(84, 58, 36, 0.08) inset;
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.term-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 21px;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.34), transparent 36%),
    radial-gradient(circle at 90% 18%, rgba(212, 175, 55, 0.12), transparent 28%);
}

.term-card .card-label {
  position: relative;
  margin-bottom: 14px;
  color: #68161d;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}

.term-card ul {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(68, 33, 31, 0.82);
}

.term-card li {
  position: relative;
  padding-left: 18px;
  line-height: 1.38;
}

.term-card li::before {
  content: "";
  position: absolute;
  top: 0.57em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.13);
}

.quote-form,
.parchment-form {
  color: #3e201d;
}

.quote-form h3 {
  color: #5b151b;
}

.quote-form p,
.quote-form #form-message {
  color: rgba(62, 32, 29, 0.78);
}

.quote-form label,
.quote-form label span {
  color: #5b151b;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  color: #2d1917 !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
    rgba(255, 250, 240, 0.82) !important;
  border-color: rgba(128, 82, 58, 0.34) !important;
  box-shadow:
    0 8px 15px rgba(64, 42, 26, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.78) inset !important;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(62, 32, 29, 0.58);
  opacity: 1;
}

.quote-form select option {
  color: #2d1917;
  background: #fff8e8;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  color: #241312 !important;
  border-color: rgba(128, 0, 32, 0.62) !important;
  box-shadow:
    0 0 0 3px rgba(128, 0, 32, 0.13),
    0 10px 20px rgba(64, 42, 26, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.8) inset !important;
}

.contact-section,
.contact-info-panel {
  color: #44211f;
}

.contact-info-panel .eyebrow,
.contact-card span {
  color: rgba(104, 22, 29, 0.74);
  text-shadow: none;
}

.contact-info-panel h2 {
  color: #5b151b;
  text-shadow: none;
}

.contact-info-panel p {
  color: rgba(68, 33, 31, 0.78);
  text-shadow: none;
}

.contact-card {
  color: #44211f;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.14)),
    rgba(245, 234, 215, 0.28);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 16px 30px rgba(64, 42, 26, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.62) inset;
}

.contact-card strong,
.contact-card a {
  color: #5b151b;
  text-shadow: none;
}

.contact-card small {
  color: rgba(68, 33, 31, 0.72);
}

@media (max-width: 900px) {
  .pricing-table.premium-table,
  .pricing-toolbar,
  .terms-grid,
  .pricing-note {
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  .fleet-detail-card .fleet-image-panel {
    padding: 10px;
    border-radius: 22px;
  }

  .fleet-detail-card .fleet-image-panel::after {
    inset: 10px;
    border-radius: 17px;
  }

  .fleet-detail-card .fleet-image-panel img {
    border-radius: 17px;
  }

  .fleet-detail-card .fleet-copy {
    left: 14px;
    bottom: 14px;
    width: min(320px, calc(100% - 28px));
    max-width: min(320px, calc(100% - 28px));
    padding: 8px 10px;
  }

  .fleet-detail-card .fleet-copy h3 {
    font-size: clamp(18px, 5.4vw, 22px);
  }

  .fleet-detail-card .fleet-copy p:not(.fleet-tag) {
    font-size: 9px;
  }

  .price-vehicle img {
    width: 62px;
    height: 36px;
  }
}

/* Targeted visual correction: cleaner fleet photo frame and reference-like pricing condition boxes */
.fleet-detail-card {
  overflow: hidden;
  border-radius: 28px;
}

.fleet-detail-card::before,
.fleet-detail-card::after {
  opacity: 0.42;
}

.fleet-detail-card .fleet-image-panel {
  --fleet-photo-radius: 22px;
  padding: 12px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.07)),
    rgba(184, 164, 132, 0.22);
  border: 1px solid rgba(212, 175, 55, 0.34);
  box-shadow:
    0 18px 38px rgba(64, 42, 26, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.46) inset;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.fleet-detail-card .fleet-image-panel::before {
  display: none !important;
}

.fleet-detail-card .fleet-image-panel::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 5;
  display: block;
  border-radius: var(--fleet-photo-radius);
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 62%, rgba(238, 220, 188, 0.12) 76%, rgba(238, 220, 188, 0.48) 100%),
    linear-gradient(90deg, rgba(238, 220, 188, 0.42), transparent 9%, transparent 91%, rgba(238, 220, 188, 0.42)),
    linear-gradient(180deg, rgba(238, 220, 188, 0.42), transparent 10%, transparent 90%, rgba(238, 220, 188, 0.42));
  box-shadow:
    0 0 0 1px rgba(255, 248, 232, 0.28) inset,
    0 0 30px rgba(238, 220, 188, 0.46) inset;
}

.fleet-detail-card .fleet-image-panel img {
  position: absolute !important;
  inset: 12px !important;
  z-index: 2;
  width: calc(100% - 24px) !important;
  height: calc(100% - 24px) !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  border-radius: var(--fleet-photo-radius);
  object-fit: cover;
  object-position: center;
  box-shadow:
    0 0 0 1px rgba(255, 248, 232, 0.18),
    0 0 34px rgba(238, 220, 188, 0.42);
  filter: saturate(1.03) contrast(1.02);
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, rgba(0, 0, 0, 0.42) 10px, #000 34px, #000 calc(100% - 34px), rgba(0, 0, 0, 0.42) calc(100% - 10px), transparent 100%),
    linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.42) 10px, #000 34px, #000 calc(100% - 34px), rgba(0, 0, 0, 0.42) calc(100% - 10px), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, rgba(0, 0, 0, 0.42) 10px, #000 34px, #000 calc(100% - 34px), rgba(0, 0, 0, 0.42) calc(100% - 10px), transparent 100%),
    linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.42) 10px, #000 34px, #000 calc(100% - 34px), rgba(0, 0, 0, 0.42) calc(100% - 10px), transparent 100%);
  mask-composite: intersect;
}

.fleet-detail-card .fleet-copy {
  left: 24px;
  bottom: 24px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.12)),
    rgba(235, 218, 189, 0.3);
  border: 1px solid rgba(255, 248, 232, 0.46);
  box-shadow:
    0 12px 26px rgba(54, 32, 24, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.54) inset;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.term-card {
  min-height: 192px;
  padding: 28px 28px 26px;
  border-radius: 18px;
  color: #8a001f;
  background:
    radial-gradient(circle at 52% 54%, transparent 0 8px, rgba(212, 175, 55, 0.07) 8.5px 9.4px, transparent 10px 18px) 0 0 / 18px 18px,
    linear-gradient(145deg, rgba(255, 250, 240, 0.58), rgba(232, 207, 166, 0.3)),
    rgba(238, 220, 188, 0.42);
  border: 1px dashed rgba(212, 175, 55, 0.66);
  box-shadow:
    0 18px 30px rgba(154, 107, 55, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.62) inset,
    0 -14px 28px rgba(154, 107, 55, 0.08) inset;
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
}

.term-card::before {
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 76% 58%, transparent 0 4px, rgba(128, 0, 32, 0.035) 4.5px 5.2px, transparent 5.8px 13px) 0 0 / 13px 13px,
    linear-gradient(130deg, rgba(255, 255, 255, 0.26), transparent 34%, rgba(212, 175, 55, 0.08));
}

.term-card .card-label {
  margin-bottom: 18px;
  color: #d39a28;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.45vw, 25px);
  font-weight: 500;
  line-height: 1.1;
}

.term-card ul {
  gap: 12px;
  color: #8a001f;
  font-size: 15px;
  line-height: 1.42;
}

.term-card li {
  padding-left: 22px;
}

.term-card li::before {
  top: 0.66em;
  width: 4px;
  height: 4px;
  background: #d39a28;
  box-shadow: none;
}

@media (max-width: 900px) {
  .terms-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 620px) {
  .fleet-detail-card .fleet-image-panel {
    --fleet-photo-radius: 17px;
    padding: 8px;
    border-radius: 20px;
  }

  .fleet-detail-card .fleet-image-panel::after {
    inset: 8px;
  }

  .fleet-detail-card .fleet-image-panel img {
    inset: 8px !important;
    width: calc(100% - 16px) !important;
    height: calc(100% - 16px) !important;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
    mask-image:
      linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
  }
}

/* Final alignment pass: keep pricing/fleet/services inside the same visual system */
.services .service-glass-card p,
.services .service-glass-card a {
  opacity: 0 !important;
  visibility: hidden;
  max-height: 0 !important;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(10px) !important;
}

.services .service-glass-card:hover p,
.services .service-glass-card:hover a,
.services .service-glass-card:focus-within p,
.services .service-glass-card:focus-within a,
.services .service-glass-card.is-open p,
.services .service-glass-card.is-open a {
  opacity: 1 !important;
  visibility: visible;
  max-height: 130px !important;
  pointer-events: auto;
  transform: translateY(0) !important;
}

.pricing-table.premium-table {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.38), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08)),
    rgba(214, 194, 159, 0.42);
}

.pricing-table td {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08)),
    rgba(214, 194, 159, 0.38);
}

.pricing-table tbody tr:hover td {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.11)),
    rgba(214, 194, 159, 0.48);
}

.pricing-table th:nth-child(n+2),
.pricing-table td:nth-child(n+2) {
  text-align: center;
}

.pricing-table td:nth-child(n+2) {
  vertical-align: middle;
}

.terms-grid {
  gap: 24px;
  max-width: 1040px;
}

.term-card {
  min-height: 198px;
  padding: 25px 25px 24px;
  border-radius: 22px;
  color: #44211f;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 248, 232, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(224, 204, 169, 0.58), rgba(197, 175, 139, 0.42));
  border: 1px solid rgba(255, 248, 232, 0.34);
  box-shadow:
    0 22px 42px rgba(64, 42, 26, 0.13),
    0 2px 0 rgba(255, 255, 255, 0.5) inset,
    0 -16px 34px rgba(84, 58, 36, 0.07) inset;
  backdrop-filter: blur(22px) saturate(165%);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
}

.term-card::before {
  background:
    linear-gradient(115deg, rgba(255, 248, 232, 0.14), transparent 36%),
    radial-gradient(circle at 90% 18%, rgba(128, 0, 32, 0.06), transparent 28%);
}

.term-card .card-label {
  color: #68161d;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.term-card ul {
  color: rgba(68, 33, 31, 0.82);
  font-size: 14px;
}

.term-card li::before {
  width: 7px;
  height: 7px;
  background: #8a001f;
  box-shadow: 0 0 0 4px rgba(128, 0, 32, 0.08);
}

.vehicle-card-media {
  width: 96px;
  height: 58px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.13)),
    rgba(222, 201, 168, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow:
    0 8px 16px rgba(64, 42, 26, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.62) inset;
}

.vehicle-card-media img {
  width: 88% !important;
  height: 76% !important;
  object-fit: contain !important;
  border-radius: 10px;
  mix-blend-mode: normal;
  filter: saturate(1.04) contrast(1.02);
}

.vehicle-card.is-active .vehicle-card-media {
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.46), rgba(255, 255, 255, 0.14)),
    rgba(128, 0, 32, 0.08);
  border-color: rgba(212, 175, 55, 0.54);
}

.fleet-detail-card .fleet-image-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(340px, 40vw, 520px);
  padding: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 248, 232, 0.18), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07)),
    rgba(184, 164, 132, 0.2);
}

.fleet-detail-card .fleet-image-panel img {
  position: relative !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: auto !important;
  object-fit: contain !important;
  border-radius: 22px;
  background: rgba(222, 201, 168, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 248, 232, 0.28),
    0 0 24px rgba(238, 220, 188, 0.34),
    0 14px 32px rgba(64, 42, 26, 0.16);
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, rgba(0, 0, 0, 0.55) 10px, #000 28px, #000 calc(100% - 28px), rgba(0, 0, 0, 0.55) calc(100% - 10px), transparent 100%),
    linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.55) 10px, #000 28px, #000 calc(100% - 28px), rgba(0, 0, 0, 0.55) calc(100% - 10px), transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0, rgba(0, 0, 0, 0.55) 10px, #000 28px, #000 calc(100% - 28px), rgba(0, 0, 0, 0.55) calc(100% - 10px), transparent 100%),
    linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.55) 10px, #000 28px, #000 calc(100% - 28px), rgba(0, 0, 0, 0.55) calc(100% - 10px), transparent 100%);
}

.fleet-detail-card .fleet-image-panel::after {
  inset: 18px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(238, 220, 188, 0.3), transparent 11%, transparent 89%, rgba(238, 220, 188, 0.3)),
    linear-gradient(180deg, rgba(238, 220, 188, 0.26), transparent 11%, transparent 89%, rgba(238, 220, 188, 0.26));
  box-shadow:
    0 0 0 1px rgba(255, 248, 232, 0.22) inset,
    0 0 24px rgba(238, 220, 188, 0.28) inset;
}

@media (max-width: 620px) {
  .fleet-detail-card .fleet-image-panel {
    min-height: 280px;
    padding: 10px;
  }

  .fleet-detail-card .fleet-image-panel::after {
    inset: 10px;
  }
}

/* Pricing table cleanup: remove doubled row frames and mismatched stripes */
.pricing-table table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 18px;
}

.pricing-table tbody tr {
  background: transparent !important;
}

.pricing-table td {
  border-top: 0;
  border-bottom: 1px solid rgba(128, 82, 58, 0.16);
  border-left: 0;
  border-right: 1px solid rgba(128, 82, 58, 0.12);
  border-radius: 0 !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07)),
    rgba(214, 194, 159, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.34) inset;
}

.pricing-table tbody tr:nth-child(even) td {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07)),
    rgba(214, 194, 159, 0.4);
}

.pricing-table tbody tr:hover td {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.09)),
    rgba(214, 194, 159, 0.46);
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table td:last-child {
  border-right: 0;
}

.pricing-table tbody tr:first-child td:first-child {
  border-top-left-radius: 14px !important;
}

.pricing-table tbody tr:first-child td:last-child {
  border-top-right-radius: 14px !important;
}

.pricing-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 14px !important;
}

.pricing-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 14px !important;
}

.pricing-section .term-card {
  background:
    radial-gradient(circle at 16% 6%, rgba(255, 248, 232, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(214, 194, 159, 0.62), rgba(188, 166, 130, 0.46)) !important;
  border: 1px solid rgba(255, 248, 232, 0.34) !important;
  box-shadow:
    0 18px 36px rgba(64, 42, 26, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.34) inset,
    0 -14px 30px rgba(84, 58, 36, 0.08) inset !important;
}

.pricing-section .term-card::before {
  opacity: 0.38;
  background:
    linear-gradient(115deg, rgba(255, 248, 232, 0.16), transparent 36%),
    radial-gradient(circle at 92% 18%, rgba(128, 0, 32, 0.08), transparent 30%) !important;
}
