:root {
  --white: #fff;
  --ink: #151515;
  --muted: #6f6a62;
  --soft: #f7f4ee;
  --gold: #b98b43;
  --gold-dark: #80602f;
  --gold-light: #ead8b4;
  --sand: #d8c3a0;
  --line: rgba(21, 21, 21, 0.12);
  --max: 1180px;
  --shadow: 0 28px 70px rgba(28, 22, 15, 0.13);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto auto;
  align-items: center;
  width: 100%;
  margin: 0;
  min-height: 84px;
  padding: 7px max(22px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(90deg, #9f7537 0%, #c59a55 45%, #8f642a 100%);
  box-shadow: 0 12px 34px rgba(68, 44, 14, 0.12);
}

.brand {
  width: fit-content;
}

.brand img {
  width: auto;
  height: 76px;
  max-width: 210px;
  object-fit: contain;
}

.nav-toggle,
.menu-toggle {
  display: none;
}

.nav-lang {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 12px 2px;
  text-shadow: 0 1px 14px rgba(255, 255, 255, 0.18);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.65);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.main-nav a.nav-price {
  font-size: 1.04em;
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 2px 5px;
  border: 0;
  border-bottom: 3px solid var(--gold-light);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-right: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lang-switch a {
  position: relative;
  padding: 8px 0;
}

.lang-switch a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: rgba(255, 255, 255, 0.78);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.lang-switch a:hover::after,
.lang-switch a.active::after {
  transform: scaleX(1);
}

.hero {
  width: 100%;
}

.hero-frame {
  position: relative;
  min-height: min(64vw, 680px);
  overflow: hidden;
  background: #1b1a18;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  opacity: 0;
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.03);
  transition: opacity 1100ms ease, transform 6200ms ease;
}

.hero-slider img:first-child,
.hero-slider.is-ready img.is-active {
  opacity: 1;
  transform: scale(1.11) translate3d(1.1%, -0.8%, 0);
}

.hero-slider.is-ready img {
  opacity: 0;
}

.hero-slider.is-ready img.is-active {
  opacity: 1;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.36) 38%, rgba(0, 0, 0, 0.06) 68%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.1) 58%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 44px));
  min-height: inherit;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 84px 0 126px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e0bd82;
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.hero .eyebrow span {
  color: var(--white);
}

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

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 6.1vw, 5.85rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-claim span {
  position: relative;
  display: inline-block;
  color: #7ab7ed;
  text-shadow: 0 0 26px rgba(77, 157, 221, 0.22);
}

.hero-claim span::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: -0.05em;
  bottom: -0.1em;
  height: 0.18em;
  border-bottom: 3px solid #4b9cdb;
  border-radius: 50%;
  transform: rotate(-2deg);
  opacity: 0.92;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.95rem, 3.5vw, 3.55rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 500;
}

.intro h2,
.section-heading h2 {
  font-size: clamp(2rem, 3.1vw, 3.35rem);
  line-height: 1.06;
}

.service-copy h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.38;
  font-weight: 300;
}

.hero-rotator {
  position: relative;
  width: min(620px, 100%);
  min-height: 3.4em;
  margin-top: 8px;
}

.hero-rotator p {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.38;
  font-weight: 300;
  opacity: 0;
  transform: translateY(10px);
  animation: heroTextRotate 16s infinite;
}

.hero-rotator p:nth-child(2) {
  animation-delay: 4s;
}

.hero-rotator p:nth-child(3) {
  animation-delay: 8s;
}

.hero-rotator p:nth-child(4) {
  animation-delay: 12s;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: #15110b;
}

.button.light {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.post-booking {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding-top: 22px;
  padding-bottom: 72px;
}

.gold-divider {
  width: min(var(--max), calc(100% - 44px));
  height: 2px;
  margin: 0 auto 34px;
  background: linear-gradient(90deg, rgba(185, 139, 67, 0), var(--gold), rgba(185, 139, 67, 0));
}

.why {
  padding-top: 4px;
}

.why-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
  padding: clamp(26px, 3.4vw, 42px);
  background: var(--white);
}

