:root {
  --paper: #f7f4ee;
  --paper-light: #fffdfa;
  --ink: #10151d;
  --muted: #6f7379;
  --gold: #b8904f;
  --gold-light: #d7bd88;
  --line: rgba(16, 21, 29, 0.13);
  --dark: #0c1118;
  --radius: 3px;
  --shadow: 0 20px 70px rgba(20, 27, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

img {
  max-width: 100%;
}

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

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 253, 250, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: 0.3s ease;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 35px rgba(18, 24, 32, 0.06);
}

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 185px;
}

.brand__mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  line-height: 1;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -4px;
}

.brand__text {
  display: grid;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.brand__text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
}

.brand__text small {
  margin-top: 6px;
  font-size: 8px;
  color: var(--muted);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 29px;
}

.nav a {
  position: relative;
  padding: 31px 0 28px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.button {
  min-height: 50px;
  padding: 0 25px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: 0.25s ease;
}

.button:hover {
  background: #a27a3e;
  border-color: #a27a3e;
  transform: translateY(-2px);
}

.button--small {
  min-height: 40px;
  padding-inline: 19px;
}

.button--outline {
  background: transparent;
  color: var(--ink);
}

.button--outline:hover {
  color: white;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: 0.3s ease;
}

.hero {
  position: relative;
  min-height: 800px;
  padding-top: 82px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.98) 0%, rgba(255, 253, 250, 0.96) 42%, rgba(255, 253, 250, 0.35) 72%, rgba(255, 253, 250, 0.15) 100%),
    linear-gradient(135deg, #f6f0e6 0%, #e9edf0 53%, #c7d6da 100%);
}

.hero__background {
  position: absolute;
  inset: 0 0 0 48%;
  background:
    linear-gradient(145deg, transparent 0 35%, rgba(255,255,255,0.75) 35.2% 35.8%, transparent 36%),
    radial-gradient(circle at 72% 37%, rgba(77, 132, 145, 0.45), transparent 26%),
    radial-gradient(circle at 81% 20%, rgba(255, 255, 255, 0.95), transparent 20%),
    linear-gradient(150deg, #e8d7bf, #8eb1b9 42%, #526b76 42.4%, #d6e1df 68%, #b2c9ce);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.75;
}

.hero__background::before,
.hero__background::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(246, 249, 248, 0.88);
}

.hero__background::before {
  width: 440px;
  height: 90px;
  right: 3%;
  bottom: 17%;
  transform: rotate(-8deg);
}

.hero__background::after {
  width: 350px;
  height: 55px;
  right: 18%;
  bottom: 27%;
}

