:root {
  --ink: #0b0b0a;
  --ink-soft: #302e2a;
  --muted: #716d66;
  --muted-light: #918c84;
  --gold: #ad7a2d;
  --gold-dark: #8b5e1f;
  --ivory: #f5f2ec;
  --ivory-deep: #ebe6dd;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: rgba(11, 11, 10, 0.11);
  --line-soft: rgba(11, 11, 10, 0.065);
  --shadow-soft: 0 10px 34px rgba(18, 15, 11, 0.07);
  --shadow-card: 0 18px 48px rgba(18, 15, 11, 0.085);
  --shadow-lift: 0 24px 64px rgba(18, 15, 11, 0.12);
  --container: min(1280px, calc(100vw - 96px));
  --font-sans: "Segoe UI Variable", "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 76px;
}

/* Einheitlicher Sprachumschalter auf allen Seiten und Unterseiten */
.language-popover {
  z-index: 120;
  width: auto;
  min-width: 226px;
  padding: 12px;
  border: 1px solid rgba(63, 48, 28, 0.13);
  border-radius: 16px;
  background-color: rgba(255, 253, 249, 0.97);
  box-shadow: 0 24px 70px rgba(46, 32, 16, 0.18);
  backdrop-filter: blur(22px) saturate(150%);
  transform: translateY(-8px) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.language-menu.is-open .language-popover {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.language-popover p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-popover button {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border: 0;
  border-radius: 11px;
  color: var(--ink);
  background-color: transparent;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: left;
}

.language-popover button:hover,
.language-popover button.is-active {
  color: var(--ink);
  background-color: rgba(196, 138, 54, 0.12);
}

.language-trigger .flag,
.language-popover .flag {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.language-trigger .flag:not(:empty),
.language-popover .flag:not(:empty) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
  font-size: 23px;
  line-height: 1;
}

.language-trigger .flag:not(:empty)::before,
.language-trigger .flag:not(:empty)::after,
.language-popover .flag:not(:empty)::before,
.language-popover .flag:not(:empty)::after {
  content: none !important;
}

.flag--de {
  background-color: #111;
}

.flag--de::before,
.flag--de::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 33.34%;
  content: "";
}

.flag--de::before {
  top: 33.33%;
  background-color: #dd0000;
}

.flag--de::after {
  bottom: 0;
  background-color: #ffce00;
}

.flag--en {
  position: relative;
  background-color: #1f4aa8;
}

.flag--en::before,
.flag--en::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.flag--tr {
  background: #e30a17;
}

.flag--tr::before {
  content: "☾";
  position: absolute;
  left: 4px;
  top: -2px;
  color: #fff;
  font-size: 17px;
  line-height: 20px;
}

.flag--tr::after {
  content: "★";
  position: absolute;
  left: 10px;
  top: 5px;
  color: #fff;
  font-size: 5px;
  line-height: 1;
  transform: rotate(18deg);
}

.flag--ru {
  background: linear-gradient(to bottom, #fff 0 33.33%, #1c57a7 33.33% 66.66%, #d52b1e 66.66%);
}

.flag--uk {
  background: linear-gradient(to bottom, #0057b7 0 50%, #ffd700 50%);
}

.flag--en::before {
  width: 100%;
  height: 7px;
  box-shadow: inset 0 0 0 2px #c8102e;
}

.flag--en::after {
  width: 7px;
  height: 100%;
  box-shadow: inset 0 0 0 2px #c8102e;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  background-image: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
strong,
em,
i {
  font-family: var(--font-sans) !important;
}

em,
i {
  color: var(--gold);
  font-style: normal !important;
}

::selection {
  color: var(--white);
  background: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

main {
  padding-top: var(--header-height);
}

section {
  position: relative;
  scroll-margin-top: var(--header-height);
}

.kicker {
  margin-bottom: 17px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-head h2,
.landing-fleet__head h2,
.why__copy h2,
.video-showcase__copy h2,
.reviews-carousel__heading h2,
.faq-simple__heading h2,
.booking-cta__copy h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.45rem, 4.2vw, 4.25rem);
  font-weight: 590;
  line-height: 1.025;
  letter-spacing: -0.055em;
}

.section-head {
  margin-bottom: 46px;
}

.section-head h2 {
  max-width: 900px;
}

.button,
.header-cta,
.reviews-summary__button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 320ms var(--ease-premium),
    transform 320ms var(--ease-premium);
}

.button--gold,
.header-cta {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 22px rgba(11, 11, 10, 0.14);
}

.button--white,
.button--outline-gold {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 180px minmax(420px, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding-inline: clamp(28px, 4vw, 68px);
  background: rgba(251, 250, 247, 0.985);
  box-shadow: 0 1px 0 var(--line-soft);
  transition:
    height 280ms var(--ease-premium),
    background 240ms ease,
    box-shadow 280ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 10px 32px rgba(18, 15, 11, 0.075);
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
}

.brand img {
  width: 128px;
  height: 47px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.4vw, 43px);
}

.desktop-nav a {
  position: relative;
  padding-block: 28px 25px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 690;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 18px;
  left: 50%;
  height: 1px;
  content: "";
  background: var(--gold);
  transition:
    right 280ms var(--ease-premium),
    left 280ms var(--ease-premium);
}

.desktop-nav a.is-active,
.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a.is-active::after,
.desktop-nav a:hover::after {
  right: 0;
  left: 0;
}

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

.phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  transition: color 220ms ease;
}

.phone-link__icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  stroke-width: 1.6;
}

.phone-link > span {
  display: grid;
  gap: 1px;
}

.phone-link strong {
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: 0.015em;
}

.phone-link small {
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.25;
}

.language-menu {
  position: relative;
}

.language-trigger {
  min-width: 56px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-inline: 8px;
  border: 0;
  border-radius: 2px;
  color: var(--ink);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 740;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.language-trigger::after {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 280ms var(--ease-premium);
}

.language-menu.is-open .language-trigger::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.flag {
  display: none;
}

.language-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 188px;
  padding: 10px;
  visibility: hidden;
  border: 0;
  border-radius: 2px;
  opacity: 0;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 280ms var(--ease-premium),
    visibility 220ms ease;
}

.language-menu.is-open .language-popover {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-popover p {
  margin: 4px 8px 8px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.language-popover button {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 11px 10px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.8rem;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.language-popover button:hover,
.language-popover button.is-active {
  color: var(--ink);
  background: var(--ivory);
}

.header-cta {
  min-height: 44px;
  padding-inline: 22px;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  height: clamp(420px, 48vw, 560px);
  min-height: 420px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--ivory);
}

.hero__backdrop {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 44%;
  overflow: hidden;
}

.hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  transform: scale(1.01);
}

.hero__wash {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 46%;
  background: var(--ivory);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 58%;
}

.hero__title {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.75rem, 4.35vw, 4.55rem);
  font-weight: 590;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.hero__title > span {
  display: block;
}

.hero__copy {
  max-width: 520px;
  margin-bottom: 21px;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.07rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rentals {
  padding: 88px 0 78px;
  background: var(--paper);
}

.landing-fleet__head {
  margin-bottom: 34px;
  text-align: left;
}

.landing-fleet__head h2 {
  max-width: 760px;
}

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

.rental-card {
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 2px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    box-shadow 360ms var(--ease-premium),
    transform 360ms var(--ease-premium);
}

.rental-card__image {
  height: 194px;
  display: block;
  overflow: hidden;
  background: var(--ivory-deep);
}

.rental-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease-premium);
}

.rental-card__body {
  padding: 23px 24px 22px;
}

.rental-card h3 {
  min-height: 2.7em;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 690;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.rental-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.72rem;
}

.rental-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.rental-meta span::before {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.rental-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.rental-card__footer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.3;
}

.rental-card__footer small {
  font-size: inherit;
}

.rental-card__footer strong {
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 720;
}

.rental-arrow {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 1rem;
  transition:
    color 240ms ease,
    background 240ms ease,
    transform 320ms var(--ease-premium);
}

.rental-actions,
.gallery__actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.occasions {
  padding: 112px 0 120px;
  background: var(--white);
}

.occasions .section-head {
  text-align: center;
}

.occasions .section-head h2 {
  margin-inline: auto;
}

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

.occasion-card,
.occasion-card--tall {
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 2px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition:
    box-shadow 380ms var(--ease-premium),
    transform 380ms var(--ease-premium);
}

.occasion-card__link {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.occasion-card img,
.occasion-card--tall img {
  width: 100%;
  height: 298px;
  flex: 0 0 298px;
  object-fit: cover;
  transition: transform 720ms var(--ease-premium);
}

.occasion-card__body {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 31px 32px;
}

.occasion-card__tag {
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 0.69rem;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.occasion-card h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 620;
  line-height: 1.13;
  letter-spacing: -0.042em;
}

.occasion-card p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.occasion-card__cta {
  margin-top: auto;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 730;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 220ms ease, transform 300ms var(--ease-premium);
}

.why {
  padding: 112px 0 0;
  background: var(--ivory);
}

.why__hero {
  width: var(--container);
  min-height: 540px;
  display: grid;
  grid-template-columns: 42% 58%;
  grid-template-areas: "copy image";
  margin-inline: auto;
}

.why__image {
  grid-area: image;
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: 56% 72%;
}

.why__copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 54px clamp(44px, 5vw, 78px) 54px 0;
}

.why__copy h2 {
  max-width: 560px;
  font-size: clamp(2.45rem, 3.6vw, 3.85rem);
}

.why__rule,
.video-showcase__rule {
  width: 38px;
  height: 2px;
  display: block;
  margin: 28px 0 24px;
  background: var(--gold);
}

.why__intro {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.why__points {
  width: var(--container);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  margin-inline: auto;
  padding: 72px 0 108px;
}

.why__point {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 17px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  transition: transform 320ms var(--ease-premium);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon text {
  fill: currentColor;
  stroke: none;
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
}

.why__point strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 730;
  line-height: 1.35;
}

.why__point small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.video-showcase {
  padding: 116px 0 120px;
  background: var(--white);
}

.video-showcase__inner {
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.42fr);
  align-items: center;
  gap: clamp(52px, 6vw, 92px);
  margin-inline: auto;
}

.video-showcase__copy h2 {
  font-size: clamp(2.45rem, 3.7vw, 3.9rem);
}

.video-showcase__intro {
  max-width: 500px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.video-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
}

.video-feature {
  min-width: 0;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
}

.video-feature__icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.video-feature__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-feature strong,
.video-feature small {
  display: block;
}

.video-feature strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 710;
  line-height: 1.35;
}

