@charset "UTF-8";

:root {
  --navy: #0d2140;
  --navy-soft: #163056;
  --blue: #2b7de1;
  --blue-soft: #eaf2fb;
  --paper: #f5f7fa;
  --white: #ffffff;
  --ink: #142033;
  --muted: #5a6b7c;
  --line: #d8e0ea;
  --red: #c0392b;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
  border-radius: 3px;
}
img { max-width: 100%; display: block; }
p { line-height: 1.65; }
h1, h2, h3, p { margin: 0; }
em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.8px;
}
h3 { letter-spacing: -1px; }

.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 20;
  padding: 14px;
  background: var(--white);
}
.skip:focus { top: 12px; }

.header {
  height: 92px;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 5.5%;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.7px;
}
.brand small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2px;
  font-weight: 400;
  margin-top: 4px;
  color: var(--muted);
}
.logo-window {
  width: 73px;
  height: 41px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: var(--white);
}
.logo-window img {
  position: absolute;
  width: 120px;
  max-width: none;
  height: 80px;
  left: -24px;
  top: -20px;
}
.header nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
}
.header nav a:not(.nav-contact):hover,
.footer nav a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.nav-contact {
  border: 1px solid #b7c4d4;
  padding: 12px 18px;
  border-radius: 5px;
}
.nav-contact span { margin-left: 12px; }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  padding: 34px 34px 34px 5.5%;
  gap: 40px;
  max-width: 1700px;
  margin: auto;
}
.hero-copy {
  padding: 48px 0 22px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 1.4px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--navy);
}
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 9px;
  vertical-align: 1px;
}
h1 {
  font-size: clamp(44px, 5vw, 74px);
  line-height: 1.04;
  letter-spacing: -3.2px;
  margin: 28px 0 22px;
  font-weight: 500;
  color: var(--navy);
}
h1 em { color: var(--blue); }
.hero-intro {
  max-width: 420px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 17px 22px;
  font-size: 14px;
  border-radius: 5px;
  transition: background 0.2s, transform 0.2s;
  min-height: 48px;
}
.button:hover { transform: translateY(-2px); }
.button-dark {
  background: var(--navy);
  color: var(--white);
  margin-top: 26px;
}
.button-dark:hover { background: var(--navy-soft); }
.hero-note {
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note > span {
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 540px;
  background: var(--navy);
}
.hero-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  position: absolute;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(13, 33, 64, 0.72));
}
.photo-caption {
  position: absolute;
  z-index: 1;
  bottom: 34px;
  left: 32px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 1.3px;
}
.photo-caption strong {
  display: block;
  letter-spacing: -0.3px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 12px;
}
.photo-index {
  position: absolute;
  right: 28px;
  top: 24px;
  z-index: 1;
  font-size: 11px;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 1px 5px #0d2140;
}

.principle-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 26px 5.5%;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.principle-strip p {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: var(--navy);
}
.principle-strip strong { font-weight: 400; color: var(--blue); }
.principle-strip > span { font-size: 13px; color: var(--muted); }
.principle-strip > a {
  width: 40px;
  height: 40px;
  border: 1px solid #b7c4d4;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
}

.section {
  padding: 92px 5.5%;
  max-width: 1700px;
  margin: auto;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 2.13fr;
  gap: 40px;
  margin-bottom: 44px;
}
.section-heading > .eyebrow {
  padding-top: 9px;
  color: var(--blue);
}
.section-heading h2 span { color: #6b7c90; }
.section-heading p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  margin-top: 18px;
}

.product-family {
  border: 1px solid #c9d8ea;
  border-radius: 8px;
  background: var(--blue-soft);
  padding: 30px 36px 36px;
}
.family-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #c5d4e6;
  gap: 15px;
}
.category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--navy);
}
.family-heading p { color: var(--muted); font-size: 13px; }
.family-grid { display: grid; grid-template-columns: 1fr 1fr; }
.car-product,
.fleet-product {
  padding-top: 30px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
}
.car-product { padding-right: 32px; }
.fleet-product {
  border-left: 1px solid #c5d4e6;
  padding-left: 32px;
}
.car-icon,
.fleet-icon {
  height: 96px;
  width: 96px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  position: relative;
}
.car-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet-icon img {
  position: absolute;
  width: 175px;
  height: 175px;
  max-width: none;
  top: -2px;
  left: -39px;
  object-fit: contain;
}
.product-audience {
  font-size: 9px;
  letter-spacing: 1.1px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 3px;
  margin-bottom: 10px;
}
.family-grid h3 { font-size: 28px; font-weight: 600; color: var(--navy); }
.family-grid h3 > span { color: var(--blue); }
.product-tagline {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-top: 16px;
  color: var(--navy);
}
.product-description {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 16px;
  max-width: 440px;
}
.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #c5d4e6;
  margin-top: 24px;
  padding-top: 18px;
  font-size: 13px;
  font-weight: 700;
  min-height: 48px;
  color: var(--navy);
}
.text-link:hover span { transform: translate(3px, -3px); }
.text-link span { font-size: 20px; transition: transform 0.2s; }