.why-heading h2 {
  position: relative;
  max-width: 360px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  font-size: clamp(1.35rem, 1.85vw, 1.8rem);
  line-height: 1.15;
  font-weight: 700;
}

.why-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(185, 139, 67, 0));
}

.why-heading p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

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

.why-photo {
  min-height: 330px;
  overflow: hidden;
}

.why-photo img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.why-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
  padding: clamp(26px, 3.4vw, 42px);
  background: var(--white);
}

.why-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 1.85vw, 1.8rem);
  line-height: 1.15;
  font-weight: 700;
}

.why-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.74;
}

@keyframes heroTextRotate {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  8%,
  22% {
    opacity: 1;
    transform: translateY(0);
  }

  30%,
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider img,
  .vehicle-slider img {
    transition: none;
  }

  .hero-rotator p {
    position: static;
    display: none;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-rotator p:first-child {
    display: block;
  }
}

.intro,
.services,
.pricing,
.fleet,
.standard,
.contact {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.booking {
  width: 100%;
}

#rezervace,
#sluzby,
#cenik,
#vozy,
#kontakt {
  scroll-margin-top: 104px;
}

.booking {
  display: block;
  padding: 0;
  background: linear-gradient(90deg, #b98b43 0%, #d6bb84 52%, #a77b38 100%);
}

.booking-form-wrap {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
  border-top: 0;
  border-bottom: 0;
  padding: 28px 0;
}

.booking-title {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.booking-title h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.22rem, 1.75vw, 1.72rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--white);
}

.booking-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.booking-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 42px;
  width: auto;
  border: 0;
  border-bottom: 3px solid var(--gold-light);
  border-radius: 0;
  padding: 0 22px 0 28px;
  background: #6f4f1e;
  color: var(--white);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.booking-open span {
  color: inherit;
}

.booking-open svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.88);
  color: #6f4f1e;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.booking-open:hover,
.booking-open:focus-visible {
  color: var(--white);
  border-color: var(--white);
  background: #4f3713;
  outline: 0;
  transform: translateX(2px);
}

.booking-open:hover svg,
.booking-open:focus-visible svg {
  background: var(--white);
  color: #4f3713;
  transform: translateX(3px);
}

.booking.has-open-form .booking-open {
  display: none;
}

.booking-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-bottom: 2px solid #15110b;
  border-radius: 0;
  background: transparent;
  color: #15110b;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.booking.has-open-form .booking-close {
  display: inline-flex;
  justify-self: end;
}

.booking-panel {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  margin-top: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.booking.has-open-form .booking-panel {
  display: grid;
}

.booking-fields {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.booking-fields.is-active {
  display: grid;
}

.booking-note {
  grid-column: 1 / -1;
}

.booking-panel label {
  display: grid;
  gap: 7px;
  padding: 0;
  border-right: 0;
}

.booking-panel span {
  color: #18130b;
  font-size: 0.9rem;
  font-weight: 500;
}

.booking-panel input,
.booking-panel select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(21, 21, 21, 0.16);
  border-radius: 3px;
  outline: 0;
  padding: 0 14px;
  color: #302d28;
  background: var(--white);
}

.booking-panel button {
  display: none;
  align-items: center;
  justify-self: start;
  grid-column: 1 / -1;
  height: 44px;
  margin-top: 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #050505;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.booking.has-open-form .booking-panel button {
  display: inline-flex;
}

.booking-panel button span {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 0;
  background: #6f4f1e;
  color: var(--white);
  font-weight: 700;
}

.booking-panel button:hover {
  transform: translateX(2px);
}

.booking-panel button:hover span {
  background: #4f3713;
}

.form-hp,
.booking-panel .form-hp,
.contact .form-hp {
  position: absolute !important;
  display: block !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.form-hp input,
.booking-panel .form-hp input,
.contact .form-hp input {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(5, 5, 5, 0.54);
}

.form-modal.is-visible {
  display: grid;
}

.form-modal-box {
  position: relative;
  width: min(440px, 100%);
  padding: 34px 34px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.form-modal-box h2 {
  margin: 0 42px 12px 0;
  font-size: 1.55rem;
}

.form-modal-box p {
  margin: 0;
  color: #302d28;
  line-height: 1.6;
}

.form-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  background: #6f4f1e;
  color: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
}


.intro {
  padding-bottom: 128px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 100px;
}

.intro-grid p {
  margin: 14px 0 0;
  color: #3c3935;
  font-size: 1.05rem;
  line-height: 1.82;
}

.intro-points {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--gold-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.intro-points li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}

.section-heading {
  max-width: none;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 4.2vw, 4.45rem);
  line-height: 0.98;
  font-weight: 800;
}

.section-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.45;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.services {
  padding-top: 86px;
  padding-bottom: 34px;
}

.service-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 28px;
}

