:root {
  --white: #ffffff;
  --deep-blue: #071a33;
  --deep-blue-2: #102b4e;
  --grey-25: #f7f8fa;
  --grey-50: #eef1f5;
  --grey-100: #d9dee6;
  --grey-500: #687282;
  --grey-700: #313a47;
  --whatsapp-green: #25d366;
  --whatsapp-green-hover: #1ebe5d;
  --shadow: 0 24px 70px rgba(7, 26, 51, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  color: var(--deep-blue);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
select {
  font: inherit;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 18px max(20px, calc((100vw - 1160px) / 2));
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--grey-50);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-header .brand-logo {
  width: 112px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.brand small {
  color: var(--grey-500);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--grey-700);
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a {
  padding-block: 8px;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-action,
.button-secondary {
  color: var(--deep-blue);
  background: var(--white);
  border-color: var(--grey-100);
}

.button-primary {
  color: var(--white);
  background: var(--deep-blue);
  border-color: var(--deep-blue);
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--deep-blue);
}

.hero {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: 560px;
  height: 72vh;
  max-height: 720px;
  margin-inline: 0;
  padding: 0;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(135deg, var(--deep-blue), var(--deep-blue-2) 58%, var(--grey-50));
}

.image-frame {
  position: relative;
}

.image-frame::before {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 1;
  content: attr(data-label);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-media::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58) 42%, rgba(255, 255, 255, 0.06) 72%);
}

.hero-media img {
  object-position: center 66%;
}

.image-frame img {
  opacity: 1;
}

.image-frame img[src] {
  color: transparent;
}

.image-frame.is-loaded::before {
  content: "";
}

.image-frame.is-missing img {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1160px) / 2));
  padding: 110px 0 52px;
  color: var(--deep-blue);
}

.eyebrow {
  margin: 0 0 12px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 22px;
  font-size: 4.8rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 54ch;
  margin-bottom: 30px;
  color: var(--grey-700);
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .button-secondary {
  color: var(--deep-blue);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(7, 26, 51, 0.18);
}

.final-cta .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.whatsapp-button,
.header-action.whatsapp-button,
.button-secondary.whatsapp-button,
.final-cta .button-secondary.whatsapp-button {
  gap: 9px;
  color: var(--white);
  background: var(--whatsapp-green);
  border-color: var(--whatsapp-green);
}

.whatsapp-button:hover,
.header-action.whatsapp-button:hover,
.button-secondary.whatsapp-button:hover,
.final-cta .button-secondary.whatsapp-button:hover {
  background: var(--whatsapp-green-hover);
  border-color: var(--whatsapp-green-hover);
}

.whatsapp-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--white);
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 560px;
  margin: 38px 0 0;
}

.hero-metrics div {
  padding-top: 18px;
  border-top: 1px solid rgba(7, 26, 51, 0.22);
}

.hero-metrics dt {
  font-size: 1.45rem;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 0;
  color: var(--grey-700);
  font-size: 0.9rem;
}

.booking-wrap {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(560px, 1.22fr) minmax(270px, 0.78fr);
  gap: 0;
  align-items: stretch;
  min-height: 0;
  margin-top: 22px;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-50);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  align-self: stretch;
  aspect-ratio: auto;
  background: linear-gradient(135deg, var(--deep-blue), var(--grey-100));
}

.booking-visual img {
  position: absolute;
  inset: 0;
  object-position: center 72%;
}

.booking-visual::after {
  display: none;
}

.booking-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 36px 42px;
  background: var(--white);
}

.booking-heading h1 {
  max-width: 16ch;
  margin-bottom: 14px;
  font-size: 3.05rem;
  line-height: 1;
}

