:root {
  --ink: #13202a;
  --muted: #5c6872;
  --paper: #f7fbfb;
  --panel: #ffffff;
  --line: #dce6e8;
  --teal: #008c95;
  --teal-dark: #05656c;
  --amber: #f2a33a;
  --coral: #d85b4a;
  --shadow: 0 18px 50px rgba(19, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 251, 251, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-bar {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
  min-width: 270px;
}

.brand-logo-image {
  width: 78px;
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(19, 32, 42, 0.08);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--teal);
  outline: none;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

.menu-close-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-open-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close-icon {
  display: block;
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  overflow-x: auto;
}

.tab-button,
.site-footer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  white-space: nowrap;
}

.tab-button:hover,
.tab-button:focus-visible,
.site-footer button:hover,
.site-footer button:focus-visible {
  border-color: var(--line);
  outline: none;
}

.tab-button.is-active {
  color: #ffffff;
  background: var(--ink);
}

.new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--coral);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.tab-button.is-active .new-badge {
  color: var(--ink);
  background: var(--amber);
}

.tab-panel {
  min-height: calc(100vh - 76px);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  overflow: hidden;
  background: #e9f3f4;
}

.hero img {
  width: 100%;
  height: min(760px, calc(100vh - 76px));
  min-height: 520px;
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 251, 251, 0.98) 0%, rgba(247, 251, 251, 0.88) 34%, rgba(247, 251, 251, 0.24) 68%),
    linear-gradient(0deg, rgba(19, 32, 42, 0.18), rgba(19, 32, 42, 0));
}

.hero-content {
  position: absolute;
  top: 50%;
  left: clamp(18px, 5vw, 72px);
  width: min(620px, calc(100% - 36px));
  transform: translateY(-50%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow .new-badge {
  margin-right: 8px;
  vertical-align: middle;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 9vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.hero-copy {
  width: min(540px, 100%);
  color: #33424c;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
}

.primary-action {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 12px 30px rgba(0, 140, 149, 0.22);
}

.primary-action:hover,
.primary-action:focus-visible {
  background: var(--teal-dark);
  outline: none;
}

.secondary-action {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.secondary-action:hover,
.secondary-action:focus-visible {
  border-color: var(--teal);
  outline: none;
}

.novelty-action {
  color: var(--coral);
  border-color: rgba(216, 91, 74, 0.42);
}

.novelty-action:hover,
.novelty-action:focus-visible {
  color: var(--ink);
  border-color: var(--coral);
}

.primary-action svg,
.secondary-action svg,
.video-card span svg,
.service-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.intro-section {
  display: grid;
  gap: 34px;
}

.section-heading {
  max-width: 780px;
}

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

.service-card,
.tips-card,
.contact-panel,
.contact-form,
.map-panel,
.video-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(19, 32, 42, 0.06);
}

.service-card {
  min-height: 240px;
  overflow: hidden;
  padding: 0;
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--teal-dark);
  background: #e7f5f5;
  border-radius: 8px;
}

.service-media {
  margin: 0;
  background: #e9f3f4;
}

.service-media img,
.tips-image,
.split-photo img,
.contact-photo img {
  width: 100%;
  object-fit: cover;
}

.service-media img {
  aspect-ratio: 16 / 10;
}

.service-card .service-icon {
  margin: 22px 24px 18px;
}

.service-card h3 {
  margin-right: 24px;
  margin-left: 24px;
}

.service-card p {
  margin: 0 24px 24px;
}

.service-card:nth-child(2) .service-icon,
.tips-card .service-icon {
  color: #9b5a00;
  background: #fff3df;
}

.service-card:nth-child(3) .service-icon {
  color: #8a2f25;
  background: #fdecea;
}

.service-card p,
.video-card p,
.tips-card li,
.page-title p,
.benefit-list p,
.contact-list dd {
  color: var(--muted);
}

.brand-carousel {
  position: relative;
  overflow: hidden;
  padding: 2px 0 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.hero-brand-carousel {
  width: min(430px, 100%);
  margin: 0 0 14px;
  padding: 2px 0 8px;
}

.brand-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: brand-scroll 26s linear infinite;
}

.brand-set {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
}

.brand-logo {
  display: grid;
  min-width: 108px;
  height: 42px;
  overflow: hidden;
  padding: 7px 13px;
  place-items: center;
  border: 1px solid rgba(19, 32, 42, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(19, 32, 42, 0.09);
  backdrop-filter: blur(10px);
}

.brand-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 26px;
  object-fit: contain;
}

.logo-lg img,
.logo-tcl img {
  max-height: 30px;
}

.logo-surrey,
.logo-bgh {
  background: #006a71;
  border-color: rgba(255, 255, 255, 0.26);
}

.logo-bgh {
  background: #df6f24;
}

.logo-surrey img,
.logo-bgh img {
  max-height: 30px;
}

.logo-midea img {
  transform: scale(1.05);
}

.logo-philco img {
  transform: scale(1.02);
}

.logo-york img {
  transform: scale(1.34);
}

.brand-carousel:hover .brand-track,
.brand-carousel:focus-within .brand-track {
  animation-play-state: paused;
}

.fleet-novelty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1080px, calc(100% - 36px));
  margin: clamp(24px, 4vw, 40px) auto 0;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(216, 91, 74, 0.28);
  border-left: 6px solid var(--coral);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 163, 58, 0.12)),
    #ffffff;
  box-shadow: var(--shadow);
}