.video-feature small {
  color: var(--muted-light);
  font-size: 0.66rem;
  line-height: 1.45;
}

.video-showcase__media {
  min-width: 0;
}

.video-showcase__player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 2px;
  background: var(--ink);
  box-shadow: var(--shadow-card);
}

.video-showcase__player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  opacity: 1;
  transition: opacity 180ms ease;
}

.video-showcase__player iframe.is-switching {
  opacity: 0.18;
}

.video-showcase__playlist {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
  margin-top: 12px;
}

.video-thumb {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: var(--ivory);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(18, 15, 11, 0.07);
  transition: box-shadow 280ms ease, transform 320ms var(--ease-premium);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 220ms ease, transform 520ms var(--ease-premium);
}

.video-thumb__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(11, 11, 10, 0.16);
  font-size: 0.58rem;
  transform: translate(-50%, -50%);
  transition: color 220ms ease, background 220ms ease, transform 320ms var(--ease-premium);
}

.video-thumb.is-active {
  box-shadow: inset 0 0 0 2px var(--gold), 0 8px 22px rgba(18, 15, 11, 0.09);
}

.video-showcase__next,
.gallery-arrow,
.review-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition:
    color 220ms ease,
    box-shadow 300ms var(--ease-premium),
    transform 300ms var(--ease-premium);
}

