:root {
  --ink: #2a2a2a;
  --charcoal: #333333;
  --muted: #6d6a64;
  --line: #ddd7cb;
  --paper: #ffffff;
  --soft: #f8f7f2;
  --gold: #c9a961;
  --gold-dark: #9d7e36;
  --veil: rgba(255, 255, 255, 0.78);
  --shadow: 0 22px 55px rgba(42, 42, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Lato", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg width='1600' height='1200' viewBox='0 0 1600 1200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%232a2a2a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M96 270 C250 220 360 272 505 235 S785 175 960 245 S1240 346 1506 252'/%3E%3Cpath d='M72 686 C230 612 365 648 520 600 S790 475 1000 560 S1270 716 1518 648'/%3E%3Cpath d='M196 1060 C334 910 412 760 440 570 S548 272 704 114'/%3E%3Cpath d='M920 1098 C862 908 890 748 1018 600 S1228 338 1198 104'/%3E%3Cpath d='M1412 1012 C1290 858 1226 746 1210 604 S1102 322 1014 208'/%3E%3Cpath d='M302 150 L430 284 L560 420 L736 516 L960 650 L1138 808 L1298 1016'/%3E%3Cpath d='M158 454 C340 502 474 508 650 462 S998 392 1420 468'/%3E%3Cpath d='M244 860 C452 816 636 826 814 890 S1162 984 1442 884'/%3E%3C/g%3E%3Cg fill='%232a2a2a' font-family='Arial' font-size='34' font-weight='700' opacity='.9'%3E%3Ctext x='350' y='270'%3EI-95%3C/text%3E%3Ctext x='690' y='490'%3EI-80%3C/text%3E%3Ctext x='1110' y='650'%3EI-10%3C/text%3E%3Ctext x='1010' y='316'%3EI-75%3C/text%3E%3C/g%3E%3C/svg%3E");
  background-position: center 120px;
  background-repeat: repeat-y;
  background-size: min(1400px, 140vw) auto;
}

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

.kinetic-lines {
  position: fixed;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  opacity: 0.42;
}

.kinetic-lines svg {
  width: 100%;
  height: 100%;
}

.kinetic-lines path {
  fill: none;
  stroke: rgba(157, 126, 54, 0.16);
  stroke-width: 1;
  stroke-linecap: round;
}

.kinetic-lines circle {
  fill: rgba(157, 126, 54, 0.36);
  stroke: rgba(255, 255, 255, 0.76);
  stroke-width: 1;
}

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

button,
input {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(221, 215, 203, 0.78);
  backdrop-filter: blur(18px);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  z-index: 30;
}

.navbar {
  min-height: 118px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  column-gap: clamp(24px, 4vw, 56px);
  padding-block: 18px;
}

.lang-mobile {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
}

.brand img {
  width: clamp(242px, 21.85vw, 327px);
  height: auto;
}

.nav-links,
.nav-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.language-switch button,
.lang-mobile button,
.hero__meta button {
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-links {
  justify-self: start;
  gap: clamp(18px, 3vw, 36px);
  color: var(--charcoal);
  font-size: 12.6px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a,
.language-switch button,
.lang-mobile button,
.service-card a {
  position: relative;
}

.nav-links a::after,
.language-switch button::after,
.lang-mobile button::after,
.service-card a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.language-switch button:hover::after,
.language-switch button:focus-visible::after,
.lang-mobile button:hover::after,
.lang-mobile button:focus-visible::after,
.service-card a:hover::after,
.service-card a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  justify-self: end;
  gap: 18px;
}

.nav-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  font-weight: 700;
  transition: color 300ms ease, background 300ms ease, transform 300ms ease;
}

.nav-cta {
  min-height: 40px;
  padding-inline: 20px;
  font-size: 13px;
  border-radius: 999px;
  text-transform: uppercase;
}

.nav-cta,
.button--ghost {
  color: var(--gold-dark);
  background: transparent;
}

