@charset "UTF-8";
:root {
  color-scheme: light;
  --ink: #222827;
  --muted: #5b6462;
  --red: #bd2b29;
  --red-bright: #d53431;
  --line: #d9deda;
  --paper: #fff;
  --soft: #f1f4f2;
  --green: #31594d;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
select {
  cursor: pointer;
}
button {
  color: inherit;
}
button:disabled {
  cursor: default;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #2871b0;
  outline-offset: 4px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  font-weight: 700;
}
h2 {
  font-size: 2.65rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.5rem;
}
p {
  margin-bottom: 18px;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}
.icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
  flex: 0 0 22px;
}
[data-icon="arrow-up-right"] {
  --icon: url("assets/arrow-up-right.svg");
}
[data-icon="check"] {
  --icon: url("assets/check.svg");
}
[data-icon="route"] {
  --icon: url("assets/route.svg");
}
[data-icon="package"] {
  --icon: url("assets/package.svg");
}
[data-icon="truck"] {
  --icon: url("assets/truck.svg");
}
[data-icon="timer"] {
  --icon: url("assets/timer.svg");
}
[data-icon="phone"] {
  --icon: url("assets/phone.svg");
}
[data-icon="message-circle"] {
  --icon: url("assets/message-circle.svg");
}
[data-icon="mail"] {
  --icon: url("assets/mail.svg");
}
[data-icon="menu"] {
  --icon: url("assets/menu.svg");
}
[data-icon="x"] {
  --icon: url("assets/x.svg");
}
[data-icon="copy"] {
  --icon: url("assets/copy.svg");
}
[data-icon="download"] {
  --icon: url("assets/download.svg");
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 12px;
  background: white;
  padding: 12px;
  z-index: 20;
}
.skip-link:focus {
  top: 12px;
}
.draft-bar {
  background: #eef0ef;
  text-align: center;
  padding: 5px 16px;
  font-size: 0.75rem;
  color: #505854;
}
.draft-bar span {
  font-weight: 700;
  margin-right: 10px;
}
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 106px;
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
}
.brand-logo {
  display: block;
  width: 136px;
  height: auto;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 0.875rem;
}
.desktop-nav a:hover,
.footer-bottom a:hover {
  color: var(--red);
}
.button {
  background: var(--red);
  color: #fff;
  min-height: 54px;
  padding: 15px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.35;
  transition: background 0.15s ease;
  text-align: left;
}
.button:hover {
  background: #9f2423;
}
.button-small {
  min-height: 44px;
  padding: 12px 16px;
  font-size: 0.875rem;
  gap: 14px;
}
.button-dark {
  background: var(--ink);
}
.button-dark:hover {
  background: #3e4945;
}
.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.button-outline:hover {
  background: var(--soft);
}
.menu-toggle,
.icon-button {
  border: 1px solid var(--line);
  background: white;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  flex: 0 0 44px;
}
.menu-toggle {
  display: none;
}
.mobile-nav {
  border-top: 1px solid var(--line);
  padding: 8px 24px 16px;
  background: white;
}
.mobile-nav a {
  display: block;
  padding: 10px 0;
}
.hero {
  isolation: isolate;
  position: relative;
  min-height: 590px;
  height: min(680px, calc(100svh - 200px));
  overflow: hidden;
  background: #d9e0e1;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}
.hero-content {
  padding-top: 48px;
  padding-bottom: 50px;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 22px;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.flag {
  display: inline-block;
  width: 20px;
  height: 14px;
  border-top: 5px solid #cc3537;
  border-bottom: 5px solid #cc3537;
  background: white;
  flex: 0 0 20px;
}
h1 {
  font-size: 4.2rem;
  line-height: 1.055;
  margin-bottom: 22px;
  max-width: 600px;
}
h1 span {
  color: var(--red);
}
.hero-description {
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 355px;
  font-weight: 500;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  margin: 14px 0 0;
  font-weight: 600;
}
.hero-note .icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}
.image-caption {
  position: absolute;
  right: 18px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.88);
  padding: 2px 7px;
  font-size: 0.75rem;
}
.trust-strip {
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 28px;
}
.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-inline: 30px;
  border-left: 1px solid var(--line);
}
.trust-grid > div:first-child {
  border-left: 0;
  padding-left: 0;
}
.trust-grid strong {
  font-size: 2.3rem;
  line-height: 1;
  white-space: nowrap;
}
.trust-grid strong span {
  color: var(--red);
}
.trust-grid p {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.4;
}
.section {
  padding-block: 92px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 38px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  max-width: 390px;
  color: var(--muted);
  margin-bottom: 4px;
}
.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.service {
  border-top: 2px solid var(--ink);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 10px;
}
.service-number {
  font-size: 0.6875rem;
  color: var(--muted);
  font-weight: 700;
}
.service-icon {
  width: 29px;
  height: 29px;
  flex-basis: 29px;
  color: var(--red);
}
.service h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
}
.service p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 26px;
}
.service a {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 0.875rem;
  font-weight: 700;
}
.service a:hover {
  text-decoration: underline;
}
.about-band {
  background: #242e2a;
  color: white;
  padding-block: 80px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-band .eyebrow {
  color: #d7a7a0;
}
.about-band p {
  color: #c5ceca;
  max-width: 500px;
}
.values > div {
  display: flex;
  gap: 24px;
  padding-block: 25px;
  border-bottom: 1px solid #4c5751;
}
.values > div:first-child {
  border-top: 1px solid #4c5751;
}
.values > div > span {
  font-size: 0.8125rem;
  color: #d7a7a0;
}
.values h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.values p {
  font-size: 0.9375rem;
  margin: 0;
}
.coverage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
}
.coverage > div > p:not(.eyebrow) {
  color: var(--muted);
}
.regions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
  list-style: none;
  padding: 22px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
}
.regions li {
  padding-block: 4px;
  overflow-wrap: anywhere;
}
.contact-band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  padding-block: 80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}
.contact-intro > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 350px;
}
.contact-links {
  margin-top: 35px;
  max-width: 370px;
}
.contact-links a {
  display: flex;
  align-items: center;
  gap: 17px;
  border-top: 1px solid #cbd3ce;
  padding-block: 18px;
}
.contact-links a:last-child {
  border-bottom: 1px solid #cbd3ce;
}
.contact-links a > span {
  flex: 1;
  min-width: 0;
}
.contact-links strong,
.contact-links small {
  display: block;
}
.contact-links strong {
  font-size: 0.9375rem;
}
.contact-links small {
  font-size: 0.875rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.contact-links a[aria-disabled="true"] {
  cursor: default;
}
.contact-links a[aria-disabled="true"] > .icon:last-child {
  visibility: hidden;
}
.quote-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 32px;
}
.quote-form h3 {
  font-size: 1.4rem;
  margin-bottom: 26px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}