.video-showcase__next {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
}

.gallery {
  padding: 112px 0 106px;
  background: var(--ivory);
}

.gallery .section-head {
  text-align: left;
}

.gallery__intro {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.gallery__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 174px);
  gap: 12px;
  transition: opacity 200ms ease;
}

.gallery__grid.is-shifting {
  pointer-events: none;
}

.gallery figure {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ivory-deep);
  box-shadow: 0 12px 34px rgba(18, 15, 11, 0.075);
  transition:
    box-shadow 360ms var(--ease-premium),
    transform 360ms var(--ease-premium);
}

.gallery figure:nth-of-type(1) {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.gallery figure:nth-of-type(2) {
  grid-column: 5 / 8;
  grid-row: 1;
}

.gallery figure:nth-of-type(3) {
  grid-column: 5 / 8;
  grid-row: 2;
}

.gallery figure:nth-of-type(4) {
  grid-column: 8 / 11;
  grid-row: 1 / 3;
}

.gallery figure:nth-of-type(5) {
  grid-column: 11 / 13;
  grid-row: 1;
}

.gallery figure:nth-of-type(6) {
  grid-column: 11 / 13;
  grid-row: 2;
}

.gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-premium);
}

.gallery figure img[src*="515040996"] {
  object-position: 42% 50%;
}

.gallery figure img[src*="671663962"] {
  object-position: center 52%;
}

.gallery figure img[src*="2220050558"] {
  object-position: center 50%;
}

.gallery figure img[src*="563259027"] {
  object-position: 52% center;
}

.gallery figure img[src*="4160477685"] {
  object-position: center 55%;
}

.gallery figure img[src*="1244386044"] {
  object-position: 48% 56%;
}

.gallery-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-arrow--left {
  left: -22px;
}

.gallery-arrow--right {
  right: -22px;
}

.reviews {
  padding: 116px 0 122px;
  background: var(--white);
}

.reviews-transition {
  display: none;
}

.reviews-carousel__heading {
  width: var(--container);
  margin: 0 auto 48px;
  text-align: left;
}

.reviews-carousel__heading > p {
  margin-bottom: 15px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reviews-carousel__heading h2 {
  max-width: 880px;
}

.reviews-showcase {
  width: var(--container);
  display: grid;
  grid-template-columns: 354px minmax(0, 1fr);
  align-items: stretch;
  gap: 54px;
  margin-inline: auto;
}

.reviews-summary {
  min-width: 0;
  padding: 34px;
  border: 0;
  border-radius: 2px;
  background: var(--ivory);
}

.reviews-summary__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 29px;
}

.google-g {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
}

.google-g svg {
  width: 100%;
  height: 100%;
}

.reviews-summary__brand strong {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 730;
}

.reviews-summary__content {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.reviews-summary__score > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 3.65rem;
  font-weight: 610;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

.reviews-summary__score > span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.68rem;
}

