:root {
  color-scheme: light;
  --ink: #10151f;
  --muted: #5d6877;
  --line: #d9dee7;
  --surface: #ffffff;
  --soft: #f3f6f9;
  --teal: #0d766f;
  --teal-dark: #075750;
  --gold: #c9953b;
  --rose: #a54253;
  --shadow: 0 22px 70px rgba(16, 21, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(217, 222, 231, 0.82);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 5vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 17px;
  font-weight: 800;
  gap: 10px;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

nav {
  align-items: center;
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

nav a:hover {
  color: var(--ink);
}

.header-cta,
.primary-button,
.secondary-button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

.header-cta,
.primary-button {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 28px rgba(13, 118, 111, 0.25);
}

.header-cta:hover,
.primary-button:hover {
  background: var(--teal-dark);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 21, 31, 0.88), rgba(16, 21, 31, 0.48) 48%, rgba(16, 21, 31, 0.12)),
    linear-gradient(0deg, rgba(16, 21, 31, 0.38), rgba(16, 21, 31, 0.04));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: #fff;
  max-width: 760px;
  padding: 170px clamp(20px, 7vw, 96px) 120px;
  position: relative;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(44px, 7vw, 82px);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
}

h3 {
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
  max-width: 620px;
}

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

.trust-band {
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-band div {
  background: rgba(255, 255, 255, 0.04);
  min-height: 118px;
  padding: 28px clamp(20px, 5vw, 58px);
}

.trust-band strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.trust-band span {
  color: rgba(255, 255, 255, 0.68);
  display: block;
  font-size: 14px;
}

.section,
.area-section,
.cta-section {
  padding: 88px clamp(20px, 7vw, 96px);
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  margin-top: 16px;
}

.intro {
  align-items: end;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.intro > p,
.area-section p,
.cta-section p {
  color: var(--muted);
  font-size: 18px;
}

.fleet-section {
  background: var(--soft);
}

.section-link-row {
  display: flex;
  margin-top: 28px;
}

.car-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.car-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(16, 21, 31, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.car-photo {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(13, 118, 111, 0.14), rgba(16, 21, 31, 0.12));
  overflow: hidden;
  position: relative;
}

.car-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.plate-mask {
  background: rgba(16, 21, 31, 0.86);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
  display: block;
  position: absolute;
}

.car-photo-placeholder {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  height: 100%;
  justify-content: center;
  min-height: 220px;
  padding: 24px;
  text-align: center;
}

.availability-badge {
  background: rgba(255, 255, 255, 0.94);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  left: 14px;
  padding: 8px 10px;
  position: absolute;
  top: 14px;
}

.car-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.car-card-title {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.car-card-title h3 {
  margin-bottom: 8px;
}

.car-card-title strong {
  color: var(--teal-dark);
  flex: 0 0 auto;
  font-size: 15px;
  margin-top: 3px;
  text-align: right;
}

.car-meta {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.car-card-body > p {
  color: var(--muted);
  margin-bottom: 18px;
}

.car-spec-list {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.car-spec-list li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 10px 0;
}

.car-spec-list li:last-child {
  border-bottom: 0;
}

.car-spec-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.car-spec-list strong {
  font-size: 13px;
  text-align: right;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.feature-tags span,
.todo-chip {
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 9px;
}

.todo-chip {
  color: var(--muted);
}

.car-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.vehicle-copy-block,
.tag-group {
  margin-bottom: 18px;
}

.vehicle-copy-block strong,
.tag-group > strong {
  color: var(--ink);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.vehicle-copy-block p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.filter-bar button {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  min-height: 40px;
  padding: 0 14px;
}

.filter-bar button:hover,
.filter-bar button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.secondary-light-button {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  min-height: 46px;
  padding: 0 16px;
}

.secondary-light-button:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.empty-fleet {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(16, 21, 31, 0.07);
  grid-column: 1 / -1;
  max-width: 760px;
  padding: 34px;
}

.empty-fleet h3 {
  font-size: 30px;
}

.empty-fleet p {
  color: var(--muted);
}

.fleet-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.vehicle-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(16, 21, 31, 0.07);
  overflow: hidden;
}

.vehicle-image {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.8), transparent 20%),
    linear-gradient(135deg, rgba(13, 118, 111, 0.94), rgba(16, 21, 31, 0.95));
  position: relative;
}

.vehicle-image::before {
  background: rgba(255, 255, 255, 0.9);
  bottom: 26%;
  content: "";
  height: 30%;
  left: 15%;
  position: absolute;
  width: 70%;
}

.vehicle-image::after {
  background: var(--ink);
  border-radius: 999px;
  bottom: 20%;
  box-shadow: 42vw 0 0 var(--ink);
  content: "";
  height: 30px;
  left: 23%;
  max-width: 30px;
  position: absolute;
  width: 30px;
}

.vehicle-image-two {
  background:
    radial-gradient(circle at 78% 20%, rgba(201, 149, 59, 0.55), transparent 24%),
    linear-gradient(135deg, rgba(16, 21, 31, 0.96), rgba(165, 66, 83, 0.86));
}

.vehicle-image-three {
  background:
    radial-gradient(circle at 24% 74%, rgba(13, 118, 111, 0.48), transparent 26%),
    linear-gradient(135deg, rgba(201, 149, 59, 0.95), rgba(16, 21, 31, 0.94));
}

.vehicle-content {
  padding: 28px;
}

.vehicle-content span {
  color: var(--rose);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.vehicle-content p,
.steps p {
  color: var(--muted);
  margin-bottom: 0;
}

.area-section {
  align-items: start;
  background: #fff;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
}

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

.area-list span {
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 800;
  padding: 18px;
}

.process-section {
  background: var(--ink);
  color: #fff;
}

.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.steps article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 30px;
}

.steps span {
  color: var(--gold);
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 24px;
}

.steps p {
  color: rgba(255, 255, 255, 0.68);
}

.trust-section {
  background: #fff;
}

.trust-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.trust-grid article {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 26px;
}

.trust-grid h3 {
  font-size: 20px;
}

.trust-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.page-hero {
  align-items: end;
  background: var(--ink);
  color: #fff;
  display: flex;
  gap: 34px;
  justify-content: space-between;
  padding: 170px clamp(20px, 7vw, 96px) 82px;
}

.page-hero > div {
  max-width: 820px;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  max-width: 680px;
}

.fleet-toolbar {
  background: var(--teal-dark);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fleet-toolbar div {
  background: rgba(255, 255, 255, 0.06);
  min-height: 112px;
  padding: 26px clamp(20px, 5vw, 58px);
}

.fleet-toolbar strong {
  display: block;
  font-size: 18px;
  margin-bottom: 7px;
}

.fleet-toolbar span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 14px;
}

.fleet-page-section {
  background: var(--soft);
}

.modal-open {
  overflow: hidden;
}

[data-car-modal] {
  inset: 0;
  position: fixed;
  z-index: 30;
}

.modal-backdrop {
  background: rgba(16, 21, 31, 0.68);
  inset: 0;
  position: absolute;
}

.car-modal-panel {
  background: #fff;
  bottom: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  left: 50%;
  max-height: calc(100vh - 48px);
  max-width: 1100px;
  overflow: auto;
  position: absolute;
  top: 24px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
}

.modal-close {
  background: var(--ink);
  border: 0;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  min-height: 38px;
  padding: 0 14px;
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1;
}

.detail-gallery {
  background: var(--soft);
  display: grid;
  gap: 10px;
  padding: 18px;
}

.detail-gallery img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  width: 100%;
}

.detail-photo {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.detail-placeholder {
  min-height: 420px;
}

.detail-copy {
  padding: 44px 34px;
}

.detail-copy h2 {
  margin-bottom: 18px;
}

.detail-copy > p {
  color: var(--muted);
  font-size: 17px;
}

.detail-copy h3 {
  font-size: 18px;
  margin-top: 26px;
}

.detail-specs {
  margin-top: 26px;
}

.notes-list {
  color: var(--muted);
  margin: 0 0 24px;
  padding-left: 18px;
}

.cta-section {
  align-items: center;
  background: var(--soft);
  display: flex;
  gap: 34px;
  justify-content: space-between;
}

.cta-section > div {
  max-width: 760px;
}

.site-footer {
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: space-between;
  padding: 24px clamp(20px, 7vw, 96px);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    padding-top: 180px;
  }

  .trust-band,
  .intro,
  .car-grid,
  .fleet-grid,
  .area-section,
  .steps,
  .trust-grid,
  .fleet-toolbar {
    grid-template-columns: 1fr;
  }

  .page-hero {
    align-items: stretch;
    flex-direction: column;
  }

  .car-modal-panel {
    grid-template-columns: 1fr;
  }

  .cta-section {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
  }

  .brand {
    font-size: 15px;
  }

  nav {
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding: 170px 20px 80px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

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

  .section,
  .area-section,
  .cta-section {
    padding: 64px 20px;
  }

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

  .car-card-title,
  .car-actions {
    flex-direction: column;
  }

  .car-card-title strong {
    text-align: left;
  }

  .page-hero {
    padding: 160px 20px 64px;
  }

  .car-modal-panel {
    bottom: 10px;
    max-height: calc(100vh - 20px);
    top: 10px;
    width: calc(100% - 20px);
  }

  .detail-copy {
    padding: 34px 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