.service-media {
  overflow: hidden;
  background: var(--soft);
}

.service-media img {
  height: 310px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
}

.service-stack > h3 {
  min-height: auto;
  margin: 0;
  padding: 2px 0 0;
  font-size: clamp(1.35rem, 1.75vw, 1.75rem);
  line-height: 1.1;
  font-weight: 700;
}

.service-copy {
  min-height: 255px;
  padding: 0;
}

.service-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.vehicle-card p {
  display: block;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.service-copy a {
  color: var(--gold-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.pricing {
  padding-bottom: 72px;
}

.pricing .section-heading h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  padding-bottom: 16px;
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  line-height: 1.08;
  font-weight: 800;
}

.pricing .section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(185, 139, 67, 0));
}

.pricing .section-heading p {
  max-width: none;
  white-space: nowrap;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.price-table {
  padding-top: 24px;
}

.price-table:first-child {
  padding-right: 34px;
}

.price-table:nth-child(2) {
  padding-left: 34px;
  border-left: 1px solid rgba(185, 139, 67, 0.55);
}

.price-table h3 {
  min-height: 2.4em;
  margin-bottom: 26px;
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.2;
  font-weight: 700;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(130px, 0.56fr) minmax(140px, 0.62fr);
  gap: 28px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.price-row span {
  color: #302d28;
  font-weight: 700;
}

.price-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.price-row strong {
  min-height: 100%;
  padding-left: 24px;
  border-left: 1px solid rgba(185, 139, 67, 0.45);
  color: var(--gold-dark);
  font-size: 0.98rem;
  text-align: right;
}

.price-head {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-head span {
  color: var(--muted);
}

.price-head span:nth-child(2),
.price-head span:nth-child(3) {
  padding-left: 24px;
  border-left: 1px solid rgba(185, 139, 67, 0.45);
}

.price-note {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.fleet {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  padding-bottom: 112px;
}

.fleet-title {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.fleet-title h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 16px;
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  line-height: 1.08;
  font-weight: 800;
}

.fleet-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(185, 139, 67, 0));
}

.vehicle-profile {
  display: grid;
  grid-template-rows: auto auto auto auto auto auto;
  gap: 22px;
  align-content: start;
}

.vehicle-head {
  display: block;
  text-align: center;
}

.vehicle-head h2 {
  max-width: 560px;
  margin-inline: auto;
  font-size: clamp(1.35rem, 1.85vw, 1.8rem);
  line-height: 1.15;
  font-weight: 700;
}

.vehicle-text {
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.52;
  text-align: center;
}

.vehicle-main-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--white);
}

.vehicle-facts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.vehicle-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(21, 21, 21, 0.7);
  color: #151515;
  font-size: 0.92rem;
  font-weight: 700;
}

.vehicle-facts .vehicle-badge {
  border-color: rgba(21, 21, 21, 0.28);
  background: rgba(21, 21, 21, 0.55);
  color: var(--white);
  font-size: 0.82rem;
  text-transform: none;
}

.vehicle-facts svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vehicle-profile > a {
  justify-self: center;
  min-height: 42px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #6f4f1e;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.vehicle-profile > a:hover {
  background: #4f3713;
  color: var(--white);
}

.vehicle-slider {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--soft);
}

.vehicle-slider img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 850ms ease, transform 4200ms ease;
}

.vehicle-slider img:first-child,
.vehicle-slider.is-ready img.is-active {
  opacity: 1;
  transform: scale(1.055);
}

.vehicle-slider.is-ready img {
  opacity: 0;
}

.vehicle-slider.is-ready img.is-active {
  opacity: 1;
}