.rating-bars {
  display: grid;
  gap: 8px;
}

.rating-bars > div {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.61rem;
}

.rating-bars b {
  color: var(--ink-soft);
  font-weight: 670;
}

.rating-bars span {
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(11, 11, 10, 0.1);
}

.rating-bars i {
  width: var(--value);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--gold);
}

.rating-bars small {
  font-size: inherit;
  text-align: right;
}

.reviews-summary__button {
  width: 100%;
  min-height: 46px;
  justify-content: space-between;
  margin-top: 31px;
  padding-inline: 18px;
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.reviews-carousel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 15px;
}

.google-review-card {
  min-width: 0;
  min-height: 282px;
  padding: 27px 25px 28px;
  border: 0;
  border-radius: 2px;
  opacity: 1;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition:
    opacity 300ms ease,
    box-shadow 380ms var(--ease-premium),
    transform 380ms var(--ease-premium);
}

.google-review-card.is-active {
  opacity: 1;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.google-review-card header {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 0.8rem;
  font-weight: 720;
}

.google-review-card header strong,
.google-review-card header small {
  display: block;
}

.google-review-card header strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 730;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-review-card header small {
  margin-top: 2px;
  color: var(--muted-light);
  font-size: 0.63rem;
  line-height: 1.3;
}

.google-review-card .google-g {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
}

.google-review-card .stars {
  margin-bottom: 17px;
  font-size: 0.77rem;
}

.review-quote {
  display: block;
  height: 20px;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 1.75rem;
  font-weight: 650;
  line-height: 1;
}

.google-review-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.65;
}

.review-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
}

.review-arrow--left {
  left: -22px;
}

.review-arrow--right {
  right: -22px;
}

.review-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 18px;
}

.review-dots button {
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.review-dots button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  content: "";
  background: rgba(11, 11, 10, 0.16);
  transform: translate(-50%, -50%);
  transition: width 280ms var(--ease-premium), background 220ms ease;
}

.review-dots button.is-active::before {
  width: 24px;
  background: var(--gold);
}

.faq-scene {
  padding: 116px 0 120px;
  background: var(--ivory);
}

.faq-simple__inner {
  width: min(1120px, calc(100vw - 96px));
  margin-inline: auto;
}

.faq-simple__heading {
  max-width: 760px;
  margin: 0 auto 47px;
  text-align: center;
}

.faq-simple__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-simple__badge > span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0;
}

.faq-simple__heading h2 {
  margin-bottom: 17px;
}

.faq-simple__heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-simple__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 13px;
}

.faq__item {
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 26px rgba(18, 15, 11, 0.055);
  transition:
    background 220ms ease,
    box-shadow 340ms var(--ease-premium),
    transform 340ms var(--ease-premium);
}

.faq__item.is-open {
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.faq__toggle {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 21px 18px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq__q {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 690;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.faq__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--ivory);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 360ms var(--ease-premium);
}

.faq__item.is-open .faq__icon {
  color: var(--white);
  background: var(--ink);
  transform: rotate(45deg);
}

.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0 64px 0 24px;
  opacity: 0;
  transition:
    grid-template-rows 420ms var(--ease-premium),
    opacity 240ms ease,
    padding-bottom 420ms var(--ease-premium);
}

.faq__item.is-open .faq__panel {
  grid-template-rows: 1fr;
  padding-bottom: 23px;
  opacity: 1;
}

.faq__a {
  min-height: 0;
  overflow: hidden;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.68;
}

.faq-simple__contact {
  display: grid;
  justify-items: center;
  margin-top: 42px;
  text-align: center;
}

.faq-simple__contact strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 720;
}

.faq-simple__contact > span {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 0.72rem;
}

.faq-simple__contact a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-inline: 16px;
  border: 0;
  border-radius: 2px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 0.7rem;
  font-weight: 700;
  transition: box-shadow 280ms var(--ease-premium), transform 280ms var(--ease-premium);
}

.faq-simple__contact svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.booking-cta {
  min-height: 460px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--ink);
}

.booking-cta__image,
.booking-cta__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.booking-cta__image {
  object-fit: cover;
  object-position: center 53%;
  opacity: 0.62;
}

.booking-cta__overlay {
  background: rgba(5, 5, 5, 0.52);
}

.booking-cta__inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 64px;
  margin: auto;
  padding-block: 88px;
}

.booking-cta__copy {
  max-width: 760px;
}

.booking-cta__copy .kicker {
  color: #d4b37b;
}

.booking-cta__copy h2 {
  color: var(--white);
  font-size: clamp(2.7rem, 4.5vw, 4.65rem);
}

.booking-cta__copy h2 em {
  color: #d4b37b;
}

.booking-cta__copy > p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.68;
}

.booking-cta__actions {
  min-width: 244px;
  display: grid;
  gap: 13px;
}