.fleet-novelty-copy {
  max-width: 720px;
}

.fleet-novelty h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.fleet-novelty p {
  margin: 0;
  color: var(--muted);
}

@keyframes brand-scroll {
  from {
    transform: translateX(0);
  }

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 0.95fr) minmax(240px, 0.82fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list strong {
  color: var(--ink);
}

.split-photo,
.contact-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(19, 32, 42, 0.06);
}

.split-photo img {
  aspect-ratio: 4 / 5;
}

.page-title {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0 32px;
}

.page-title h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 0.95;
}

.page-title p {
  max-width: 720px;
  font-size: 1.08rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: clamp(56px, 8vw, 96px);
}

.video-card {
  overflow: hidden;
}

.video-card a {
  position: relative;
  display: block;
  color: #ffffff;
  text-decoration: none;
  background: var(--ink);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 180ms ease, opacity 180ms ease;
}

.video-card a:hover img,
.video-card a:focus-visible img {
  opacity: 0.72;
  transform: scale(1.03);
}

.video-card a:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: -3px;
}

.video-card span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(19, 32, 42, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.video-card h2,
.tips-card h2 {
  margin: 18px 18px 8px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.video-card p {
  margin: 0 18px 22px;
}

.tips-card {
  overflow: hidden;
  padding: 0;
}

.tips-image {
  aspect-ratio: 16 / 9;
}

.tips-card h2 {
  margin: 18px 24px 8px;
}

.tips-card ul {
  display: grid;
  gap: 10px;
  margin: 0 24px 24px;
  padding-left: 20px;
}

.tips-card .service-icon {
  margin: 24px 24px 0;
}

.contact-title {
  padding-bottom: 24px;
}

.fleet-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0 40px;
}

.fleet-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.94;
}

.fleet-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.fleet-visual {
  display: grid;
  min-height: 320px;
  margin: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.fleet-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.fleet-promos {
  display: grid;
  gap: 30px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.promo-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(19, 32, 42, 0.06);
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 22px;
  padding: 0 10px;
  border-radius: 6px;
  color: #ffffff;
  background: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-card:nth-child(2) .promo-tag {
  background: var(--amber);
}

.promo-card:nth-child(3) .promo-tag {
  background: var(--coral);
}

.promo-card p {
  color: var(--muted);
}

.promo-card strong {
  margin-top: auto;
  color: var(--ink);
}

.fleet-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 80px);
  border-top: 1px solid var(--line);
}

.fleet-detail-copy {
  display: grid;
  gap: 18px;
}

.fleet-detail-photo {
  margin: 10px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(19, 32, 42, 0.06);
}

.fleet-detail-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fleet-checks {
  display: grid;
  gap: 12px;
}

.fleet-checks p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 16px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.fleet-checks svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--teal-dark);
  stroke-width: 2.2;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: clamp(56px, 8vw, 96px);
}

.contact-photo {
  grid-column: 1 / -1;
}

.contact-photo img {
  aspect-ratio: 21 / 7;
  object-position: center 46%;
}

.contact-panel,
.contact-form {
  padding: clamp(22px, 4vw, 32px);
}

.contact-panel h2 {
  font-size: 1.7rem;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-list div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 800;
}

.contact-list dd {
  margin: 0;
}

.contact-list a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  outline: none;
}

.placeholder {
  color: var(--coral);
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.facebook-promo {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(0, 140, 149, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 140, 149, 0.1), rgba(242, 163, 58, 0.1));
}

.facebook-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: #1877f2;
}

.facebook-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.3;
}

.facebook-promo h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.facebook-promo p {
  margin: 0 0 14px;
  color: var(--muted);
}

.facebook-promo .secondary-action {
  min-height: 42px;
  padding: 0 14px;
}

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

.map-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  padding: clamp(18px, 3vw, 24px);
}

.map-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.map-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.map-copy p {
  color: var(--muted);
}

.map-panel iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 8px;
}

.contact-logo-end {
  display: grid;
  grid-column: 1 / -1;
  margin: 14px 0 0;
  padding: clamp(20px, 4vw, 32px);
  place-items: center;
  border-top: 1px solid var(--line);
}

.contact-logo-end img {
  width: min(260px, 70vw);
  height: auto;
}