.fleet-gallery {
  display: none;
  gap: 76px;
  padding-top: 82px;
}

.gallery-block {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 24px;
}

.gallery-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.photo-slider {
  display: grid;
  grid-auto-columns: minmax(260px, 34%);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) rgba(21, 21, 21, 0.08);
}

.photo-slider img {
  height: 260px;
  border-radius: 6px;
  object-fit: cover;
  scroll-snap-align: start;
  background: var(--soft);
}

.standard {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1.05fr;
  gap: 52px;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding: 62px max(22px, calc((100vw - var(--max)) / 2));
  border-radius: 0;
  background: var(--sand);
}

.standard h2 {
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1.16;
  font-weight: 700;
}

.standard ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #3d362b;
  font-weight: 700;
  list-style: none;
}

.standard li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 11px;
  border-radius: 50%;
  background: var(--gold-dark);
  vertical-align: middle;
}

.standard img {
  height: 320px;
  border-radius: 6px;
  object-fit: cover;
}

.quote {
  padding: 118px max(22px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.76)),
    url("assets/superb/superb-08.jpg") center / cover no-repeat;
  text-align: center;
}

.quote p {
  color: var(--sand);
  font-weight: 800;
}

.quote h2 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(1.65rem, 2.65vw, 2.85rem);
  line-height: 1.08;
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 70px;
  padding: 106px 0 122px;
}

.contact h2 {
  margin-bottom: 28px;
  font-size: clamp(1.65rem, 2.55vw, 2.85rem);
  line-height: 1.08;
}

.contact-details {
  display: grid;
  gap: 14px;
  color: #302d28;
}

.contact-details a,
.contact-details p {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0;
  color: #211b13;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.55;
}

.contact-details svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-details a:hover {
  color: var(--gold-dark);
}

.contact form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact input,
.contact textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: 0;
  padding: 14px 15px;
  background: var(--white);
}

.contact textarea {
  grid-column: 1 / -1;
  min-height: 132px;
  resize: vertical;
}

.contact button {
  justify-self: start;
  min-height: 42px;
  border-radius: 0;
  background: #6f4f1e;
  color: var(--white);
  transition: background 160ms ease, color 160ms ease;
}

.contact button:hover {
  background: #4f3713;
  color: var(--white);
}

.site-footer {
  padding: 62px max(22px, calc((100vw - var(--max)) / 2)) 30px;
  background: #171d21;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.15fr 0.7fr;
  gap: 58px;
  align-items: start;
}

.footer-logo img {
  width: auto;
  height: 82px;
  max-width: 220px;
  object-fit: contain;
}

.footer-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 26px;
  justify-items: end;
}

.footer-links nav {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--gold-light);
}