.booking-lead {
  max-width: 46ch;
  margin-bottom: 0;
  color: var(--grey-700);
  font-size: 1.02rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading .eyebrow {
  color: var(--grey-500);
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading.split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.booking-form label {
  display: grid;
  grid-column: span 3;
  gap: 8px;
  min-width: 0;
}

.booking-form label:nth-of-type(3),
.booking-form label:nth-of-type(4) {
  grid-column: span 3;
}

.booking-form label:nth-of-type(5) {
  grid-column: 1 / -1;
}

.booking-form span {
  color: var(--grey-700);
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  color: var(--deep-blue);
  background: var(--grey-25);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
}

.booking-form button {
  grid-column: span 3;
  align-self: end;
  min-height: 52px;
}

.booking-form .form-whatsapp {
  grid-column: span 3;
  align-self: end;
  min-height: 52px;
}

.booking-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.booking-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--grey-700);
  background: var(--grey-25);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
}

.guarantees,
.fleet,
.process,
.services,
.destinations,
.final-cta,
.instagram-section {
  padding-block: 110px;
}

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

.guarantee-grid article,
.steps article,
.service-list article {
  padding: 28px;
  background: var(--grey-25);
  border: 1px solid var(--grey-50);
  border-radius: var(--radius);
}

.guarantee-grid article,
.steps article {
  aspect-ratio: 1 / 1;
  display: grid;
  align-content: space-between;
}

.guarantee-grid span,
.steps span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--grey-500);
  font-size: 0.78rem;
  font-weight: 800;
}

.guarantee-grid p,
.steps p,
.service-list p,
.final-cta p,
.site-footer p {
  color: var(--grey-500);
}

.guarantees .section-heading,
.process .section-heading {
  position: relative;
  max-width: 760px;
  padding-left: 22px;
}

.guarantees .section-heading::before,
.process .section-heading::before {
  position: absolute;
  top: 4px;
  bottom: 6px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--deep-blue), rgba(7, 26, 51, 0.12));
  border-radius: 999px;
  content: "";
}

.guarantee-grid article {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--white) 0%, #f7f9fc 100%);
  border-color: var(--grey-100);
  box-shadow: 0 18px 46px rgba(7, 26, 51, 0.06);
}

.guarantee-grid article::after,
.process .steps article::after {
  position: absolute;
  top: -52px;
  right: -52px;
  width: 132px;
  height: 132px;
  background: radial-gradient(circle, rgba(7, 26, 51, 0.07), rgba(7, 26, 51, 0) 70%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.guarantees .guarantee-grid span,
.process .steps span {
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  color: var(--deep-blue);
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(7, 26, 51, 0.06);
}

.process .steps {
  position: relative;
}

.process .steps::before {
  display: none;
}

.process .steps article {
  position: relative;
  z-index: 1;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(225deg, var(--white) 0%, #f7f9fc 100%);
  border-color: var(--grey-100);
  box-shadow: 0 18px 46px rgba(7, 26, 51, 0.06);
}

.process .steps article > * {
  position: relative;
  z-index: 3;
}

.process .steps span {
  color: var(--deep-blue);
  background: var(--white);
  border-color: var(--grey-100);
  box-shadow: 0 8px 20px rgba(7, 26, 51, 0.06);
}

.fleet {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1160px) / 2));
  background: var(--grey-25);
}

.fleet-carousel {
  position: relative;
}

.fleet-viewport {
  overflow: hidden;
}

.fleet-track {
  display: flex;
  gap: 18px;
  transition: transform 320ms ease;
  will-change: transform;
}

.vehicle-card {
  display: grid;
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-50);
  border-radius: var(--radius);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.vehicle-card:hover,
.vehicle-card:focus-visible {
  border-color: var(--grey-100);
  box-shadow: 0 18px 44px rgba(7, 26, 51, 0.1);
  transform: translateY(-2px);
  outline: none;
}

.vehicle-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--deep-blue), var(--grey-100));
}

.vehicle-image::after {
  background: linear-gradient(180deg, rgba(7, 26, 51, 0), rgba(7, 26, 51, 0.18));
}

.vehicle-content {
  display: grid;
  gap: 4px;
  padding: 24px;
}

.vehicle-card img {
  object-position: center 58%;
}

.vehicle-card--targa img {
  object-position: center 100%;
}