.button--primary,
.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible {
  color: #fff;
  background: var(--gold);
  transform: scale(1.02);
}

.language-switch {
  gap: 2px;
  min-height: 38px;
  padding: 3px;
  color: var(--charcoal);
  border: 1px solid rgba(201, 169, 97, 0.44);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

html[lang="es"] .nav-links {
  font-size: 11.6px;
}

html[lang="es"] .language-switch {
  font-size: 12px;
}

html[lang="es"] .nav-cta {
  min-height: 38px;
  padding-inline: 17px;
  font-size: 12px;
}

.language-switch button[aria-current="true"],
.lang-mobile button[aria-current="true"],
.hero__meta button[aria-current="true"] {
  color: var(--gold-dark);
}

.language-switch button,
.lang-mobile button {
  min-width: 38px;
  min-height: 30px;
  padding-inline: 11px;
  border-radius: 999px;
  transition: color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.language-switch button[aria-current="true"],
.lang-mobile button[aria-current="true"] {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 7px 18px rgba(157, 126, 54, 0.18);
}

.language-switch button::after,
.lang-mobile button::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
}

.menu-toggle span {
  width: 20px;
  height: 1px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.97) 38%, rgba(255, 255, 255, 0.62) 55%, rgba(255, 255, 255, 0.14) 73%, rgba(255, 255, 255, 0) 100%),
    var(--soft);
}

.hero__grid {
  min-height: clamp(460px, 52vh, 560px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: 42px;
  padding-block: 34px;
}

.hero__content {
  position: relative;
  z-index: 2;
}

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

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
  font-weight: 700;
}

.hero h1 span {
  display: inline;
}

.hero h1::first-line {
  color: var(--ink);
}

.gold-rule {
  width: 56px;
  height: 1px;
  margin: 28px 0;
  background: var(--gold);
}

.hero__copy {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
}

.hero__meta button {
  color: var(--gold-dark);
  font-weight: 700;
}

.hero__media {
  position: relative;
  height: clamp(380px, 42vw, 540px);
  min-height: 420px;
  align-self: stretch;
  overflow: hidden;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -2px;
  width: 68%;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.9) 24%, rgba(255, 255, 255, 0.45) 56%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(0deg, var(--soft), rgba(248, 247, 242, 0));
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 78%;
  filter: saturate(0.9) contrast(1.04);
}

.section {
  padding: 92px 0;
}

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

.section-heading h2,
.cities h2,
.booking h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 700;
}

.service-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr);
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 12px 35px rgba(42, 42, 42, 0.05);
}

.service-card--wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
  min-height: 300px;
}

.service-card--reverse img {
  order: 2;
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.service-card--wide:first-child img {
  object-position: center 78%;
}

.service-card--wide img {
  height: 300px;
}

.service-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 56px);
}

.service-card span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-card h3,
.fleet-card h3 {
  margin: 12px 0 10px;
  color: var(--charcoal);
  font-size: 25px;
  line-height: 1.12;
}

.service-card p,
.fleet-card p,
.booking__copy p {
  margin: 0;
  color: var(--muted);
}

.service-card a {
  width: fit-content;
  margin-top: 28px;
  color: var(--gold-dark);
  font-weight: 700;
}

.cities {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(248, 247, 242, 0.94)),
    var(--soft);
  border-block: 1px solid var(--line);
}

.cities::before {
  content: "";
  position: absolute;
  inset: 54px auto auto 7%;
  width: 180px;
  height: 1px;
  background: var(--gold);
  opacity: 0.72;
}

.fleet-section {
  background: rgba(255, 255, 255, 0.92);
}

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

.fleet-card {
  display: grid;
  align-content: start;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(42, 42, 42, 0.06);
}

.fleet-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.fleet-card div {
  padding: 24px 24px 28px;
}

.fleet-card h3 {
  font-size: 23px;
}