.lubrio {
  margin-top: 24px;
  padding: 32px 36px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  max-width: none;
}
.lubrio h3 {
  font-size: 40px;
  color: var(--navy);
}
.lubrio .product-tagline { font-size: 26px; max-width: 520px; }
.lubrio .product-description { max-width: 560px; }
.lubrio .text-link { max-width: 420px; }

.services { padding-top: 20px; }
.bmw-service {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.bmw-copy { padding: 36px 36px 32px; }
.service-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.service-brand p {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.2px;
}
.bmw-copy h3 {
  font-size: 36px;
  color: var(--navy);
  font-weight: 600;
}
.bmw-copy .button { margin-top: 22px; }
.independent-note {
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 16px;
  max-width: 360px;
}
.bmw-photo {
  min-height: 280px;
  background: #0a0f18;
}
.bmw-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 10%;
  padding-top: 88px;
  padding-bottom: 88px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: none;
}
.about-main > .eyebrow { color: var(--blue); margin-bottom: 26px; }
.about h2 { font-weight: 500; color: var(--navy); }
.about h2 em { color: var(--blue); }
.about-lead {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 26px;
  margin-bottom: 14px;
}
.about-main > p:not(.eyebrow):not(.about-lead):not(.location) {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.location {
  font-size: 12px;
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 20px;
  color: var(--muted);
}
.location-flag,
.chile-flag {
  font-size: 12px;
  line-height: 1;
  margin-right: 6px;
  vertical-align: -1px;
}
.eyebrow .chile-flag {
  font-size: 11px;
}
.values { display: flex; flex-direction: column; justify-content: center; }
.values > div {
  border-top: 1px solid var(--line);
  padding: 24px 0 26px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
}
.values > div:last-child { border-bottom: 1px solid var(--line); }
.values > div > span {
  font-size: 11px;
  color: var(--blue);
  padding-top: 8px;
}
.values h3 { font-size: 28px; font-weight: 500; color: var(--navy); }
.values p { grid-column: 2; font-size: 14px; color: var(--muted); }

.contact { padding-top: 88px; padding-bottom: 90px; }
.contact > .eyebrow { color: var(--blue); margin-bottom: 32px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10%;
}
.contact h2 { font-weight: 500; color: var(--navy); }
.contact h2 em { color: var(--blue); }
.contact-grid > div > p {
  font-size: 15px;
  color: var(--muted);
  max-width: 370px;
  margin-top: 22px;
}
.contact-links {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-links > a {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 22px 40px 22px 0;
  min-height: 72px;
}
.contact-links > a:first-child { border-top: 1px solid var(--line); }
.contact-links > a > span {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}
.contact-links strong {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--navy);
}
.contact-links b {
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--blue);
}
.contact-links > a:hover strong {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.contact-grid .contact-links > p { font-size: 12px; margin-top: 18px; }

.footer {
  background: var(--white);
  padding: 40px 5.5% 24px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 32px;
}
.footer .brand { font-size: 20px; align-items: flex-start; }
.footer .brand small { font-size: 11px; max-width: 180px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.footer nav { display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.footer nav p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
}
.footer-legal p { font-size: 11px; line-height: 1.8; }

@media (min-width: 1700px) {
  .header, .footer, .principle-strip, .about {
    padding-left: max(5.5%, calc((100vw - 1513px) / 2));
    padding-right: max(5.5%, calc((100vw - 1513px) / 2));
  }
}

@media (max-width: 1100px) {
  .hero { gap: 24px; min-height: 580px; padding-right: 24px; }
  .hero-copy { padding-top: 28px; }
  .hero-photo { min-height: 500px; }
  h1 { letter-spacing: -2.2px; }
  .header nav { gap: 16px; font-size: 13px; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  .car-product, .fleet-product { grid-template-columns: 1fr; gap: 16px; }
  .car-icon, .fleet-icon { height: 76px; width: 76px; }
  .fleet-icon img { width: 140px; height: 140px; left: -32px; }
  .about { gap: 7%; }
  .bmw-service { grid-template-columns: 1fr; }
  .bmw-photo { min-height: 220px; max-height: 320px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { scroll-padding-top: 16px; }
  .header {
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 12px 6% 8px;
    gap: 4px 12px;
  }
  .brand { font-size: 20px; }
  .nav-contact {
    margin-left: 0;
    border: 0;
    padding: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .header nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 16px;
    font-size: 13px;
    padding-bottom: 4px;
  }
  .header nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .nav-contact { border: 0; padding: 0; }
  .nav-contact span { margin-left: 4px; }
  .logo-window { width: 62px; height: 34px; }
  .logo-window img { width: 102px; height: 68px; left: -20px; top: -17px; }

  .hero {
    display: flex;
    flex-direction: column;
    padding: 28px 6% 22px;
    gap: 24px;
    min-height: 0;
  }
  .hero-copy { padding: 0; }
  .eyebrow { font-size: 10px; letter-spacing: 1px; }
  h1 {
    font-size: clamp(36px, 9vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.8px;
    margin: 18px 0 16px;
  }
  .desktop-break { display: none; }
  .hero-intro { max-width: none; font-size: 15px; }
  .button { width: 100%; margin-top: 20px; }
  .hero-note { margin-top: 18px; }
  .hero-photo {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: 420px;
  }
  .hero-photo > img {
    object-position: 60% center;
  }
  .photo-caption { left: 20px; bottom: 20px; font-size: 9px; }
  .photo-caption strong { font-size: 20px; }
  .photo-index { right: 16px; top: 16px; }

  .principle-strip { padding: 22px 6%; gap: 14px; }
  .principle-strip p { font-size: 16px; }
  .principle-strip > span { display: none; }
  .principle-strip > span:first-of-type {
    display: block;
    font-size: 12px;
    max-width: 110px;
  }
  .principle-strip > a { width: 40px; height: 40px; flex-shrink: 0; }

  .section { padding: 56px 6%; }
  .section-heading { display: block; margin-bottom: 26px; }
  .section-heading > .eyebrow { margin-bottom: 18px; }
  .section-heading h2 { font-size: 32px; letter-spacing: -1.2px; }
  .section-heading p:not(.eyebrow) { font-size: 14px; margin-top: 12px; }

  .product-family { padding: 22px; }
  .family-heading { display: block; padding-bottom: 18px; }
  .family-heading p { font-size: 13px; margin-top: 10px; }
  .family-grid { grid-template-columns: 1fr; }
  .car-product, .fleet-product {
    padding: 22px 0 8px;
    display: block;
    border: 0;
  }
  .fleet-product {
    border-top: 1px solid #c5d4e6;
    padding-top: 24px;
    padding-bottom: 4px;
  }
  .car-icon, .fleet-icon {
    float: right;
    width: 64px;
    height: 64px;
    margin: 0 0 10px 10px;
    border-radius: 14px;
  }
  .fleet-icon img { width: 118px; height: 118px; left: -26px; }
  .product-tagline { font-size: 20px; margin-top: 14px; clear: both; }
  .family-grid h3 { font-size: 24px; }

  .lubrio { padding: 24px; }
  .lubrio h3 { font-size: 32px; }
  .lubrio .product-tagline { font-size: 22px; }

  .bmw-copy { padding: 24px; }
  .bmw-copy h3 { font-size: 28px; }
  .bmw-photo { max-height: 200px; min-height: 160px; }

  .about {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 6%;
  }
  .about h2 { font-size: 32px; }
  .values > div { padding: 20px 0; grid-template-columns: 28px 1fr; }
  .values h3 { font-size: 24px; }

  .contact-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact h2 { font-size: 34px; letter-spacing: -1.2px; }
  .contact-links strong { font-size: 20px; word-break: break-word; }

  .footer { padding: 28px 6% 22px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .footer nav a { min-height: 40px; display: inline-flex; align-items: center; }
  .footer-legal { flex-direction: column; gap: 12px; }
  .footer-legal p { font-size: 11px; }
}

@media (max-width: 400px) {
  h1 { font-size: 34px; }
  .header nav { font-size: 12px; }
  .footer-cols { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  * { transition: none !important; }
}