.vehicle-card--x7 img {
  object-position: center 100%;
}

.vehicle-card--huracan img {
  object-position: center center;
}

.vehicle-card--g63 img {
  object-position: center 100%;
}

.vehicle-card--gle img {
  object-position: center 66%;
}

.vehicle-card--range-rover img {
  object-position: center 100%;
}

.vehicle-card--urus-topcar img {
  object-position: center 84%;
}

.vehicle-card--urus-performante img {
  object-position: center center;
}

.vehicle-content p {
  margin: 0;
  color: var(--grey-500);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.vehicle-content h3 {
  margin: 0;
}

.vehicle-content span {
  color: var(--deep-blue);
  font-weight: 800;
}

.text-link {
  color: var(--deep-blue);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.carousel-button {
  position: absolute;
  top: 42%;
  z-index: 6;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(7, 26, 51, 0.16);
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease;
}

.carousel-button:hover {
  transform: translateY(-2px);
}

.carousel-button:disabled {
  opacity: 0.36;
  cursor: not-allowed;
}

.carousel-button span {
  display: block;
  width: 13px;
  height: 13px;
  border-top: 2px solid var(--deep-blue);
  border-right: 2px solid var(--deep-blue);
}

.carousel-prev {
  left: -26px;
}

.carousel-next {
  right: -26px;
}

.carousel-prev span {
  transform: rotate(225deg);
}

.carousel-next span {
  transform: rotate(45deg);
}

.service-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  padding: 56px;
  color: var(--white);
  background: var(--deep-blue);
  border-radius: var(--radius);
}

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

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

.service-list article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.destination-card {
  position: relative;
  display: flex;
  aspect-ratio: 16 / 8.5;
  min-height: 0;
  align-items: flex-end;
  padding: 16px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 26, 51, 0.04), rgba(7, 26, 51, 0.68)),
    var(--destination-image);
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
}

.destination-card span {
  position: relative;
  z-index: 1;
  font-size: 0.98rem;
  font-weight: 800;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  width: min(1160px, calc(100% - 40px));
  margin-bottom: 0;
  padding: 64px;
  color: var(--white);
  background: var(--deep-blue);
  border-radius: var(--radius);
}

.final-cta h2 {
  max-width: 11ch;
  margin-bottom: 18px;
}

.instagram-section {
  display: grid;
  gap: 34px;
}

.product-suggestions + .instagram-section {
  padding-top: 0;
}

.instagram-section .section-heading {
  margin-bottom: 0;
}

.instagram-section .section-heading p:not(.eyebrow) {
  max-width: 52ch;
  margin: 16px 0 0;
  color: var(--grey-500);
}

.instagram-button {
  gap: 10px;
  color: var(--white);
  background: linear-gradient(135deg, #833ab4 0%, #c13584 32%, #e1306c 58%, #fd1d1d 76%, #fcb045 100%);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(193, 53, 132, 0.24);
  white-space: nowrap;
}

.instagram-button:hover,
.instagram-button:focus-visible {
  color: var(--white);
  box-shadow: 0 16px 34px rgba(193, 53, 132, 0.32);
}

.instagram-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.instagram-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.instagram-icon::after {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 2px;
  height: 2px;
  background: currentColor;
  border-radius: 50%;
  content: "";
}

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

.instagram-grid[hidden] {
  display: none;
}

.instagram-card {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--grey-50);
  border-radius: var(--radius);
}

.instagram-card img {
  transition: transform 300ms ease;
}

.instagram-card:hover img,
.instagram-card:focus-visible img {
  transform: scale(1.035);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px max(20px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--grey-50);
}

.site-footer .brand-logo {
  width: 112px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--grey-700);
  font-weight: 700;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-page {
  background: var(--white);
}

.product-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
  padding-block: 48px 96px;
}

.product-media {
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--deep-blue), var(--grey-100));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-media::after {
  background: linear-gradient(180deg, rgba(7, 26, 51, 0), rgba(7, 26, 51, 0.12));
}