.cities__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 86px);
  align-items: start;
}

.cities__copy {
  position: sticky;
  top: 164px;
}

.cities__copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.city-list article {
  position: relative;
  min-height: 156px;
  padding: 24px;
  color: var(--charcoal);
  border: 1px solid rgba(221, 215, 203, 0.92);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(42, 42, 42, 0.04);
  overflow: hidden;
}

.city-list article::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 96px;
  height: 96px;
  border: 1px solid var(--gold);
  opacity: 0.32;
  transform: rotate(45deg);
}

.city-list span {
  display: inline-flex;
  min-width: 54px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.city-list h3 {
  margin: 18px 0 8px;
  color: var(--charcoal);
  font-size: 24px;
  line-height: 1.1;
}

.city-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.booking {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 38%, #fff 100%),
    rgba(255, 255, 255, 0.92);
}

.booking__media {
  position: absolute;
  inset: 0 auto 0 0;
  width: 34vw;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.62) 58%, #fff 100%),
    linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 32%),
    url("assets/photo-interior-limo.jpg?v=20260506-custom5-compressed") center / cover no-repeat;
  filter: saturate(0.86) contrast(1.03);
}

.booking__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
  padding-block: 78px;
}

.booking__copy {
  padding-left: min(28vw, 330px);
}

.booking__copy p {
  max-width: 540px;
  margin-top: 18px;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--charcoal);
  font-weight: 700;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 700;
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  color: #fff;
  border-color: var(--gold);
  background: var(--gold);
  transform: translateY(-2px);
}

.contact-actions svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.78;
}

.contact-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.7fr);
  gap: 18px;
  align-items: center;
  min-height: 178px;
  margin-top: 24px;
  padding: 20px;
  border: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(248, 247, 242, 0.9)),
    rgba(255, 255, 255, 0.76);
  box-shadow: none;
  overflow: hidden;
}

.contact-map svg {
  width: 100%;
  min-height: 130px;
}