.hero__glow {
  position: absolute;
  z-index: 1;
  width: 620px;
  height: 620px;
  right: -100px;
  top: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.85), transparent 68%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 590px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.hero__content {
  padding-bottom: 48px;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hero h1 {
  max-width: 590px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 6.1vw, 92px);
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.hero h1 span {
  display: block;
  margin-top: 15px;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
}

.hero__lead {
  max-width: 530px;
  margin: 32px 0;
  color: #4f555c;
  font-size: 16px;
  line-height: 1.8;
}

.hero__advantages {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.hero__advantages div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__advantages span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 144, 79, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
}

.hero__advantages p {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero__vehicle {
  position: relative;
  height: 470px;
}

.vehicle-art {
  position: absolute;
  right: -30px;
  bottom: 45px;
  width: min(650px, 52vw);
  height: 310px;
  filter: drop-shadow(0 30px 26px rgba(10, 15, 20, 0.28));
}

.vehicle-art__roof {
  position: absolute;
  z-index: 3;
  left: 24%;
  top: 17%;
  width: 54%;
  height: 30%;
  border-radius: 45% 29% 7% 5% / 80% 55% 16% 15%;
  background: linear-gradient(160deg, #2c3136, #050709 70%);
  transform: skewX(-7deg);
}

.vehicle-art__windows {
  position: absolute;
  z-index: 4;
  left: 30%;
  top: 21%;
  width: 43%;
  height: 21%;
  border-radius: 35% 25% 4% 5%;
  background:
    linear-gradient(110deg, rgba(215, 231, 235, 0.7), rgba(36, 52, 61, 0.95) 34%, rgba(10, 18, 24, 0.96));
  box-shadow: inset 0 0 0 3px #10151b;
  transform: skewX(-8deg);
}

.vehicle-art__body {
  position: absolute;
  z-index: 5;
  left: 10%;
  bottom: 20%;
  width: 79%;
  height: 49%;
  border-radius: 32% 20% 13% 10% / 42% 39% 25% 24%;
  background:
    linear-gradient(175deg, rgba(255,255,255,0.25), transparent 16%),
    linear-gradient(160deg, #30353a 0%, #0e1115 44%, #030405 70%, #1e2328 100%);
  box-shadow:
    inset 0 3px 4px rgba(255,255,255,0.14),
    inset 0 -14px 24px rgba(0,0,0,0.85);
}

.vehicle-art__body::after {
  content: "";
  position: absolute;
  width: 43%;
  height: 63%;
  right: 9%;
  top: 8%;
  border-left: 1px solid rgba(255,255,255,0.09);
  border-right: 1px solid rgba(255,255,255,0.05);
}

.vehicle-art__grille {
  position: absolute;
  z-index: 7;
  left: 17%;
  bottom: 32%;
  width: 25%;
  height: 25%;
  display: grid;
  place-items: center;
  border-radius: 42% 18% 22% 26%;
  border: 2px solid #74787b;
  background:
    repeating-linear-gradient(0deg, #1e2225 0 3px, #050607 3px 6px);
  transform: skewX(-7deg);
}

.vehicle-art__grille span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 2px solid #d2d5d6;
  border-radius: 50%;
  color: #d2d5d6;
  font-size: 24px;
}

.vehicle-art__light {
  position: absolute;
  z-index: 8;
  bottom: 44%;
  height: 10%;
  background: linear-gradient(90deg, #dffaff, #7aa6b5);
  box-shadow: 0 0 18px rgba(178, 232, 247, 0.8);
}

.vehicle-art__light--left {
  left: 12%;
  width: 18%;
  clip-path: polygon(0 10%, 100% 0, 76% 100%, 10% 78%);
}

.vehicle-art__light--right {
  left: 43%;
  width: 12%;
  clip-path: polygon(0 0, 100% 15%, 82% 79%, 15% 100%);
}

.vehicle-art__wheel {
  position: absolute;
  z-index: 9;
  bottom: 8%;
  width: 92px;
  height: 92px;
  border: 15px solid #111417;
  border-radius: 50%;
  background:
    radial-gradient(circle, #c2c5c7 0 12%, #43484d 13% 27%, #94999c 28% 33%, #16191c 34%);
  box-shadow: inset 0 0 0 4px #030405;
}

.vehicle-art__wheel--left {
  left: 19%;
}

.vehicle-art__wheel--right {
  right: 16%;
}

.vehicle-art__shadow {
  position: absolute;
  z-index: 1;
  left: 9%;
  bottom: 1%;
  width: 83%;
  height: 15%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  filter: blur(13px);
}

.vehicle-art__shine {
  position: absolute;
  z-index: 10;
  left: 21%;
  top: 26%;
  width: 56%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  transform: rotate(-3deg);
}

.hero__vehicle-caption {
  position: absolute;
  right: 30px;
  bottom: 7px;
  display: grid;
  text-align: right;
}

.hero__vehicle-caption span {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero__vehicle-caption strong {
  margin-top: 2px;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 600;
}

.reservation-wrap {
  position: relative;
  z-index: 5;
}

.reservation {
  min-height: 112px;
  padding: 21px;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 0.8fr auto;
  align-items: end;
  gap: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.7);
}

.reservation label {
  padding: 0 16px;
  border-right: 1px solid var(--line);
}

.reservation label span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.reservation input,
.reservation select {
  width: 100%;
  min-height: 34px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
}

.reservation .button {
  min-height: 54px;
}

.section {
  padding: 110px 0;
}

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

.section-heading > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.section-heading h2,
.contact h2 {
  margin: 12px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 0.98;
  font-weight: 600;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.destinations {
  background: var(--paper-light);
}

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

.destination-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  transition: 0.4s ease;
}

.destination-card:hover {
  transform: translateY(-7px);
}

.destination-card--azur {
  background:
    linear-gradient(140deg, rgba(20,55,69,0.15), rgba(20,55,69,0.05)),
    linear-gradient(150deg, #6ea6b4 0%, #b9d3d5 36%, #eee6d2 36.5%, #43707a 65%, #d7edf0);
}

.destination-card--paris {
  background:
    linear-gradient(150deg, rgba(102,72,48,0.16), transparent),
    linear-gradient(155deg, #d8c6ad 0%, #eee6db 42%, #9b8c7c 42.5%, #d8cfc2 70%, #93a1a6);
}

.destination-card--suisse {
  background:
    linear-gradient(140deg, transparent, rgba(14,35,52,0.28)),
    linear-gradient(155deg, #e5ecee 0%, #92aab4 38%, #3c5361 38.5%, #dce7e8 63%, #688e9c);
}

.destination-card::before,
.destination-card::after {
  content: "";
  position: absolute;
}

.destination-card::before {
  width: 110%;
  height: 42%;
  left: -5%;
  bottom: -13%;
  border-radius: 50%;
  background: rgba(255,255,255,0.83);
  transform: rotate(-6deg);
}

.destination-card::after {
  width: 55%;
  height: 48%;
  right: 5%;
  bottom: 19%;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: rgba(39, 64, 72, 0.24);
}

.destination-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(7,12,17,0.75), transparent 65%);
}

.destination-card__content {
  position: absolute;
  z-index: 3;
  right: 25px;
  bottom: 23px;
  left: 25px;
  color: white;
}

.destination-card__content > span {
  color: var(--gold-light);
  font-size: 10px;
}

.destination-card h3 {
  margin: 4px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
}

.destination-card p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 11px;
}

.fleet {
  background: var(--paper);
}

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

.fleet-card {
  position: relative;
  min-height: 500px;
  padding: 32px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  overflow: hidden;
}

.fleet-card--featured {
  border-color: rgba(184, 144, 79, 0.55);
  box-shadow: var(--shadow);
}

.fleet-card__top {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.fleet-card__label {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  text-transform: uppercase;
}

.fleet-card__year {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 500;
}

.mini-vehicle {
  position: relative;
  height: 265px;
  margin: 22px 0 5px;
}

.mini-vehicle__body {
  position: absolute;
  left: 7%;
  top: 29%;
  width: 85%;
  height: 43%;
  border-radius: 29% 20% 12% 12% / 45% 38% 24% 23%;
  background:
    linear-gradient(170deg, rgba(255,255,255,0.23), transparent 19%),
    linear-gradient(155deg, #3a4045, #080a0c 53%, #20252a);
  filter: drop-shadow(0 26px 17px rgba(5,9,12,0.22));
}

.mini-vehicle__window {
  position: absolute;
  left: 29%;
  top: 22%;
  width: 49%;
  height: 25%;
  transform: skewX(-8deg);
  border-radius: 31% 18% 5% 7%;
  background: linear-gradient(140deg, #9eb2bb, #12202a 50%);
  border: 5px solid #171b1f;
}

.mini-vehicle__wheel {
  position: absolute;
  top: 57%;
  width: 62px;
  height: 62px;
  border: 11px solid #111519;
  border-radius: 50%;
  background: radial-gradient(circle, #c0c3c4 0 18%, #555b60 19% 33%, #111519 34%);
}

.mini-vehicle__wheel--one {
  left: 19%;
}

.mini-vehicle__wheel--two {
  right: 14%;
}

.mini-vehicle--new {
  transform: scaleX(-1);
}

.fleet-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 22px;
}

.fleet-card__features span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.services {
  padding: 66px 0;
  background: var(--dark);
  color: white;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.services article {
  min-height: 170px;
  padding: 25px 30px;
  border-right: 1px solid rgba(255,255,255,0.11);
}

.services article:last-child {
  border-right: 0;
}

.service-icon {
  display: block;
  margin-bottom: 25px;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}

.services h3 {
  margin: 0 0 9px;
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 600;
}

.services p {
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  line-height: 1.7;
}

.contact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact h2 {
  max-width: 660px;
}

.contact__actions {
  flex-shrink: 0;
  display: flex;
  gap: 12px;
}

.footer {
  padding: 70px 0 24px;
  background: #090d12;
  color: white;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}

.brand--footer {
  margin-bottom: 20px;
}

.footer p {
  max-width: 310px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  line-height: 1.8;
}

.footer__grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__grid strong {
  margin-bottom: 6px;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
}

.footer__grid a,
.footer__grid span {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
}

.footer__grid a:hover {
  color: white;
}

.footer__bottom {
  margin-top: 55px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.35);
  font-size: 10px;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 25px;
  bottom: 25px;
  max-width: 390px;
  padding: 17px 22px;
  color: white;
  background: var(--dark);
  box-shadow: var(--shadow);
  font-size: 12px;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.3s ease;
}

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

@media (max-width: 1020px) {
  .header__button {
    display: none;
  }

  .nav {
    gap: 20px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

  .hero__content {
    position: relative;
    z-index: 5;
    max-width: 600px;
  }

  .hero__vehicle {
    position: absolute;
    right: -220px;
    bottom: 0;
    width: 700px;
    opacity: 0.45;
  }

  .vehicle-art {
    width: 680px;
  }

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

  .reservation .button {
    grid-column: span 2;
  }

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

  .services article:nth-child(2) {
    border-right: 0;
  }

  .services article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,0.11);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .header__inner {
    min-height: 70px;
  }

  .menu-button {
    position: relative;
    z-index: 120;
    display: block;
    margin-left: auto;
  }

  .menu-open .menu-button span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-button span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    padding: 110px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--paper-light);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: 0.3s ease;
  }

  .menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    width: 100%;
    padding: 15px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 600;
    text-transform: none;
  }

  .nav a::after {
    display: none;
  }

  .hero {
    padding-top: 70px;
    min-height: auto;
  }

  .hero__inner {
    min-height: 625px;
    align-items: start;
    padding-top: 90px;
  }

  .hero h1 {
    font-size: clamp(52px, 17vw, 76px);
  }

  .hero__lead {
    max-width: 92%;
    font-size: 14px;
  }

  .hero__advantages {
    display: grid;
    gap: 12px;
  }

  .hero__vehicle {
    right: -390px;
    bottom: -15px;
    opacity: 0.28;
  }

  .hero__background {
    inset: 0;
    clip-path: none;
    opacity: 0.35;
  }

  .reservation-wrap {
    width: 100%;
  }

  .reservation {
    padding: 22px 18px;
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .reservation label {
    padding: 0 0 13px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .reservation .button {
    grid-column: auto;
  }

  .section {
    padding: 78px 0;
  }

  .destination-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .destination-card {
    min-height: 245px;
  }

  .fleet-card {
    min-height: 450px;
    padding: 25px 19px;
  }

  .mini-vehicle {
    height: 235px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .services article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.11);
  }

  .services article:last-child {
    border-bottom: 0;
  }

  .contact__inner {
    display: block;
  }

  .contact__actions {
    margin-top: 32px;
    flex-direction: column;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid > div:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .brand {
    min-width: auto;
  }

  .hero__advantages p {
    font-size: 10px;
  }

  .fleet-card__year {
    font-size: 30px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid > div:first-child {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
}


/* === PHOTOS TRANFER PRESTIGE === */
.hero__vehicle {
  background: url('/assets/hero-mercedes.jpg') center / contain no-repeat;
  min-height: 470px;
}
.hero__vehicle .vehicle-art,
.hero__vehicle .hero__vehicle-caption {
  display: none !important;
}
.destination-card--azur {
  background: url('/assets/cote-azur.jpg') center / cover no-repeat !important;
}
.destination-card--paris {
  background: url('/assets/paris.jpg') center / cover no-repeat !important;
}
.destination-card--suisse {
  background: url('/assets/suisse.jpg') center / cover no-repeat !important;
}
.fleet-card:first-child .mini-vehicle {
  background: url('/assets/mercedes-v-2023.jpg') center / contain no-repeat;
}
.fleet-card:nth-child(2) .mini-vehicle {
  background: url('/assets/mercedes-v-2026.jpg') center / contain no-repeat;
  transform: none !important;
}
.mini-vehicle > * {
  display: none !important;
}
@media (max-width: 1020px) {
  .hero__vehicle {
    right: -120px;
    width: 650px;
    opacity: .62;
    background-position: center;
  }
}
@media (max-width: 760px) {
  .hero__vehicle {
    right: -220px;
    width: 620px;
    opacity: .32;
  }
}

/* TP REAL IMAGES START */
.hero__vehicle {
  background: url('/assets/hero-mercedes.png') center / contain no-repeat;
  min-height: 470px;
}
.hero__vehicle .vehicle-art {
  display: none !important;
}
.hero__vehicle-caption {
  display: none !important;
}

.destination-card--azur {
  background-image: linear-gradient(0deg, rgba(7,12,17,.72), rgba(7,12,17,.05) 72%), url('/assets/cote-azur.png') !important;
  background-size: cover !important;
  background-position: center !important;
}
.destination-card--paris {
  background-image: linear-gradient(0deg, rgba(7,12,17,.72), rgba(7,12,17,.05) 72%), url('/assets/paris.png') !important;
  background-size: cover !important;
  background-position: center !important;
}
.destination-card--suisse {
  background-image: linear-gradient(0deg, rgba(7,12,17,.72), rgba(7,12,17,.05) 72%), url('/assets/suisse-geneve.png') !important;
  background-size: cover !important;
  background-position: center !important;
}
.destination-card::before,
.destination-card::after {
  display: none !important;
}

.fleet-card:nth-child(1) .mini-vehicle {
  background: url('/assets/mercedes-v-2023.png') center / contain no-repeat;
}
.fleet-card:nth-child(2) .mini-vehicle {
  background: url('/assets/mercedes-v-2026.png') center / contain no-repeat;
  transform: none !important;
}
.mini-vehicle > * {
  display: none !important;
}

@media (max-width: 1020px) {
  .hero__vehicle {
    right: -120px !important;
    width: 650px !important;
    opacity: .78 !important;
    background-size: contain !important;
  }
}
@media (max-width: 760px) {
  .hero__vehicle {
    right: -260px !important;
    width: 620px !important;
    opacity: .35 !important;
  }
}
/* TP REAL IMAGES END */

/* Кнопка WhatsApp */
.whatsapp-floating {
  position: fixed;
  z-index: 9999;
  left: 22px;
  bottom: 22px;
  min-height: 56px;
  padding: 7px 18px 7px 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.whatsapp-floating:hover {
  color: #ffffff;
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
}

.whatsapp-floating__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.whatsapp-floating__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-floating__text {
  white-space: nowrap;
}

@media (max-width: 600px) {
  .whatsapp-floating {
    left: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 7px;
    justify-content: center;
  }

  .whatsapp-floating__text {
    display: none;
  }
}

/* Удаление декоративного свечения и белых пятен за главным изображением */
.hero__glow,
.hero__background::before,
.hero__background::after {
  display: none !important;
}

.hero__background {
  background: #dbe4e5 !important;
}

.hero__vehicle,
.hero__vehicle img,
.hero__vehicle picture {
  filter: none !important;
}

/* WhatsApp в стиле Tranfer Prestige */
.whatsapp-floating {
  position: fixed;
  z-index: 9999;
  left: 24px;
  bottom: 24px;

  min-height: 54px;
  padding: 7px 20px 7px 8px;

  display: inline-flex;
  align-items: center;
  gap: 11px;

  border: 1px solid rgba(184, 144, 79, 0.65);
  border-radius: 2px;

  background: rgba(12, 17, 24, 0.96);
  color: #ffffff;

  box-shadow:
    0 18px 45px rgba(12, 17, 24, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);

  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;

  backdrop-filter: blur(12px);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-floating:hover {
  color: #ffffff;
  background: #b8904f;
  border-color: #b8904f;
  transform: translateY(-3px);

  box-shadow:
    0 22px 50px rgba(12, 17, 24, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.whatsapp-floating__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(184, 144, 79, 0.7);
  border-radius: 50%;

  background: transparent;
  color: #d7bd88;
}

.whatsapp-floating:hover .whatsapp-floating__icon {
  border-color: rgba(255, 255, 255, 0.65);
  color: #ffffff;
}

.whatsapp-floating__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp-floating__text {
  white-space: nowrap;
}

@media (max-width: 600px) {
  .whatsapp-floating {
    left: 14px;
    bottom: 14px;

    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 7px;

    justify-content: center;
    border-radius: 50%;
  }

  .whatsapp-floating__icon {
    width: 38px;
    height: 38px;
  }

  .whatsapp-floating__text {
    display: none;
  }
}

/* =========================================================
   Реальные фотографии направлений
   ========================================================= */

.destination-card {
  min-height: 290px !important;
  border: 1px solid rgba(184, 144, 79, 0.16) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  box-shadow: 0 18px 42px rgba(20, 27, 35, 0.08) !important;
}

.destination-card--azur {
  background-image: url("/assets/cote-azur.png") !important;
}

.destination-card--paris {
  background-image: url("/assets/paris.png") !important;
}

.destination-card--suisse {
  background-image: url("/assets/suisse-geneve.png") !important;
}

.destination-card::before,
.destination-card::after {
  display: none !important;
}

.destination-card__overlay {
  display: block !important;
  background:
    linear-gradient(
      180deg,
      rgba(8, 13, 18, 0.02) 20%,
      rgba(8, 13, 18, 0.15) 55%,
      rgba(8, 13, 18, 0.84) 100%
    ) !important;
}

.destination-card__content {
  right: 28px !important;
  bottom: 25px !important;
  left: 28px !important;
}

.destination-card h3 {
  margin: 5px 0 4px !important;
  color: #ffffff !important;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.24) !important;
}

.destination-card p {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* =========================================================
   Реальные фотографии автомобилей
   ========================================================= */

.mini-vehicle {
  height: 285px !important;
  margin: 16px 0 12px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
}

.fleet-card:first-child .mini-vehicle {
  background-image: url("/assets/mercedes-v-2023.png") !important;
}

.fleet-card:nth-child(2) .mini-vehicle {
  background-image: url("/assets/mercedes-v-2026.png") !important;
  transform: none !important;
}

.mini-vehicle__body,
.mini-vehicle__window,
.mini-vehicle__wheel {
  display: none !important;
}

.fleet-card {
  min-height: 535px !important;
  display: flex !important;
  flex-direction: column !important;
}

.fleet-card__features {
  margin-top: auto !important;
}

.fleet-card .button {
  align-self: flex-start !important;
}

/* Лёгкая подложка под машину */
.mini-vehicle::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 13%;
  right: 13%;
  bottom: 12%;
  height: 14%;
  border-radius: 50%;
  background: rgba(12, 17, 24, 0.14);
  filter: blur(18px);
}

/* =========================================================
   Адаптивность
   ========================================================= */

@media (max-width: 760px) {
  .destination-card {
    min-height: 260px !important;
  }

  .destination-card__content {
    right: 20px !important;
    bottom: 20px !important;
    left: 20px !important;
  }

  .mini-vehicle {
    height: 245px !important;
  }

  .fleet-card {
    min-height: 480px !important;
  }
}

@media (max-width: 430px) {
  .destination-card {
    min-height: 230px !important;
  }

  .mini-vehicle {
    height: 215px !important;
  }
}

/* =========================================================
   Юридические страницы
   ========================================================= */

.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f7f4ee;
}

.legal-header {
  position: relative;
  z-index: 10;
  background: #fffdfa;
  border-bottom: 1px solid rgba(16, 21, 29, 0.12);
}

.legal-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.legal-main {
  flex: 1;
  padding: 90px 0 110px;
}

.legal-container {
  max-width: 900px;
}

.legal-main h1 {
  max-width: 760px;
  margin: 0 0 55px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(50px, 7vw, 78px);
  line-height: 0.95;
  font-weight: 600;
}

.legal-content {
  padding: 55px;
  background: #fffdfa;
  border: 1px solid rgba(16, 21, 29, 0.12);
  box-shadow: 0 20px 70px rgba(20, 27, 35, 0.08);
}

.legal-content section + section {
  margin-top: 48px;
  padding-top: 42px;
  border-top: 1px solid rgba(16, 21, 29, 0.12);
}

.legal-content h2 {
  margin: 0 0 18px;
  color: #10151d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 600;
}

.legal-content p,
.legal-content li,
.legal-content dd,
.legal-content dt {
  font-size: 14px;
  line-height: 1.85;
}

.legal-content p,
.legal-content li,
.legal-content dd {
  color: #62676e;
}

.legal-content a {
  color: #9c743b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-warning {
  margin: 0 0 35px;
  padding: 18px 20px;
  border-left: 3px solid #b8904f;
  background: rgba(184, 144, 79, 0.09);
  color: #6e542e;
  font-size: 13px;
  line-height: 1.65;
}

.legal-data {
  display: grid;
  grid-template-columns: 210px 1fr;
  margin: 25px 0 0;
  border-top: 1px solid rgba(16, 21, 29, 0.12);
}

.legal-data dt,
.legal-data dd {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(16, 21, 29, 0.12);
}

.legal-data dt {
  color: #10151d;
  font-weight: 600;
}

.legal-footer {
  padding: 28px 0;
  background: #090d12;
  color: rgba(255, 255, 255, 0.5);
}

.legal-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
}

.legal-footer__inner div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.legal-footer a:hover {
  color: #ffffff;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__grid {
  grid-template-columns: 1.4fr repeat(4, 1fr);
}

@media (max-width: 1000px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid > div:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .legal-header__inner {
    min-height: 70px;
  }

  .legal-header .button {
    padding-inline: 13px;
    font-size: 8px;
  }

  .legal-main {
    padding: 65px 0 80px;
  }

  .legal-content {
    padding: 28px 20px;
  }

  .legal-data {
    grid-template-columns: 1fr;
  }

  .legal-data dt {
    padding-bottom: 2px;
    border-bottom: 0;
  }

  .legal-data dd {
    padding-top: 2px;
  }

  .legal-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-footer__inner div {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid > div:first-child {
    grid-column: auto;
  }
}