.product-media img {
  object-position: center 58%;
}

body[data-vehicle="mercedes-amg-g63"] .product-media[data-gallery-index="0"] img {
  object-position: center 100%;
}

body[data-vehicle="lamborghini-urus-topcar"] .product-media[data-gallery-index="0"] img {
  object-position: center 84%;
}

body[data-vehicle="lamborghini-urus-performante"] .product-media[data-gallery-index="0"] img {
  object-position: center center;
}

body[data-vehicle="range-rover-sport-p460e"] .product-media[data-gallery-index="0"] img {
  object-position: center 100%;
}

body[data-vehicle="porsche-911-992-targa-4s"] .product-media[data-gallery-index="0"] img {
  object-position: center 100%;
}

body[data-vehicle="bmw-x7-40d"] .product-media[data-gallery-index="0"] img {
  object-position: center 100%;
}

body[data-vehicle="lamborghini-huracan-evo-coupe"] .product-media[data-gallery-index="0"] img {
  object-position: center center;
}

.product-copy {
  display: grid;
  gap: 18px;
}

.product-copy > .eyebrow {
  margin: 0;
  color: var(--deep-blue);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  letter-spacing: 0.02em;
}

.product-copy h1 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: 4.15rem;
}

.product-category {
  margin-bottom: 0;
  color: var(--grey-700);
  font-size: 1rem;
  font-weight: 800;
}

.product-intro {
  max-width: 48ch;
  margin-bottom: 0;
  color: var(--grey-500);
  font-size: 1.05rem;
}

.back-link {
  width: max-content;
  color: var(--grey-700);
  font-size: 0.86rem;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.product-price {
  display: grid;
  gap: 4px;
  padding-top: 8px;
}

.product-price span {
  color: var(--grey-500);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-price strong {
  font-size: 1.4rem;
}

.product-rates {
  display: grid;
  gap: 12px;
  padding-top: 8px;
}

.product-rates[hidden] {
  display: none;
}

.product-rates-heading {
  display: grid;
  gap: 2px;
}

.product-rates-heading span {
  color: var(--grey-500);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-rates-heading strong {
  font-size: 1rem;
}

.product-rates-table-wrap {
  overflow-x: auto;
}

.product-rates-table {
  width: 100%;
  border-collapse: collapse;
}

.product-rates-table th,
.product-rates-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--grey-50);
  text-align: left;
  vertical-align: middle;
}

.product-rates-table thead th {
  color: var(--grey-500);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-rates-table tbody th,
.product-rates-table tbody td {
  font-size: 0.84rem;
}

.product-rates-table tbody th {
  color: var(--deep-blue);
  font-weight: 800;
}

.product-rates-table th:last-child,
.product-rates-table td:last-child {
  text-align: right;
  white-space: nowrap;
}

.product-rates-table td:last-child strong,
.product-rates-table td:last-child span {
  display: block;
}

.product-rates-table td:last-child span {
  color: var(--grey-500);
  font-size: 0.72rem;
}

.product-deposit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 8px 0;
}

.product-deposit span {
  color: var(--grey-500);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-deposit strong {
  font-size: 0.94rem;
}

.product-rates-disclaimer {
  margin: 0;
  padding: 2px 8px 0;
  color: var(--grey-500);
  font-size: 0.72rem;
  line-height: 1.5;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 10px;
}

.gallery-carousel {
  position: relative;
}

.gallery-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 222, 230, 0.9);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(7, 26, 51, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.gallery-control:hover {
  background: var(--white);
  transform: translateY(calc(-50% - 2px));
}

.gallery-control:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gallery-control span {
  display: block;
  width: 13px;
  height: 13px;
  border-top: 2px solid var(--deep-blue);
  border-right: 2px solid var(--deep-blue);
}

.gallery-prev {
  left: 22px;
}

.gallery-next {
  right: 22px;
}

.gallery-prev span {
  transform: rotate(225deg);
}

.gallery-next span {
  transform: rotate(45deg);
}

.gallery-status {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  color: var(--deep-blue);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 222, 230, 0.9);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 800;
}

.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-block: 0 96px;
}