.booking-cta__primary {
  min-height: 54px;
  justify-content: space-between;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.booking-cta__phone {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding-inline: 17px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  transition: background 220ms ease, border-color 220ms ease;
}

.booking-cta__phone svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: #d4b37b;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-cta__phone span {
  display: grid;
  gap: 1px;
}

.booking-cta__phone small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.62rem;
  line-height: 1.2;
}

.booking-cta__phone strong {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.site-footer {
  background: var(--paper);
}

.footer__body {
  padding: 94px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.22fr 0.6fr 0.72fr 1.15fr;
  align-items: start;
  gap: clamp(42px, 6vw, 92px);
}

.footer__logo {
  width: 196px;
  height: 90px;
  object-fit: contain;
  object-position: left center;
}

.footer__brand > p {
  max-width: 330px;
  margin: 20px 0 27px;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.75;
}

.footer__socials {
  display: flex;
  gap: 9px;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--ivory);
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 280ms var(--ease-premium);
}

.footer__socials svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer__col > strong {
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 770;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer__col > a:not(.footer__contact-line):not(.button) {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  transition: color 220ms ease, transform 260ms var(--ease-premium);
}

.footer__contact {
  gap: 15px;
}

.footer__contact-line {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.footer__contact-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: var(--ivory);
}

.footer__contact-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__contact-line > span:last-child {
  min-width: 0;
}

.footer__contact-line strong,
.footer__contact-line small {
  display: block;
}

.footer__contact-line strong {
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 700;
  line-height: 1.35;
}

.footer__contact-line small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.35;
}

.footer__contact-btn {
  width: 100%;
  min-height: 48px;
  justify-content: space-between;
  margin-top: 7px;
}

.footer__contact-btn::after {
  content: "→";
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 72px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-light);
  font-size: 0.68rem;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer__legal a {
  transition: color 200ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 620ms ease,
    transform 720ms var(--ease-premium);
}

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

.reveal-delay-1 {
  transition-delay: 70ms;
}

.reveal-delay-2 {
  transition-delay: 130ms;
}

.reveal-delay-3 {
  transition-delay: 190ms;
}

@media (hover: hover) and (pointer: fine) {
  .button--gold:hover,
  .header-cta:hover {
    background: #242321;
    box-shadow: 0 13px 30px rgba(11, 11, 10, 0.18);
    transform: translateY(-2px);
  }

  .button--white:hover,
  .button--outline-gold:hover,
  .reviews-summary__button:hover {
    border-color: rgba(11, 11, 10, 0.24);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
  }

  .phone-link:hover,
  .footer__legal a:hover {
    color: var(--gold-dark);
  }

  .language-trigger:hover {
    border-color: rgba(11, 11, 10, 0.24);
  }

  .rental-card:hover,
  .occasion-card:hover,
  .occasion-card--tall:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-5px);
  }

  .rental-card:hover .rental-card__image img,
  .occasion-card:hover img,
  .occasion-card--tall:hover img,
  .gallery figure:hover img {
    transform: scale(1.025);
  }

  .rental-arrow:hover {
    color: var(--white);
    background: var(--gold-dark);
    transform: translateX(3px);
  }

  .occasion-card__link:hover .occasion-card__cta {
    color: var(--gold-dark);
    transform: translateX(4px);
  }

  .why__point:hover .feature-icon {
    transform: translateY(-3px);
  }

  .video-thumb:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
  }

  .video-thumb:hover img {
    opacity: 1;
    transform: scale(1.025);
  }

  .video-thumb:hover .video-thumb__play {
    color: var(--white);
    background: var(--ink);
    transform: translate(-50%, -50%) scale(1.06);
  }

  .video-showcase__next:hover {
    color: var(--gold-dark);
    transform: translateY(-50%) scale(1.04);
  }

  .gallery figure:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-3px);
  }

  .gallery-arrow:hover,
  .review-arrow:hover {
    color: var(--gold-dark);
    box-shadow: var(--shadow-card);
    transform: translateY(-50%) scale(1.04);
  }

  .google-review-card:hover {
    opacity: 1;
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
  }

  .faq__item:hover {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
  }

  .faq-simple__contact a:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
  }

  .booking-cta__primary:hover {
    background: var(--ivory);
    transform: translateY(-2px);
  }

  .booking-cta__phone:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.07);
  }

  .footer__socials a:hover {
    color: var(--white);
    background: var(--ink);
    transform: translateY(-2px);
  }

  .footer__col > a:not(.footer__contact-line):not(.button):hover {
    color: var(--ink);
    transform: translateX(3px);
  }
}