.recommended-banner {
  display: grid;
  grid-column: 1 / -1;
  gap: 10px;
  margin: 0;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(0, 140, 149, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 140, 149, 0.12), rgba(19, 32, 42, 0.04)),
    #ffffff;
}

.recommended-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.recommended-banner a {
  display: grid;
  gap: 4px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #13202a 0%, #05656c 58%, #008c95 100%);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(19, 32, 42, 0.2);
}

.recommended-banner a:hover,
.recommended-banner a:focus-visible {
  outline: 3px solid rgba(0, 140, 149, 0.2);
  outline-offset: 3px;
}

.recommended-name {
  font-size: clamp(1.7rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 0.95;
}

.recommended-domain {
  color: #bdeff2;
  font-weight: 900;
}

.recommended-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
}

.contact-form input,
.contact-form select {
  min-height: 46px;
  padding: 0 12px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  padding: 12px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(0, 140, 149, 0.14);
}

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

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: #e9f3f4;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.footer-brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 158px;
  min-height: 94px;
  margin: 0;
  padding: 10px 12px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  text-decoration: none;
}

.footer-brand-mark img {
  width: 100%;
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.footer-copy {
  display: grid;
  flex: 1 1 auto;
  gap: 12px;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.payment-logo {
  display: grid;
  width: 58px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: #ffffff;
}

.payment-logo img {
  display: block;
  width: auto;
  max-width: 42px;
  height: auto;
  max-height: 22px;
}

.payment-mercadopago img {
  max-height: 24px;
}

.payment-mastercard img {
  max-height: 20px;
}

.site-footer button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}

@media (max-width: 920px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .header-bar {
    justify-content: space-between;
    width: 100%;
    gap: 14px;
  }

  .brand-logo-image {
    width: 70px;
    height: 58px;
  }

  .tabs {
    justify-content: flex-start;
  }

  .hero {
    min-height: 680px;
  }

  .hero img {
    height: 680px;
    object-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 251, 251, 0.98) 0%, rgba(247, 251, 251, 0.88) 48%, rgba(247, 251, 251, 0.34) 100%),
      linear-gradient(0deg, rgba(19, 32, 42, 0.18), rgba(19, 32, 42, 0));
  }

  .hero-content {
    top: 38px;
    transform: none;
  }

  .service-grid,
  .video-grid,
  .split-section,
  .fleet-hero,
  .promo-grid,
  .fleet-detail,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .split-photo {
    grid-column: 1 / -1;
  }

  .split-photo img {
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: auto;
    padding: 12px 14px;
  }

  .tab-button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero img {
    height: 680px;
    object-position: 78% center;
  }

  .hero-content {
    left: 18px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-brand-mark {
    align-self: center;
    width: min(180px, 100%);
  }

  .footer-copy {
    justify-items: center;
    text-align: center;
  }

  .payment-logos {
    justify-content: center;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .contact-actions {
    flex-direction: column;
  }

  .fleet-novelty {
    align-items: stretch;
    flex-direction: column;
  }

  .service-grid,
  .video-grid,
  .split-section,
  .fleet-hero,
  .promo-grid,
  .fleet-detail,
  .contact-layout,
  .contact-form,
  .map-panel {
    grid-template-columns: 1fr;
  }

  .fleet-hero {
    padding-top: 48px;
  }

  .fleet-visual {
    min-height: 230px;
  }

  .fleet-visual img {
    min-height: 230px;
  }

  .promo-card {
    min-height: auto;
  }

  .service-card {
    min-height: auto;
  }

  .service-media img,
  .tips-image,
  .split-photo img,
  .contact-photo img {
    aspect-ratio: 16 / 10;
  }

  .brand-carousel {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  }

  .hero-brand-carousel {
    margin-bottom: 12px;
  }

  .brand-logo {
    min-width: 96px;
    height: 38px;
    padding: 6px 11px;
  }

  .brand-logo img {
    max-height: 24px;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 0;
  }

  .site-header.menu-ready .menu-toggle {
    display: grid;
  }

  .tabs {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
    padding-top: 12px;
  }

  .site-header.menu-ready .tabs {
    max-height: 0;
    padding-top: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.24s ease,
      opacity 0.18s ease,
      padding-top 0.18s ease;
  }

  .site-header.menu-ready.is-menu-open .tabs {
    max-height: 330px;
    padding-top: 12px;
    overflow: hidden;
    opacity: 1;
    pointer-events: auto;
  }

  .tab-button {
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border-color: var(--line);
    background: #ffffff;
    font-size: 1rem;
  }

  .tab-button.is-active {
    color: #ffffff;
    background: var(--ink);
  }

  .tab-button .new-badge {
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-carousel {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .brand-track {
    animation: none;
    transform: none;
  }

  .brand-set[aria-hidden="true"] {
    display: none;
  }
}