.footer-lang {
  display: flex;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-lang .active {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 18;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 0;
  background: #6f4f1e;
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 22;
  width: min(360px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(18, 14, 10, 0.14);
  color: #211b13;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent:not([hidden]) + .back-to-top {
  display: none;
}

.cookie-consent p {
  margin: 0;
  color: #332d24;
  font-size: 0.82rem;
  line-height: 1.55;
}

.cookie-consent strong {
  color: #15110b;
  font-weight: 800;
}

.cookie-settings {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(21, 21, 21, 0.08);
}

.cookie-settings[hidden] {
  display: none;
}

.cookie-settings label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #332d24;
  font-size: 0.8rem;
  font-weight: 700;
}

.cookie-settings input {
  width: 14px;
  height: 14px;
  accent-color: #6f4f1e;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}

.cookie-actions button {
  min-height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #6f4f1e;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.cookie-actions button:hover {
  color: #15110b;
}

.cookie-actions [data-cookie-accept] {
  padding: 0 14px;
  background: #6f4f1e;
  color: var(--white);
}

.cookie-actions [data-cookie-accept]:hover {
  background: #4f3713;
  color: var(--white);
}

@media (min-width: 961px) {
  .back-to-top {
    display: inline-flex;
  }

  .back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .menu-toggle {
    justify-self: end;
    display: grid;
    grid-template-columns: auto 24px;
    gap: 5px 10px;
    align-items: center;
    width: auto;
    padding: 10px 0 10px 16px;
    cursor: pointer;
    color: var(--white);
  }

  .menu-toggle strong {
    grid-row: 1 / 3;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 3;
    justify-content: start;
    gap: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
  }

  .main-nav a {
    display: block;
    padding: 14px 0;
  }

  .nav-lang {
    display: flex;
    gap: 18px;
    padding: 16px 0 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .nav-lang a {
    padding: 4px 0;
  }

  .nav-toggle:checked ~ .main-nav {
    display: grid;
  }

  .lang-switch {
    display: none;
  }

  .nav-cta {
    grid-column: 2 / 4;
    grid-row: 2;
  }

  .hero-frame {
    min-height: 720px;
  }

  .hero-content {
    padding-bottom: 220px;
  }

  .why-heading,
  .why-grid,
  .pricing-grid,
  .fleet,
  .footer-grid,
  .service-stack,
  .booking-panel,
  .booking,
  .intro-grid,
  .vehicle-head,
  .standard,
  .gallery-heading,
  .contact {
    grid-template-columns: 1fr;
  }

  .booking-panel label {
    border-right: 0;
    border-bottom: 0;
  }

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

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

  .why-copy {
    min-height: auto;
  }

  .why-photo {
    min-height: 300px;
  }

  .service-stack > :nth-child(1) {
    order: 1;
  }

  .service-stack > :nth-child(4) {
    order: 2;
  }

  .service-stack > :nth-child(7) {
    order: 3;
  }

  .service-stack > :nth-child(2) {
    order: 4;
  }

  .service-stack > :nth-child(5) {
    order: 5;
  }

  .service-stack > :nth-child(8) {
    order: 6;
  }

  .service-stack > :nth-child(3) {
    order: 7;
  }

  .service-stack > :nth-child(6) {
    order: 8;
  }

  .service-stack > :nth-child(9) {
    order: 9;
  }

  .price-table:first-child {
    padding-right: 0;
  }

  .price-table:nth-child(2) {
    padding-left: 0;
    border-left: 0;
  }

  .pricing .section-heading p {
    white-space: normal;
  }

  .footer-links,
  .footer-links nav {
    justify-items: start;
    text-align: left;
  }

  .footer-bottom {
    display: grid;
  }

  .vehicle-slider {
    min-height: 420px;
  }

}

@media (max-width: 640px) {
  .intro,
  .services,
  .pricing,
  .fleet,
  .standard,
  .contact {
    width: min(100% - 28px, var(--max));
  }

  .brand img {
    width: auto;
    height: 58px;
    max-width: 170px;
  }

  .nav-cta {
    display: none;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero-frame {
    min-height: 680px;
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero-rotator {
    min-height: 4.4em;
  }

  .intro,
  .services,
  .fleet,
  .contact {
    padding-bottom: 74px;
  }

  .booking {
    padding-top: 0;
  }

  .booking-form-wrap {
    width: min(100% - 28px, var(--max));
    padding: 26px 0;
  }

  .booking-title h2 {
    font-size: clamp(1.05rem, 4.6vw, 1.25rem);
  }

  .booking-title {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .booking-open {
    min-height: 42px;
    justify-self: start;
    padding-inline: 22px 16px;
    font-size: 0.88rem;
  }

  .booking.has-open-form .booking-close {
    grid-column: auto;
    justify-self: start;
  }


  .service-media img,
  .photo-slider img,
  .standard img {
    height: 270px;
  }

  .vehicle-slider {
    min-height: 270px;
    height: 270px;
  }

  .fleet {
    gap: 58px;
  }

  .vehicle-profile {
    gap: 20px;
  }

  .vehicle-profile + .vehicle-profile {
    padding-top: 48px;
  }

  .vehicle-head h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-row strong {
    padding-left: 0;
    border-left: 0;
    text-align: left;
  }

  .price-head span:nth-child(2),
  .price-head span:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .photo-slider {
    grid-auto-columns: minmax(230px, 78%);
  }

  .standard {
    padding: 28px;
  }

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

  .site-footer {
    padding: 46px 14px 26px;
  }

  .footer-logo img {
    height: 68px;
  }
}