@media (min-width: 1101px) {
  :root {
    --above-fold-hero: clamp(260px, 44svh, 430px);
  }

  .hero {
    height: var(--above-fold-hero);
    min-height: 0;
  }

  .hero__title {
    max-width: 540px;
    margin-bottom: clamp(8px, 1.45svh, 15px);
    font-size: clamp(2.35rem, 3.8vw, 3.7rem);
    line-height: 0.97;
  }

  .hero__content .kicker {
    margin-bottom: clamp(6px, 1.1svh, 12px);
  }

  .hero__copy {
    max-width: 480px;
    margin-bottom: clamp(9px, 1.5svh, 17px);
    font-size: clamp(0.78rem, 0.88vw, 0.94rem);
    line-height: 1.5;
  }

  .hero .button {
    min-height: clamp(36px, 4.8svh, 44px);
    padding-inline: 20px;
    font-size: clamp(0.64rem, 0.7vw, 0.74rem);
  }

  .rentals {
    height: calc(100vh - var(--header-height) - var(--above-fold-hero));
    height: calc(100svh - var(--header-height) - var(--above-fold-hero));
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(10px, 1.8svh, 22px) 0;
  }

  .landing-fleet__head {
    margin-bottom: clamp(7px, 1.25svh, 14px);
    text-align: center;
  }

  .landing-fleet__head .kicker {
    margin-bottom: clamp(3px, 0.55svh, 6px);
    font-size: clamp(0.58rem, 0.65vw, 0.7rem);
  }

  .landing-fleet__head h2 {
    max-width: none;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.05;
  }

  .rental-grid--landing {
    gap: clamp(10px, 1.25vw, 18px);
  }

  .rental-card__image {
    height: clamp(78px, 13svh, 140px);
  }

  .rental-card__body {
    padding: clamp(8px, 1.3svh, 15px) 14px;
  }

  .rental-card h3 {
    min-height: 0;
    margin-bottom: clamp(4px, 0.75svh, 8px);
    overflow: hidden;
    font-size: clamp(0.68rem, 0.78vw, 0.84rem);
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .rental-meta {
    gap: 6px 12px;
    margin-bottom: clamp(4px, 0.75svh, 8px);
    font-size: clamp(0.56rem, 0.62vw, 0.66rem);
  }

  .rental-meta span {
    gap: 5px;
  }

  .rental-meta span::before {
    width: 4px;
    height: 4px;
    flex-basis: 4px;
  }

  .rental-card__footer p {
    font-size: clamp(0.56rem, 0.62vw, 0.66rem);
  }

  .rental-card__footer strong {
    font-size: clamp(0.8rem, 0.9vw, 0.96rem);
  }

  .rental-arrow {
    width: clamp(26px, 3.6svh, 34px);
    height: clamp(26px, 3.6svh, 34px);
    flex-basis: clamp(26px, 3.6svh, 34px);
    font-size: 0.72rem;
  }

  .rental-actions {
    margin-top: clamp(6px, 1svh, 11px);
  }

  .rental-actions .button {
    min-height: clamp(32px, 4.4svh, 40px);
    padding-inline: 20px;
    font-size: clamp(0.58rem, 0.65vw, 0.68rem);
  }
}

@media (max-width: 1220px) {
  :root {
    --container: min(1120px, calc(100vw - 64px));
  }

  .site-header {
    grid-template-columns: 154px minmax(360px, 1fr) auto;
    gap: 18px;
    padding-inline: 30px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .phone-link:not(.phone-link--mobile) {
    display: none;
  }

  .rental-card__body {
    padding-inline: 20px;
  }

  .why__hero {
    grid-template-columns: 44% 56%;
  }

  .reviews-showcase {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 38px;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 68px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
    grid-template-columns: 1fr auto;
    padding-inline: 24px;
  }

  .brand img {
    width: auto;
    height: 60px;
  }

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

  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    align-content: center;
    justify-items: end;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 25px;
    height: 1px;
    display: block;
    background: var(--ink);
    transform-origin: center;
    transition: transform 320ms var(--ease-premium), width 240ms ease;
  }

  .menu-button span:last-child {
    width: 18px;
  }

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

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

  .mobile-nav {
    position: fixed;
    z-index: 90;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    padding: 38px 24px 30px;
    visibility: hidden;
    opacity: 0;
    background: var(--paper);
    transform: translateY(-12px);
    pointer-events: none;
    transition:
      opacity 260ms ease,
      transform 360ms var(--ease-premium),
      visibility 260ms ease;
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav > a {
    padding: 13px 0;
    color: var(--ink);
    font-size: clamp(1.55rem, 4vw, 2rem);
    font-weight: 570;
    line-height: 1.15;
    letter-spacing: -0.035em;
  }

  .mobile-nav__bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 18px;
    margin-top: auto;
    padding-top: 28px;
  }

  .phone-link--mobile {
    display: flex;
  }

  .language-menu--mobile {
    justify-self: end;
  }

  .mobile-nav__bottom .button {
    grid-column: 1 / -1;
  }

  .hero {
    height: 520px;
    min-height: 520px;
  }

  .hero__backdrop {
    left: 48%;
  }

  .hero__wash {
    width: 50%;
  }

  .hero__content {
    padding-right: 52%;
  }

  .hero__title {
    font-size: clamp(2.9rem, 6.5vw, 4.7rem);
  }

  .rental-grid--landing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .rental-card__image {
    height: 230px;
  }

  .why__hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "image";
  }

  .why__copy {
    padding: 0 0 54px;
  }

  .why__image {
    height: 480px;
  }

  .why__points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 56px;
  }

  .video-showcase__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .video-showcase__copy {
    max-width: 760px;
  }

  .video-showcase__intro {
    max-width: 680px;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, 230px);
  }

  .gallery figure:nth-of-type(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .reviews-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reviews-summary {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
    gap: 32px;
  }

  .reviews-summary__brand {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .reviews-summary__button {
    margin-top: 0;
  }

  .review-cards {
    width: min(620px, 100%);
    grid-template-columns: 1fr;
    margin-inline: auto;
  }

  .google-review-card,
  .google-review-card:nth-of-type(n) {
    display: none;
    min-height: 250px;
  }

  .google-review-card.is-active {
    display: block;
  }

  .booking-cta__inner {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .booking-cta__actions {
    width: min(420px, 100%);
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 0.75fr 0.9fr;
  }

  .footer__contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 14px;
  }

  .footer__contact > strong,
  .footer__contact-btn {
    grid-column: 1 / -1;
  }

  .footer__contact-btn {
    width: 280px;
  }
}

@media (max-width: 780px) {
  :root {
    --container: calc(100vw - 40px);
  }

  .section-head h2,
  .landing-fleet__head h2,
  .why__copy h2,
  .video-showcase__copy h2,
  .reviews-carousel__heading h2,
  .faq-simple__heading h2,
  .booking-cta__copy h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .site-header,
  .site-header.is-scrolled {
    padding-inline: 20px;
  }

  .hero {
    height: auto;
    min-height: 0;
    display: block;
    padding-top: 300px;
  }

  .hero__backdrop {
    height: 300px;
    inset: 0 0 auto;
  }

  .hero__backdrop img {
    object-position: 58% 54%;
  }

  .hero__wash {
    display: none;
  }

  .hero__content {
    height: auto;
    display: block;
    padding: 42px 0 50px;
  }

  .hero__title {
    margin-bottom: 18px;
    font-size: clamp(2.85rem, 13.6vw, 4.25rem);
  }

  .hero__copy {
    margin-bottom: 25px;
    font-size: 0.94rem;
  }

  .rentals,
  .occasions,
  .gallery,
  .reviews,
  .faq-scene,
  .video-showcase {
    padding-top: 86px;
    padding-bottom: 90px;
  }

  .landing-fleet__head {
    margin-bottom: 26px;
  }

  .rental-grid--landing {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rental-card__image {
    height: 235px;
  }

  .rental-card h3 {
    min-height: 0;
  }

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

  .occasion-card img,
  .occasion-card--tall img {
    height: 270px;
    flex-basis: 270px;
  }

  .occasion-card__body {
    min-height: 0;
    padding: 27px 25px 29px;
  }

  .occasion-card p {
    margin-bottom: 25px;
  }

  .why {
    padding-top: 88px;
  }

  .why__hero {
    min-height: 0;
  }

  .why__copy {
    padding-bottom: 42px;
  }

  .video-showcase__copy h2 br,
  .booking-cta__copy h2 br {
    display: none;
  }

  .why__image {
    height: 330px;
  }

  .why__points {
    grid-template-columns: 1fr;
    gap: 31px;
    padding: 48px 0 84px;
  }

  .video-showcase__inner {
    gap: 40px;
  }

  .video-features {
    gap: 20px 16px;
  }

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

  .video-showcase__next {
    right: -12px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 195px);
    gap: 9px;
  }

  .gallery-arrow--left {
    left: -11px;
  }

  .gallery-arrow--right {
    right: -11px;
  }

  .reviews-carousel__heading {
    margin-bottom: 34px;
  }

  .reviews-summary {
    display: block;
    padding: 28px 24px;
  }

  .reviews-summary__brand {
    margin-bottom: 25px;
  }

  .reviews-summary__content {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 20px;
  }

  .reviews-summary__button {
    margin-top: 26px;
  }

  .google-review-card {
    padding: 26px 24px;
  }

  .review-arrow--left {
    left: -11px;
  }

  .review-arrow--right {
    right: -11px;
  }

  .faq-simple__inner {
    width: var(--container);
  }

  .faq-simple__grid {
    grid-template-columns: 1fr;
  }

  .faq__toggle {
    min-height: 68px;
    padding-inline: 19px 16px;
  }

  .faq__panel {
    padding-inline: 19px 52px;
  }

  .booking-cta {
    min-height: 520px;
  }

  .booking-cta__image {
    object-position: 61% center;
  }

  .booking-cta__inner {
    gap: 36px;
    padding-block: 70px;
  }

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

  .footer__body {
    padding-top: 76px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 36px;
  }

  .footer__brand,
  .footer__contact {
    grid-column: 1 / -1;
  }

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

  .footer__contact-btn {
    width: 100%;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 54px;
  }
}

@media (max-width: 480px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .mobile-nav {
    padding-inline: 18px;
  }

  .hero {
    padding-top: 260px;
  }

  .hero__backdrop {
    height: 260px;
  }

  .hero__content {
    padding-block: 36px 44px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .rental-card__image {
    height: 210px;
  }

  .video-features {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-rows: repeat(3, 172px);
  }

  .reviews-summary__content {
    grid-template-columns: 98px minmax(0, 1fr);
  }

  .reviews-summary__score > strong {
    font-size: 3.25rem;
  }

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

  .footer__brand,
  .footer__contact {
    grid-column: auto;
  }

  .footer__legal {
    flex-wrap: wrap;
    gap: 14px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Finale Angleichung an den Sprachumschalter der Landingpage */
.language-popover {
  width: auto;
  min-width: 226px;
  padding: 12px;
  border: 1px solid rgba(63, 48, 28, 0.13);
  border-radius: 16px;
  background-color: rgba(255, 253, 249, 0.97);
  box-shadow: 0 24px 70px rgba(46, 32, 16, 0.18);
  transform: translateY(-8px) scale(0.98);
}

.language-menu.is-open .language-popover {
  transform: translateY(0) scale(1);
}

.language-popover p {
  margin: 0 0 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-popover button {
  min-height: 46px;
  gap: 10px;
  padding: 0 10px;
  border-radius: 11px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
}

.language-popover button:hover,
.language-popover button.is-active {
  color: var(--ink);
  background-color: rgba(196, 138, 54, 0.12);
}

.language-trigger .flag,
.language-popover .flag {
  display: inline-block;
}

/* Desktop-Navigation aller Unterseiten exakt wie auf der Landingpage */
@media (min-width: 1041px) {
  .site-header,
  .site-header.is-scrolled {
    height: auto;
    min-height: 76px;
    display: grid;
    grid-template-columns: 184px minmax(420px, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 0 clamp(24px, 4vw, 56px);
    border-bottom: 0;
    background: rgba(255, 253, 249, 0.985);
    box-shadow: 0 6px 24px rgba(43, 30, 15, 0.045);
    backdrop-filter: none;
    transition:
      min-height 260ms var(--ease-premium),
      box-shadow 260ms var(--ease-premium),
      background 260ms ease;
  }

  .site-header.is-scrolled {
    min-height: 66px;
    background: rgba(255, 253, 249, 0.995);
    box-shadow: 0 8px 30px rgba(43, 30, 15, 0.07);
  }

  .brand {
    display: grid;
    align-content: center;
    justify-items: start;
    min-width: 0;
    overflow: visible;
  }

  .brand img {
    width: auto;
    height: 56px;
    object-fit: contain;
    object-position: left center;
  }

  .desktop-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.55vw, 28px);
    height: 100%;
  }

  .desktop-nav a {
    position: relative;
    height: 76px;
    display: inline-flex;
    align-items: center;
    padding: 0;
    color: #111;
    font-size: 0.77rem;
    font-weight: 780;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    transition: color 200ms ease;
  }

  .site-header.is-scrolled .desktop-nav a {
    height: 66px;
  }

  .desktop-nav a::after {
    position: absolute;
    right: auto;
    bottom: 17px;
    left: 50%;
    width: 0;
    height: 1px;
    content: "";
    background: #c48a36;
    transform: translateX(-50%);
    transition: width 260ms var(--ease-premium);
  }

  .desktop-nav a:hover,
  .desktop-nav a.is-active {
    color: #9c6722;
  }

  .desktop-nav a:hover::after,
  .desktop-nav a.is-active::after {
    right: auto;
    left: 50%;
    width: 34px;
  }

  .nav-actions {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .nav-actions .phone-link {
    min-width: 152px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .phone-link__icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    color: #c48a36;
  }

  .phone-link strong {
    color: #0f0d0a;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.015em;
    white-space: nowrap;
  }

  .phone-link small {
    margin-top: 1px;
    color: #8d8377;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .nav-actions .language-trigger {
    min-width: 0;
    min-height: 42px;
    height: auto;
    gap: 8px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #17120c;
    background-color: #fffdf9;
    box-shadow:
      0 1px 2px rgba(46, 32, 16, 0.025),
      0 8px 22px rgba(46, 32, 16, 0.055);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
  }

  .nav-actions .language-trigger::after {
    width: 7px;
    height: 7px;
    margin-top: 0;
    border-color: #9c6722;
    transform: translateY(-2px) rotate(45deg);
  }

  .nav-actions .language-trigger .flag {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: inline-block;
  }

  .nav-actions .header-cta {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 3px;
    color: #fff;
    background-color: #b9822e;
    box-shadow: 0 8px 22px rgba(185, 130, 46, 0.17);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }

  .menu-button,
  .mobile-nav {
    display: none;
  }
}

@media (min-width: 1041px) and (max-width: 1280px) {
  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: 162px 1fr auto;
    gap: 16px;
    padding-inline: 20px;
  }

  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 0.72rem;
  }

  .nav-actions .phone-link {
    display: none;
  }
}
