:root {
  color-scheme: light;
  --ink: #111715;
  --muted: #5d6761;
  --paper: #ffffff;
  --soft: #f5f5f3;
  --line: #d8d8d2;
  --accent: #c8b27b;
  --accent-strong: #f1dfaa;
  --night: #080a0b;
  --shadow: 0 24px 70px rgba(17, 23, 21, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body,
button,
input,
select,
textarea {
  font: 16px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(8, 10, 11, 0.96);
  color: #fff;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-logo {
  width: 54px;
  height: 36px;
  object-fit: cover;
  object-position: center 45%;
  border: 1px solid rgba(217, 221, 224, 0.35);
  background: #080a0b;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links a:hover,
.header-call:hover {
  color: #fff;
}

.language-toggle {
  justify-self: end;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(217, 221, 224, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.language-toggle:hover {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.header-call {
  justify-self: end;
  padding: 11px 16px;
  background: linear-gradient(135deg, #f7edc5, #b99a55 48%, #fff6d4);
  color: #090b0c;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(200, 178, 123, 0.16);
}

.hero {
  position: relative;
  min-height: calc(100vh - 66px);
  display: grid;
  align-items: start;
  background: var(--night);
  color: #fff;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 780px;
  padding: clamp(34px, 4vw, 54px) clamp(22px, 6vw, 72px);
}

.hero h1,
.section-heading h2,
.quote-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(2.55rem, 4.4vw, 4rem);
  line-height: 1;
}

.hero-logo {
  width: min(230px, 54vw);
  height: auto;
  margin-bottom: 24px;
  border: 0;
  box-shadow: none;
  opacity: 0.96;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.45));
}

.hero p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, #f7edc5, #b99a55 48%, #fff6d4);
  color: #090b0c;
  box-shadow: 0 12px 32px rgba(200, 178, 123, 0.18);
}

.button.primary:hover {
  filter: brightness(1.06);
}

.button.secondary {
  border-color: rgba(217, 221, 224, 0.7);
  color: #fff;
  background: rgba(8, 10, 11, 0.22);
}

.button.secondary:hover {
  background: rgba(217, 221, 224, 0.12);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.94), rgba(8, 10, 11, 0.68) 40%, rgba(8, 10, 11, 0.12) 78%),
    linear-gradient(0deg, rgba(8, 10, 11, 0.24), rgba(8, 10, 11, 0.24));
  pointer-events: none;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.intro-strip div {
  min-height: 120px;
  padding: 28px clamp(18px, 4vw, 52px);
  border-right: 1px solid var(--line);
}

.intro-strip div:last-child {
  border-right: 0;
}

.intro-strip strong {
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
}

.intro-strip span,
.section-heading p,
.fleet-card p,
.service-grid p,
.quote-copy p,
.service-area p,
.faq-grid p,
.site-footer p,
.site-footer span {
  color: var(--muted);
}

.service-area {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 6vw, 84px);
  background: #111312;
  color: #fff;
}

.service-area h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.service-area p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.06rem;
}

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

.area-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(241, 223, 170, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.quote-copy h2 {
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: 1;
}

.section-heading p,
.quote-copy p {
  margin: 16px 0 0;
  font-size: 1.06rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.fleet-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.fleet-card.featured {
  border-color: rgba(200, 178, 123, 0.78);
  box-shadow: var(--shadow);
}

.fleet-image {
  min-height: 280px;
  background-image: url("assets/fleet-hero.png");
  background-size: cover;
}

.fleet-image.coach {
  background-position: 18% 52%;
}

.fleet-image.sprinter {
  background-position: 82% 55%;
}

.fleet-body {
  padding: 28px;
}

.fleet-body h3,
.service-grid h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.1;
}

.fleet-body p {
  margin: 12px 0 18px;
}

.fleet-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fleet-body li {
  position: relative;
  padding-left: 24px;
  color: #27312d;
}

.fleet-body li::before {
  position: absolute;
  left: 0;
  color: #98783f;
  content: "✓";
  font-weight: 900;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1160px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article {
  min-height: 260px;
  padding: 26px;
  background: #fff;
}

.service-grid span {
  display: block;
  margin-bottom: 52px;
  color: #98783f;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-grid p {
  margin: 14px 0 0;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
  padding: clamp(64px, 9vw, 116px) clamp(18px, 6vw, 84px);
}

.quote-copy {
  position: sticky;
  top: 108px;
}

.contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-stack a {
  width: fit-content;
  border-bottom: 1px solid rgba(152, 120, 63, 0.45);
  color: #665025;
  font-weight: 800;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #303a36;
  font-size: 0.82rem;
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cfd6cf;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font-size: 0.95rem;
}

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

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

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(200, 178, 123, 0.28);
  border-color: #98783f;
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #665025;
  font-weight: 850;
}

.trust-section {
  background: var(--night);
  color: #fff;
}

.trust-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}

.trust-grid figure {
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.trust-grid blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  line-height: 1.28;
}

.trust-grid figcaption {
  margin-top: 18px;
  color: var(--accent-strong);
  font-weight: 850;
}

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

.faq-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(17, 23, 21, 0.06);
}

.faq-grid summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #151817;
  font-weight: 900;
}

.faq-grid p {
  margin: 0;
  padding: 0 20px 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding: 44px clamp(18px, 5vw, 70px);
  background: #060a09;
  color: #fff;
}

.site-footer > div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer strong {
  color: var(--accent-strong);
}

.footer-brand {
  margin-bottom: 6px;
}

.footer-logo {
  width: 84px;
  height: 54px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(241, 223, 170, 0.35);
  border-radius: 6px;
  background: #0f1211;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 560px;
  }

  .hero-media {
    order: -1;
  }

  .hero-media::before {
    background:
      linear-gradient(90deg, rgba(8, 10, 11, 0.88), rgba(8, 10, 11, 0.52) 70%),
      linear-gradient(0deg, rgba(8, 10, 11, 0.26), rgba(8, 10, 11, 0.26));
  }

  .intro-strip,
  .service-area,
  .fleet-grid,
  .service-grid,
  .quote-section,
  .trust-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .quote-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 14px;
    padding: 12px 16px;
  }

  .brand {
    max-width: 180px;
  }

  .brand-logo {
    width: 36px;
    height: 32px;
  }

  .hero-logo {
    width: 160px;
    margin-bottom: 20px;
  }

  .header-call {
    padding: 10px 12px;
    font-size: 0.75rem;
  }

  .language-toggle {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .hero-copy {
    min-height: 520px;
    padding: 42px 18px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .service-grid article {
    min-height: 210px;
  }

  .service-grid span {
    margin-bottom: 30px;
  }
}
