@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&display=swap");
:root {
  --ink: #04100c;
  --forest: #071611;
  --sage: #a9bcaf;
  --platinum: #eff0ea;
  --soft: #93a198;
  --paper: #d8d8d0;
  --line: #c9d2cc38;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--platinum);
  font-family: Manrope, Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 10px;
  color: var(--sage);
  font-weight: 600;
}
.header {
  height: 86px;
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: #04100cd9;
  color: var(--platinum);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 17px;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 34px;
  color: var(--platinum);
  font-size: 13px;
}
.nav a:hover {
  color: var(--sage);
}
.hero {
  min-height: 880px;
  position: relative;
  overflow: hidden;
  background: #06110d url("../assets/xba-option3-suv-hero.png") 66% center/cover
    no-repeat;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #03100cf2 0%,
      #03100cda 36%,
      #03100c66 61%,
      transparent 76%
    ),
    linear-gradient(0deg, #03100ce8 0%, transparent 45%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 150px 0 70px 4vw;
  max-width: 760px;
}
.hero h1 {
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 18px 0 22px;
  font-weight: 600;
}
.hero p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--soft);
  max-width: 610px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-actions a {
  padding: 18px 26px;
  background: var(--platinum);
  color: #07100d;
  font-size: 13px;
  font-weight: 600;
}
.hero-actions a:last-child {
  background: transparent;
  color: var(--platinum);
  border: 1px solid #c7d1ca66;
}
.search-terms {
  position: absolute;
  z-index: 2;
  left: 4vw;
  right: 4vw;
  bottom: 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.search-terms span {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  color: var(--sage);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.search-terms span:last-child {
  border: 0;
}
.intro {
  padding: 115px 5vw;
  background: #06110d;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: start;
}
.intro h2 {
  font-size: clamp(44px, 5.6vw, 82px);
  letter-spacing: -0.06em;
  line-height: 0.96;
  margin: 16px 0 0;
}
.intro-copy {
  color: var(--soft);
  font-size: 16px;
  line-height: 1.85;
}
.intro-copy p {
  margin-top: 0;
}
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #ffffff18;
}
.highlight {
  background: #0b1b15;
  padding: 28px;
}
.highlight b {
  display: block;
  color: var(--platinum);
  font-size: 15px;
  margin-bottom: 13px;
}
.highlight span {
  color: var(--soft);
  font-size: 13px;
  line-height: 1.7;
}
.fleet {
  padding: 110px 5vw;
  background: var(--paper);
  color: #07100d;
}
.fleet-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 46px;
}
.fleet h2 {
  font-size: clamp(44px, 5.8vw, 82px);
  letter-spacing: -0.06em;
  margin: 12px 0 0;
}
.fleet-head p {
  max-width: 470px;
  color: #46534c;
  line-height: 1.75;
}
.cars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #07100d2b;
}
.car {
  background: #d8d8d0;
  padding: 18px;
}
.car img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.car small {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #59675f;
}
.car h3 {
  font-size: 20px;
  letter-spacing: -0.04em;
  margin: 16px 0 8px;
}
.car p {
  font-size: 12px;
  color: #506058;
  line-height: 1.6;
  margin: 0;
}
.enquiry {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #071611;
}
.enquiry-copy {
  padding: 90px 5vw;
}
.enquiry-copy h2 {
  font-size: clamp(44px, 5.5vw, 76px);
  letter-spacing: -0.06em;
  line-height: 0.96;
  margin: 16px 0;
}
.enquiry-copy p {
  color: var(--soft);
  line-height: 1.8;
  max-width: 520px;
}
.form {
  padding: 90px 5vw;
  background: #0d1e17;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 9px;
  color: var(--sage);
}
.field input,
.field select {
  width: 100%;
  height: 56px;
  background: transparent;
  border: 1px solid #c7d1ca66;
  color: var(--platinum);
  padding: 0 13px;
  color-scheme: dark;
}
.field option {
  background: #071611;
}
.field.full {
  grid-column: 1/-1;
}
.submit {
  grid-column: 1/-1;
  height: 62px;
  border: 0;
  background: var(--sage);
  color: #07100d;
  font-weight: 600;
  cursor: pointer;
}
.note {
  margin-top: 18px;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.7;
}
.seo {
  padding: 95px 5vw;
  background: #040b08;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.seo h2 {
  font-size: 28px;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}
.seo p {
  color: var(--soft);
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}
footer {
  padding: 60px 5vw 30px;
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 35px;
  background: #020604;
  color: var(--platinum);
}
.footer-brand {
  display: flex;
  align-items: flex-start;
}
.footer-brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
  color: #8f9c94;
  font-size: 12px;
}
.footer-col b {
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
  margin-bottom: 9px;
}
footer > small {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-top: 22px;
  color: #526058;
}
.footer-disabled-link {
  color: #6c7971;
  cursor: not-allowed;
  opacity: 0.78;
}
.wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 12;
  padding: 13px 17px;
  background: var(--platinum);
  color: #07100d;
  font-size: 11px;
  box-shadow: 0 8px 30px #0008;
}
@media (max-width: 950px) {
  .nav {
    display: none;
  }
  .hero {
    min-height: 940px;
  }
  .search-terms {
    grid-template-columns: 1fr 1fr;
  }
  .search-terms span:nth-child(2) {
    border-right: 0;
  }
  .intro,
  .enquiry {
    grid-template-columns: 1fr;
  }
  .cars {
    grid-template-columns: 1fr 1fr;
  }
  .seo {
    grid-template-columns: 1fr;
  }
  .footer {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .header {
    height: 74px;
    padding: 0 20px;
  }
  .brand {
    font-size: 14px;
  }
  .hero {
    min-height: 1050px;
    background-position: 64% center;
  }
  .hero:after {
    background: linear-gradient(
      180deg,
      #03100cf2 0%,
      #03100c8a 45%,
      #03100cf4 72%
    );
  }
  .hero-inner {
    padding: 116px 20px 40px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero p {
    font-size: 15px;
  }
  .hero-actions a {
    width: 100%;
    text-align: center;
  }
  .search-terms {
    left: 20px;
    right: 20px;
    grid-template-columns: 1fr;
  }
  .search-terms span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .search-terms span:last-child {
    border-bottom: 0;
  }
  .intro,
  .fleet,
  .enquiry-copy,
  .form,
  .seo {
    padding-left: 22px;
    padding-right: 22px;
  }
  .highlights,
  .cars,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .fleet-head {
    display: block;
  }
  .car img {
    height: 230px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 56px 22px 88px;
  }
  .wa {
    font-size: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
  .wa:after {
    content: "WA";
    font-size: 12px;
    font-weight: 600;
  }
}