.product-panel {
  display: grid;
  align-content: start;
  gap: 30px;
  padding: 34px;
  background: var(--grey-25);
  border: 1px solid var(--grey-50);
  border-radius: var(--radius);
}

.product-panel h2 {
  font-size: 2.1rem;
}

.product-specs {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--grey-100);
}

.product-spec {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--grey-100);
}

.product-spec dt {
  color: var(--grey-500);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-spec dd {
  margin: 0;
  color: var(--deep-blue);
  font-weight: 700;
}

.option-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.option-list li {
  padding: 0 0 12px 24px;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-100);
  font-weight: 600;
}

.option-list li::before {
  position: absolute;
  margin-left: -24px;
  content: "+";
  color: var(--deep-blue);
  font-weight: 800;
}

.product-service {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  padding: 64px;
  color: var(--white);
  background: var(--deep-blue);
  border-radius: var(--radius);
}

.product-service h2 {
  max-width: 11ch;
}

.product-service p {
  color: rgba(255, 255, 255, 0.68);
}

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

.product-service-list article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.product-suggestions {
  padding-block: 110px;
}

.suggestion-carousel {
  position: relative;
}

.suggestion-viewport {
  overflow: hidden;
}

.suggestion-grid {
  display: flex;
  gap: 18px;
  transition: transform 320ms ease;
  will-change: transform;
}

.suggestion-card {
  display: grid;
  flex: 0 0 calc((100% - 36px) / 3);
  overflow: hidden;
  background: var(--grey-25);
  border: 1px solid var(--grey-50);
  border-radius: var(--radius);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.suggestion-card:hover,
.suggestion-card:focus-visible {
  border-color: var(--grey-100);
  box-shadow: 0 18px 44px rgba(7, 26, 51, 0.1);
  transform: translateY(-2px);
  outline: none;
}

.suggestion-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--deep-blue), var(--grey-100));
}

.suggestion-image::after {
  background: linear-gradient(180deg, rgba(7, 26, 51, 0), rgba(7, 26, 51, 0.16));
}

.suggestion-card[data-suggestion-slug="mercedes-amg-g63"] img {
  object-position: center 100%;
}

.suggestion-card[data-suggestion-slug="lamborghini-urus-performante"] img {
  object-position: center center;
}

.suggestion-card[data-suggestion-slug="range-rover-sport-p460e"] img {
  object-position: center 100%;
}

.suggestion-card[data-suggestion-slug="porsche-911-992-targa-4s"] img {
  object-position: center 100%;
}

.suggestion-card[data-suggestion-slug="bmw-x7-40d"] img {
  object-position: center 100%;
}

.suggestion-card[data-suggestion-slug="lamborghini-huracan-evo-coupe"] img {
  object-position: center center;
}

.suggestion-content {
  display: grid;
  gap: 4px;
  padding: 22px;
}