label {
  font-size: 0.875rem;
  line-height: 1.5;
  display: block;
  font-weight: 600;
}
.full {
  grid-column: 1 / -1;
}
.optional {
  color: var(--muted);
  font-weight: 400;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  min-width: 0;
  background: #fff;
  border: 1px solid #aeb9b2;
  border-radius: 3px;
  padding: 11px 12px;
  color: var(--ink);
  margin-top: 7px;
  font-size: 1rem;
  font-weight: 400;
}
input,
select {
  min-height: 47px;
}
textarea {
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: #68716c;
  opacity: 1;
}
.form-privacy {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 21px;
}
.form-privacy a {
  text-decoration: underline;
}
.submit-button {
  width: 100%;
  justify-content: space-between;
}
.form-note {
  color: var(--muted);
  font-size: 0.75rem;
  margin: 12px 0 0;
}
.site-footer {
  padding-block: 36px 22px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
}
.footer-top .brand-logo {
  width: 168px;
}
.footer-top p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9375rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-bottom nav {
  display: flex;
  gap: 24px;
}
.footer-bottom > a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-bottom .icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  width: min(640px, calc(100% - 32px));
  max-height: calc(100svh - 40px);
  color: var(--ink);
}
dialog::backdrop {
  background: rgba(21, 29, 25, 0.6);
}
.dialog-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
.dialog-heading h2 {
  font-size: 1.65rem;
  margin: 4px 0 16px;
}
dialog > p {
  font-size: 0.9375rem;
  color: var(--muted);
}
.summary-label {
  margin-bottom: 8px;
}
#quote-summary {
  font-size: 0.875rem;
  line-height: 1.6;
  background: var(--soft);
}
.dialog-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.dialog-actions .button {
  font-size: 0.875rem;
  gap: 10px;
  padding-inline: 14px;
}
.dialog-feedback {
  min-height: 24px;
  margin: 14px 0 0;
}
.legal-main {
  max-width: 860px;
  padding-block: 55px 80px;
  min-height: 65vh;
}
.legal-main h1 {
  font-size: 3rem;
  margin-top: 24px;
}
.legal-main h2 {
  font-size: 1.5rem;
  margin: 35px 0 15px;
}
.legal-main a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-notice {
  padding: 18px 20px;
  border-left: 3px solid var(--red);
  background: var(--soft);
  margin-block: 28px;
}
.legal-list {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  margin: 22px 0;
}
.legal-list dt,
.legal-list dd {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.legal-list dd {
  color: var(--muted);
  padding-left: 20px;
}
@media (min-width: 1600px) {
  .hero {
    height: 720px;
    max-height: calc(100svh - 200px);
  }
  .hero-content {
    padding-top: 70px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  .desktop-nav {
    gap: 18px;
  }
  .header-inner {
    gap: 18px;
  }
  .header-cta {
    font-size: 0.8125rem;
  }
  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px;
  }
  .service-top {
    margin-bottom: 22px;
  }
  .about-grid,
  .coverage,
  .contact-grid {
    gap: 50px;
  }
  .trust-grid > div {
    padding-inline: 22px;
    gap: 14px;
  }
  .regions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  h1 {
    font-size: 3.8rem;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: grid;
  }
  .header-cta {
    margin-left: auto;
  }
  .hero {
    height: 660px;
    min-height: 580px;
  }
  .hero-image {
    object-position: 61% 50%;
  }
  h1 {
    font-size: 3.4rem;
  }
  .hero-description {
    max-width: 310px;
  }
  .hero::before {
    background: rgba(255, 255, 255, 0.3);
  }
  .trust-grid > div {
    display: block;
  }
  .trust-grid p {
    margin-top: 8px;
  }
  .section-heading {
    gap: 40px;
  }
  h2 {
    font-size: 2.2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
  }
  .quote-form {
    padding: 22px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .about-grid,
  .coverage {
    gap: 35px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
}
@media (max-width: 680px) {
  html {
    scroll-padding-top: 78px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .draft-bar {
    font-size: 0.75rem;
    padding: 6px 14px;
    line-height: 1.4;
  }
  .draft-bar span {
    display: block;
  }
  .header-inner {
    min-height: 76px;
    gap: 12px;
  }
  .brand strong {
    font-size: 0.875rem;
    max-width: 220px;
  }
  .brand small {
    font-size: 0.625rem;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
  .header-cta {
    display: none;
  }
  .hero {
    min-height: 575px;
    height: min(660px, calc(100svh - 160px));
  }
  .hero-image {
    height: 75%;
    top: auto;
    bottom: 0;
    object-position: 66% 70%;
  }
  .hero {
    background: #e7e9ea;
  }
  .hero::before {
    background: rgba(255, 255, 255, 0.06);
  }
  .hero-content {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .hero .eyebrow {
    font-size: 0.6875rem;
    gap: 8px;
    margin-bottom: 17px;
  }
  h1 {
    font-size: 2.65rem;
    line-height: 1.08;
    margin-bottom: 16px;
  }
  .hero-description {
    max-width: 340px;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .hero .button {
    min-height: 47px;
    padding: 12px 16px;
    font-size: 0.875rem;
  }
  .hero-note {
    font-size: 0.75rem;
    background: rgba(242, 245, 244, 0.92);
    display: inline-flex;
    padding: 3px 6px;
    margin-top: 10px;
  }
  .image-caption {
    bottom: 7px;
    right: 7px;
    font-size: 0.75rem;
  }
  .trust-grid {
    padding-block: 23px;
  }
  .trust-grid > div {
    padding-inline: 15px;
  }
  .trust-grid strong {
    font-size: 1.65rem;
  }
  .trust-grid p {
    font-size: 0.75rem;
  }
  .section {
    padding-block: 58px;
  }
  .section-heading,
  .about-grid,
  .coverage,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  h2 {
    font-size: 2.2rem;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading > p {
    max-width: none;
  }
  .eyebrow {
    margin-bottom: 16px;
  }
  .services {
    gap: 28px;
  }
  .service h3 {
    font-size: 1.25rem;
  }
  .service-number {
    font-size: 0.625rem;
  }
  .service-top {
    gap: 5px;
  }
  .service-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
  .service p {
    font-size: 0.9375rem;
  }
  .service a {
    font-size: 0.8125rem;
    gap: 5px;
  }
  .about-band {
    padding-block: 58px;
  }
  .values > div {
    padding-block: 22px;
  }
  .coverage h2 {
    margin-bottom: 0;
  }
  .regions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    font-size: 0.75rem;
  }
  .contact-band {
    padding-block: 58px;
  }
  .contact-intro > p:not(.eyebrow),
  .contact-links {
    max-width: none;
  }
  .contact-links {
    margin-top: 26px;
  }
  .quote-form {
    padding: 24px 20px;
  }
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-top {
    display: block;
  }
  .footer-top p {
    margin-top: 20px;
  }
  .footer-bottom {
    gap: 18px;
  }
  .footer-bottom > span {
    flex-basis: 100%;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
  .legal-main h1 {
    font-size: 2.4rem;
    overflow-wrap: anywhere;
  }
  .legal-list {
    grid-template-columns: 1fr;
  }
  .legal-list dt {
    padding-bottom: 0;
    border-bottom: 0;
    font-weight: 600;
  }
  .legal-list dd {
    padding-left: 0;
    padding-top: 5px;
  }
}
@media (max-width: 380px) {
  h1 {
    font-size: 2.3rem;
  }
  .brand strong {
    max-width: 170px;
  }
  .hero .eyebrow {
    font-size: 0.625rem;
  }
  .services,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .service h3 {
    font-size: 1.5rem;
  }
  .service-number {
    font-size: 0.75rem;
  }
  .trust-grid > div {
    padding-inline: 10px;
  }
  .trust-grid strong {
    font-size: 1.5rem;
  }
  .regions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dialog-actions {
    flex-direction: column;
  }
}

/* Responsive sizing for the Kalia Transporte logo lockup. */
@media (max-width: 680px) {
  html {
    scroll-padding-top: 88px;
  }
  .header-inner {
    min-height: 88px;
  }
  .brand-logo {
    width: 108px;
  }
  .footer-top .brand-logo {
    width: 148px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