.contact-map path,
.contact-map circle {
  fill: none;
  stroke: rgba(42, 42, 42, 0.16);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-map circle {
  fill: rgba(42, 42, 42, 0.08);
  stroke: rgba(42, 42, 42, 0.18);
}

.contact-map span {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-map strong {
  display: block;
  margin-top: 8px;
  color: var(--charcoal);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 1.05;
}

.contact-map p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 7px;
}

.booking-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-form input {
  width: 100%;
  min-height: 48px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 14px;
  outline: none;
}

.booking-form input:focus {
  border-color: var(--gold);
}

.booking-form button {
  width: 100%;
  cursor: pointer;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  background: #343434;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px 0;
}

.footer-grid img {
  width: 200px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-grid p {
  justify-self: end;
  margin: 0;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Scroll-to-top ── */
.scroll-top {
  position: fixed;
  right: 36px;
  bottom: 36px;
  z-index: 50;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gold-dark);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 380ms ease, transform 380ms ease, background 280ms ease, color 280ms ease;
  backdrop-filter: blur(10px);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: var(--gold);
  color: #fff;
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .kinetic-lines {
    display: none;
  }
}

@media (max-width: 1040px) {
  .scroll-top {
    display: none;
  }

  .navbar {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    min-height: 112px;
    column-gap: 16px;
    padding-block: 16px;
  }

  .brand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .brand img {
    width: 228px;
  }

  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    display: inline-flex;
    cursor: pointer;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .lang-mobile {
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    transform: translateY(-50%);
    gap: 2px;
    align-items: center;
    min-height: 36px;
    padding: 3px;
    color: var(--charcoal);
    border: 1px solid rgba(201, 169, 97, 0.44);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .navbar.is-open {
    align-items: center;
    padding-bottom: 12px;
  }

  .navbar.is-open .brand {
    top: 16px;
    transform: translateX(-50%);
  }

  .navbar.is-open .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 84px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(221, 215, 203, 0.9);
    box-shadow: 0 22px 45px rgba(42, 42, 42, 0.08);
    backdrop-filter: blur(18px);
  }

  .navbar.is-open .nav-links a {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(221, 215, 203, 0.58);
  }

  .navbar.is-open .nav-links a:last-child {
    border-bottom: 0;
  }

  .navbar.is-open .nav-actions {
    display: none;
  }

  .hero__grid,
  .cities__grid,
  .booking__inner {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
    gap: 28px;
  }

  .hero__media {
    height: 340px;
    min-height: 340px;
    margin-inline: -24px;
  }

  .service-card,
  .service-card--wide {
    grid-template-columns: 1fr;
  }

  .service-card--reverse img {
    order: 0;
  }

  .service-card img {
    height: 230px;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking__media {
    display: none;
  }

  .booking__copy {
    padding-left: 0;
  }

  .contact-map {
    grid-template-columns: 1fr;
  }

  .cities__copy {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-grid p {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(1180px, calc(100% - 32px));
  }

  body::before {
    background-size: 980px auto;
    background-position: center 72px;
  }

  .kinetic-lines {
    opacity: 0.26;
  }

  .navbar {
    min-height: 92px;
    grid-template-columns: 44px minmax(0, 1fr) 70px;
    column-gap: 10px;
    padding-block: 12px;
  }

  .brand {
    position: static;
    grid-column: 2;
    justify-self: center;
    transform: none;
  }

  .brand img {
    width: clamp(154px, 43vw, 184px);
  }

  .lang-mobile {
    position: static;
    grid-column: 3;
    justify-self: end;
    transform: none;
    min-height: 34px;
    padding: 2px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .lang-mobile button {
    min-width: 30px;
    min-height: 28px;
    padding-inline: 6px;
  }

  .navbar.is-open .brand {
    position: static;
    transform: none;
  }

  .navbar.is-open .nav-links {
    margin-top: 10px;
    padding: 8px;
  }

  .navbar.is-open .nav-links a {
    padding: 12px;
    text-align: center;
  }

  .hero__grid {
    gap: 24px;
    padding-block: 30px 36px;
  }

  .hero__media {
    height: 292px;
    min-height: 292px;
    margin-inline: -16px;
  }

  .hero h1 {
    max-width: 340px;
    margin-inline: auto;
    font-size: clamp(28px, 7.6vw, 32px);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .hero .eyebrow {
    max-width: 320px;
    margin-inline: auto;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .hero h1 span {
    display: block;
  }

  .hero h1 br {
    display: none;
  }

  .section-heading h2,
  .cities h2,
  .booking h2 {
    overflow-wrap: break-word;
  }

  .hero__content {
    width: min(100%, calc(100vw - 32px));
    min-width: 0;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .gold-rule {
    margin-inline: auto;
  }

  .hero__actions {
    display: grid;
    width: min(100%, 316px);
    max-width: 316px;
    gap: 12px;
    margin-inline: auto;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero__copy,
  .hero__meta,
  .section-heading {
    width: min(100%, 316px);
    max-width: 316px;
    margin-inline: auto;
  }

  .section-heading h2,
  .cities h2,
  .booking h2 {
    font-size: 30px;
  }

  .section {
    padding: 58px 0;
  }

  .service-layout,
  .fleet-grid,
  .city-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card img {
    height: 190px;
  }

  .booking-form {
    padding: 20px;
  }

  .contact-strip {
    gap: 12px;
    margin-top: 26px;
    padding-top: 18px;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-actions a {
    justify-content: flex-start;
  }

  .contact-map {
    min-height: 0;
    padding: 16px 0 0;
    background: transparent;
  }

  .contact-map svg {
    min-height: 112px;
  }

  .footer-grid {
    justify-items: center;
    text-align: center;
  }

  .footer-grid nav {
    justify-content: center;
  }

  .footer-grid p {
    justify-self: center;
  }
}