.suggestion-content p {
  margin: 0;
  color: var(--grey-500);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.suggestion-content h3 {
  margin: 0;
}

.suggestion-content span {
  color: var(--deep-blue);
  font-weight: 800;
}

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

  .nav-toggle {
    display: block;
  }

  .main-nav,
  .header-action {
    display: none;
  }

  .nav-open .main-nav {
    position: fixed;
    inset: 79px 20px auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-open .main-nav a {
    padding: 16px;
  }

  .hero-copy {
    margin-left: 28px;
    padding: 104px 0 48px;
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .booking-heading h1 {
    font-size: 3rem;
  }

  .service-panel {
    grid-template-columns: 1fr;
  }

  .booking-wrap {
    grid-template-columns: 1fr;
  }

  .booking-content {
    order: 1;
  }

  .booking-visual {
    order: 2;
    aspect-ratio: 16 / 7;
    min-height: 280px;
    max-height: 360px;
  }

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

  .booking-form label:nth-of-type(1),
  .booking-form label:nth-of-type(2),
  .booking-form label:nth-of-type(3),
  .booking-form label:nth-of-type(4),
  .booking-form button,
  .booking-form .form-whatsapp {
    grid-column: auto;
  }

  .booking-form label:nth-of-type(5) {
    grid-column: 1 / -1;
  }

  .guarantee-grid,
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vehicle-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .carousel-prev {
    left: -16px;
  }

  .carousel-next {
    right: -16px;
  }

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

  .product-hero,
  .product-details,
  .product-service {
    grid-template-columns: 1fr;
  }

  .product-copy h1 {
    font-size: 3.6rem;
  }

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

  .suggestion-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .final-cta,
  .site-footer,
  .section-heading.split {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .section-shell {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .hero {
    min-height: 560px;
    height: 78vh;
    max-height: 680px;
    padding: 0;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
  }

  .hero-copy {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 110px 0 34px;
  }

  h1 {
    max-width: 10ch;
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .booking-heading h1 {
    max-width: 11ch;
    font-size: 2.2rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 34px;
  }

  .booking-wrap {
    margin-top: 14px;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .booking-visual {
    aspect-ratio: 16 / 10;
    min-height: clamp(220px, 70vw, 360px);
    max-height: none;
  }

  .booking-visual::after {
    display: none;
  }

  .booking-content {
    padding: 24px;
  }

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

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

  .booking-form label:nth-of-type(1),
  .booking-form label:nth-of-type(2),
  .booking-form label:nth-of-type(3),
  .booking-form label:nth-of-type(4),
  .booking-form label:nth-of-type(5),
  .booking-form button,
  .booking-form .form-whatsapp {
    grid-column: 1 / -1;
  }

  .guarantees,
  .fleet,
  .process,
  .services,
  .destinations,
  .final-cta {
    padding-block: 70px;
  }

  .guarantee-grid,
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .guarantee-grid article,
  .steps article {
    min-height: 0;
    padding: 10px;
  }

  .guarantee-grid span,
  .steps span {
    margin-bottom: 0;
    font-size: 0.72rem;
  }

  .guarantee-grid h3,
  .steps h3 {
    margin: 0;
    font-size: clamp(0.7rem, 2.7vw, 0.88rem);
    line-height: 1.12;
  }

  .guarantee-grid p,
  .steps p {
    display: none;
  }

  .guarantees .section-heading,
  .process .section-heading {
    padding-left: 14px;
  }

  .guarantees .section-heading::before,
  .process .section-heading::before {
    bottom: 4px;
  }

  .guarantees .guarantee-grid article,
  .process .steps article {
    min-height: 112px;
    padding: 12px;
    box-shadow: none;
  }

  .guarantees .guarantee-grid span,
  .process .steps span {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    font-size: 0.68rem;
    box-shadow: none;
  }

  .process .steps::before {
    display: none;
  }

  .vehicle-card {
    flex-basis: 100%;
  }

  .carousel-button {
    top: 38%;
    width: 44px;
    height: 44px;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .service-panel,
  .final-cta,
  .product-panel,
  .product-service {
    padding: 28px;
  }

  .product-hero {
    gap: 28px;
    padding-block: 24px 70px;
  }

  .gallery-control {
    width: 44px;
    height: 44px;
  }

  .gallery-prev {
    left: 12px;
  }

  .gallery-next {
    right: 12px;
  }

  .gallery-status {
    right: 12px;
    bottom: 12px;
  }

  .product-copy h1 {
    max-width: 11ch;
    font-size: 2.65rem;
  }

  .product-actions {
    display: grid;
  }

  .product-details {
    padding-bottom: 70px;
  }

  .product-panel h2,
  .product-service h2 {
    font-size: 2rem;
  }

  .product-spec {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-suggestions {
    padding-block: 70px;
  }

  .suggestion-card {
    flex-basis: 100%;
  }

  .destination-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .destination-card {
    padding: 10px;
  }

  .destination-card span {
    font-size: 0.72rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
