:root {
  --fr-blue: #3c43ed;
  --fr-blue-dark: #2a30c4;
  --fr-accent: #adf1d2;
  --fr-ink: #0b0033;
  --fr-text: #2f3238;
  --fr-muted: #888888;
  --fr-bg: #ffffff;
  --fr-soft: #f5f7fb;
  --fr-max: 1140px;
  --fr-header-h: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.site-body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--fr-text);
  background: var(--fr-bg);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 {
  font-family: Epilogue, system-ui, sans-serif;
  color: var(--fr-ink);
  line-height: 1.2;
  margin: 0 0 .6rem;
}

.site-container {
  width: min(100% - 2rem, var(--fr-max));
  margin-inline: auto;
}

/* Header — default (inner pages) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ececf2;
  min-height: var(--fr-header-h);
}
.site-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: var(--fr-header-h);
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}
.site-nav--left { justify-content: flex-start; }
.site-nav a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--fr-text);
}
.site-nav a:hover,
.site-nav a.is-active { color: var(--fr-blue); }

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  z-index: 2;
}
.site-logo__img {
  height: 48px;
  width: auto;
  max-width: 200px;
}
.site-logo__sub { color: var(--fr-blue); }

.site-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .85rem;
}
.site-langs {
  display: flex;
  gap: .35rem;
}
.site-langs__item {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #d7d7e2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  font-weight: 700;
  color: var(--fr-muted);
  background: #fff;
  text-decoration: none;
}
.site-langs__item:hover {
  border-color: var(--fr-blue);
  color: var(--fr-blue);
}
.site-langs__item.is-active {
  border-color: var(--fr-blue);
  color: var(--fr-blue);
}

.site-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}
.site-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--fr-ink);
  margin: 6px 0;
  border-radius: 2px;
}

/* Home: transparent header over full-bleed hero */
.page-home .site-header,
.page-blog .site-header,
.page-buchen .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}
.page-home .site-nav a,
.page-blog .site-nav a,
.page-buchen .site-nav a {
  color: rgba(255,255,255,.92);
}
.page-home .site-nav a:hover,
.page-home .site-nav a.is-active,
.page-blog .site-nav a:hover,
.page-blog .site-nav a.is-active { color: #fff; }
.page-buchen .site-nav a:hover { color: #fff; }
.page-buchen .site-nav a.is-active { color: var(--fr-accent); }
.page-home .site-logo__img,
.page-blog .site-logo__img,
.page-buchen .site-logo__img {
  /* keep original colors — green outline is in the logo file */
  width: 181px;
  height: auto;
  max-width: 181px;
}
.page-home .site-langs__item,
.page-blog .site-langs__item,
.page-buchen .site-langs__item {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.page-home .site-langs__item.is-active,
.page-blog .site-langs__item.is-active,
.page-buchen .site-langs__item.is-active {
  background: rgba(173,241,210,.25);
  border-color: var(--fr-accent);
  color: var(--fr-accent);
}
.page-home .site-nav-toggle span,
.page-blog .site-nav-toggle span,
.page-buchen .site-nav-toggle span { background: #fff; }
.page-home .site-main,
.page-blog .site-main,
.page-buchen .site-main { padding-top: 0; }

/* Inner page dark banner (Buchen etc.) */
.site-page-banner {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(260px, 38vw, 400px);
  padding: calc(var(--fr-header-h) + 2.25rem) 1rem 3rem;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(11,0,51,.42) 0%, rgba(11,0,51,.55) 100%),
    url("../img/blog-heading.jpg") center / cover no-repeat;
}
.site-page-banner--buchen {
  background:
    linear-gradient(180deg, rgba(11,0,51,.4) 0%, rgba(11,0,51,.52) 100%),
    url("../img/buchen-heading.webp") center / cover no-repeat;
}
.site-page-banner__inner {
  width: min(100%, 1100px);
  margin-inline: auto;
}
.site-page-banner__crumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .35rem .5rem;
  margin: 0 0 .85rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,.92);
}
.site-page-banner__crumbs a { color: #fff; }
.site-page-banner__crumbs a:hover { text-decoration: underline; }
.site-page-banner__sep { opacity: .7; }
.site-page-banner h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}
.site-buchen-intro {
  padding: 2.75rem 1rem 1.25rem;
  text-align: center;
  background: #fff;
}
.site-buchen-intro h2 {
  margin: 0 auto .9rem;
  max-width: 48rem;
  color: #222;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
}
.site-buchen-intro p {
  margin: 0 auto;
  max-width: 46rem;
  color: #888;
  font-size: 1.05rem;
  line-height: 1.65;
}
.site-buchen-form {
  padding-top: 1rem;
}

.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: .7rem 1.15rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.site-btn--accent {
  background: var(--fr-accent);
  color: var(--fr-ink);
}
.site-btn--accent:hover { filter: brightness(.97); }
.site-btn--primary {
  background: var(--fr-blue);
  color: #fff;
}
.site-btn--primary:hover { background: var(--fr-blue-dark); }
.site-btn--ghost {
  border: 1px solid #d7d7e2;
  background: #fff;
  color: var(--fr-ink);
}
.site-btn--on-dark {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.35);
}

/* Hero — full viewport, centered like WP */
.site-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  background: url("../img/hero-desktop.webp") center/cover no-repeat;
  margin-top: 0;
}
/* WP hero has no Elementor overlay — keep photo bright, only soft text readability */
.site-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 0, 51, .18) 0%,
    rgba(11, 0, 51, .22) 40%,
    rgba(11, 0, 51, .42) 100%
  );
  pointer-events: none;
  z-index: 1;
}
/* Original BG-Pattern-min.png: black + dark blue bars — screen blend removes black */
.site-hero__pattern {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: min(1900px, 118%);
  max-width: none;
  height: auto;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .95;
}
.site-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--fr-header-h) + 2rem) 1rem 3rem;
  max-width: 920px;
  margin-inline: auto;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}
.site-hero__eyebrow {
  margin: 0 0 1.1rem;
  color: #7dffb5;
  font-size: clamp(.72rem, 1.4vw, .88rem);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.45;
}
.site-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5.2vw, 3.75rem);
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.site-hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  opacity: .95;
  max-width: 40rem;
  margin: 0 auto 1rem;
  line-height: 1.55;
}
.site-hero__tag {
  margin: 0;
  font-style: italic;
  font-size: 1.05rem;
  opacity: .9;
}
.site-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

.site-section { padding: 4rem 0; }
.site-section--soft { background: var(--fr-soft); }
.site-section__head { max-width: 720px; margin-bottom: 1.75rem; }
.site-section__head p { color: var(--fr-muted); margin: 0; }

/* Call bar under hero (WP) */
.site-callbar {
  border-bottom: 1px solid #ececf2;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(0,0,0,.015) 8px,
      rgba(0,0,0,.015) 9px
    ),
    #fff;
}
.site-callbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  padding: 1.15rem 0;
  flex-wrap: wrap;
}
.site-callbar__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.site-callbar__text {
  margin: 0;
  color: #2f3238;
  font-weight: 500;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .45rem .55rem;
}
.site-callbar__text a {
  color: var(--fr-blue);
  font-weight: 700;
}
.site-callbar__phone {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--fr-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-callbar__phone svg { width: 14px; height: 14px; display: block; }
.site-callbar__badge {
  width: auto;
  height: 56px;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}
.site-callbar--band {
  margin-top: 3.5rem;
  border-bottom: 0;
  background: #fff url("../img/call-bar-bg.jpeg") center / cover no-repeat;
}
.site-callbar--band .site-callbar__inner {
  max-width: 720px;
  margin-inline: auto;
  background: #fff;
  padding: 1.1rem 1.5rem;
}

/* Airport reliability block (after business) */
.site-airport {
  padding: 2.5rem max(1rem, calc((100vw - 1260px) / 2)) 0;
}
.site-airport__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .95fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.site-airport__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.site-airport__copy {
  max-width: 34rem;
  padding-top: .5rem;
}
.site-airport__eyebrow {
  margin: 0 0 .85rem;
  color: var(--fr-blue);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  line-height: 1.35;
}
.site-airport__copy h2 {
  margin: 0 0 1rem;
  color: #2f3238;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
}
.site-airport__copy h2 span { color: var(--fr-blue); }
.site-airport__lead {
  margin: 0;
  color: #888;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Nachrichten und Artikel — 4-col WP posts grid */
.site-news {
  padding: 4.5rem 0 4rem;
  background: #fff;
}
.site-news__heading {
  margin: 0 0 2.25rem;
  text-align: center;
  color: var(--fr-blue);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  line-height: 1.35;
}
.site-news__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem 1.35rem;
}
.site-news__card {
  text-align: center;
}
.site-news__media {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: .85rem;
  background: #f3f4f8;
  aspect-ratio: 3 / 2;
}
.site-news__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.site-news__card:hover .site-news__media img {
  transform: scale(1.06);
}
.site-news__title {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #2f3238;
}
.site-news__title a:hover { color: var(--fr-blue); }

/* Blog detail — WP page-heading + content/sidebar */
.site-blog-heading {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(280px, 42vw, 420px);
  padding: calc(var(--fr-header-h) + 2.5rem) 1rem 3.5rem;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(11,0,51,.45) 0%, rgba(11,0,51,.55) 100%),
    url("../img/blog-heading.jpg") center / cover no-repeat;
}
.site-blog-heading__inner {
  width: min(100%, 1100px);
  margin-inline: auto;
}
.site-blog-heading__crumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .35rem .5rem;
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,.92);
}
.site-blog-heading__crumbs a {
  color: #fff;
}
.site-blog-heading__crumbs a:hover { text-decoration: underline; }
.site-blog-heading__sep {
  opacity: .7;
  font-size: .95rem;
}
.site-blog-heading h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}
.site-blog-article {
  padding: 2.5rem 0 4rem;
}
.site-blog-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 2rem 2.5rem;
  align-items: start;
  width: min(100% - 2rem, 1260px);
}
.site-blog-article__media {
  margin: 0 0 1.75rem;
  border-radius: 4px;
  overflow: hidden;
}
.site-blog-article__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.site-blog-article__content {
  max-width: none;
}
.site-blog-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1rem 0;
}
.site-blog-article__content h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
  color: #2f3238;
}
.site-blog-article__content h3 {
  margin-top: 1.5rem;
  font-size: 1.15rem;
}
.site-blog-aside {
  position: sticky;
  top: 1.25rem;
}
.site-blog-aside__card {
  border: 1px solid #e6e6ee;
  border-radius: 25px;
  padding: 1.75rem 1.35rem 1.5rem;
  text-align: center;
  background: #fff;
}
.site-blog-aside__card h2 {
  margin: 0 0 .85rem;
  font-family: Epilogue, system-ui, sans-serif;
  font-size: clamp(2.2rem, 3vw, 2.9rem);
  font-weight: 700;
  line-height: 1.05;
  color: #222;
}
.site-blog-aside__lead {
  margin: 0 0 1.15rem;
  color: #888;
  font-size: .95rem;
  line-height: 1.5;
}
.site-blog-aside__btn {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  border-radius: 4px;
  font-size: 1.05rem;
  font-weight: 500;
}
.site-blog-aside__call {
  margin: 1.15rem 0 .65rem;
  color: #888;
  font-size: .95rem;
}
.site-blog-aside__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
}
.site-blog-aside__phone img {
  width: auto;
  height: 52px;
  max-width: 110px;
  object-fit: contain;
}
.site-blog-aside__phone a {
  color: var(--fr-blue);
  font-weight: 600;
  font-size: 1.05rem;
  white-space: nowrap;
}

/* Warum FirstRide — 4 columns like WP */
.site-why { padding-top: 3.75rem; padding-bottom: 3.75rem; }
.site-why__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) repeat(3, minmax(0, 1fr));
  gap: 2rem 1.75rem;
  align-items: start;
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}
.site-why__eyebrow {
  margin: 0 0 .75rem;
  color: var(--fr-blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-why__intro h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 1rem;
  color: #2f3238;
}
.site-why__intro h2 span {
  color: var(--fr-blue);
  display: inline;
}
.site-why__intro > p,
.site-why__card p {
  margin: 0;
  color: var(--fr-muted);
  font-size: .95rem;
  line-height: 1.6;
}
.site-why__card h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0 0 .75rem;
  color: #2f3238;
}
.site-why__icon {
  width: auto;
  height: 44px;
  margin-bottom: 1.1rem;
  object-fit: contain;
}
.site-why__icon--blend {
  mix-blend-mode: multiply;
}

/* Offers: image already has diagonal cut + blue pattern baked in */
.site-offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #fff;
  overflow: visible;
  margin-top: 2.5rem;
  column-gap: 1.5rem;
}
.site-offers__media {
  position: relative;
  background: #fff;
  min-height: 0;
  z-index: 1;
  padding-right: 1.25rem;
}
.site-offers__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.site-offers__content {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 3vw, 2.75rem) clamp(1.5rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.75rem) 1rem;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}
.site-offers__eyebrow {
  margin: 0 0 .85rem;
  color: var(--fr-blue);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.site-offers__content h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.22;
  color: #2f3238;
  margin: 0 0 1.6rem;
  max-width: 18ch;
}
.site-offers__content h2 span {
  color: var(--fr-blue);
  display: inline;
}
.site-offers__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.75rem;
  margin-bottom: 1.75rem;
  max-width: 560px;
}
.site-offers__features ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .95rem;
}
.site-offers__features li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: .7rem;
  align-items: center;
}
.site-offers__features img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.site-offers__features span {
  color: #2f3238;
  font-size: .92rem;
  line-height: 1.35;
  font-weight: 500;
}
.site-offers__content .site-btn {
  align-self: flex-start;
  padding: .85rem 2.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1.05rem;
}

/* Fleet / Fahrzeugmodelle */
.site-fleet {
  padding: 4rem 0 3rem;
  background: #fff;
}
.site-fleet__eyebrow {
  margin: 0 0 .75rem;
  color: var(--fr-blue);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.site-fleet h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  color: #2f3238;
  margin: 0 0 .75rem;
  max-width: none;
  line-height: 1.2;
  white-space: nowrap;
}
.site-fleet h2 span { color: var(--fr-blue); }
.site-fleet__lead {
  margin: 0 0 2.25rem;
  color: var(--fr-muted);
  font-size: 1.05rem;
  max-width: 40rem;
}
.site-fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.site-fleet__card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.site-fleet__card > img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(11, 0, 51, .12));
}
.site-fleet__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  flex-wrap: wrap;
}
.site-fleet__logo {
  width: 42px;
  height: auto;
}
.site-fleet__spec {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: #2f3238;
  font-size: .92rem;
  font-weight: 600;
}
.site-fleet__spec svg { color: #2f3238; opacity: .85; }
.site-fleet__card .site-btn {
  margin-top: .25rem;
  padding: .8rem 1.8rem;
  border-radius: 4px;
  font-weight: 500;
}
.site-fleet__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  padding: 1.25rem 1rem;
  border-top: 1px solid #ececf2;
  border-bottom: 1px solid #ececf2;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(0,0,0,.015) 8px,
      rgba(0,0,0,.015) 9px
    ),
    #fff;
  flex-wrap: wrap;
}
.site-fleet__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.site-fleet__call p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem .55rem;
  color: #2f3238;
  font-size: 1.05rem;
  font-weight: 500;
}
.site-fleet__call a {
  color: var(--fr-blue);
  font-weight: 700;
}
.site-fleet__phone-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--fr-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Private transfers — content left, diagonal image right (baked into asset) */
.site-private {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  background: #fff;
  margin-top: 1rem;
  column-gap: 2rem;
  padding-left: clamp(3rem, 10vw, 8rem);
}
.site-private__content {
  padding: clamp(2rem, 4vw, 3.5rem) 1.5rem clamp(2rem, 4vw, 3.5rem) clamp(1rem, 3vw, 2.5rem);
  position: relative;
  z-index: 2;
}
.site-private__media {
  background: #fff;
  z-index: 1;
  padding-left: 1.25rem;
}
.site-private__eyebrow {
  margin: 0 0 .85rem;
  color: var(--fr-blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  max-width: 42rem;
  line-height: 1.45;
}
.site-private__content h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  color: #2f3238;
  margin: 0 0 1rem;
  line-height: 1.2;
  max-width: none;
}
.site-private__content h2 span {
  color: var(--fr-blue);
  white-space: nowrap;
}
.site-private__content h2 .site-private__title-line {
  color: #2f3238;
  white-space: nowrap;
}
.site-private__lead {
  margin: 0 0 1.5rem;
  color: var(--fr-muted);
  font-size: .98rem;
  line-height: 1.6;
  max-width: 38rem;
}
.site-private__prices {
  margin-bottom: 1.5rem;
  max-width: 560px;
}
.site-private__row {
  padding: .85rem 1rem;
}
.site-private__row:nth-child(even) {
  background: #eefaf4;
}
.site-private__row h3 {
  margin: 0 0 .45rem;
  font-size: 1rem;
  color: #2f3238;
  font-weight: 700;
}
.site-private__fares {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.1rem;
}
.site-private__fares span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: #2f3238;
  font-size: .9rem;
  font-weight: 500;
}
.site-private__fares img {
  width: 28px;
  height: auto;
  object-fit: contain;
}
.site-private__content .site-btn {
  border-radius: 4px;
  padding: .8rem 1.8rem;
  font-weight: 500;
}
.site-private__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: right center;
}

/* Return-trip rebate banner */
.site-rebate {
  background: var(--fr-blue);
  color: #fff;
  padding: 2.75rem 0;
}
.site-rebate__inner {
  display: grid;
  grid-template-columns: 1.1fr 1.35fr auto;
  gap: 1.75rem 2rem;
  align-items: center;
}
.site-rebate h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  margin: 0 0 .65rem;
  line-height: 1.25;
  white-space: nowrap;
}
.site-rebate p {
  margin: 0;
  color: rgba(255,255,255,.95);
  font-size: 1rem;
  line-height: 1.55;
}
.site-rebate__col--wide p {
  max-width: 40rem;
}
.site-rebate .site-btn {
  white-space: nowrap;
  border-radius: 4px;
  padding: .85rem 1.8rem;
  font-weight: 500;
}

/* Business-Class — VIP bg is section-level bottom-right (WP stretch), not column-bound */
.site-business {
  padding: 2rem 0 0;
  background: #fff;
  overflow: hidden;
}
.site-business__top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
  gap: 0;
  align-items: end;
  margin-bottom: 0;
  padding-left: max(1rem, calc((100vw - 1260px) / 2));
  padding-right: 0;
  width: 100%;
  min-height: clamp(420px, 48vw, 560px);
  /* WP: background-position bottom right on stretched section */
  background-image: url("../img/vip_taxi_vienna2.webp");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto clamp(340px, 44vw, 560px);
}
.site-business__copy {
  padding: 1rem 1rem 2.75rem 0;
  max-width: 38rem;
  position: relative;
  z-index: 2;
}
.site-business__eyebrow {
  margin: 0 0 .85rem;
  color: var(--fr-blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.45;
}
.site-business__copy h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  color: #2f3238;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.site-business__title-line {
  display: block;
  white-space: nowrap;
}
.site-business__copy h2 span span { color: var(--fr-blue); }
.site-business__lead {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}
.site-business__visual {
  position: relative;
  z-index: 1;
  min-height: 420px;
  width: 100%;
  display: flex;
  justify-content: flex-start; /* vozač levo u desnoj koloni */
  align-items: flex-end;
  overflow: visible;
  padding-left: .5rem;
}
.site-business__chauffeur {
  position: relative;
  z-index: 1;
  width: clamp(360px, 42vw, 620px);
  max-width: none;
  height: auto;
  display: block;
  margin-left: 0;
  margin-right: 0;
  transform: translateX(24px);
  animation: site-chauffeur-in 1.15s cubic-bezier(.22, .8, .28, 1) .1s forwards;
}
@keyframes site-chauffeur-in {
  from {
    transform: translateX(64px);
    opacity: .75;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Mint banner — inset L/R like WP boxed stretch, not full-bleed */
.site-business__banner-wrap {
  position: relative;
  z-index: 2;
  margin: 1.25rem auto 0;
  width: min(100% - 2rem, 1260px);
  padding: 0;
}
.site-business__banner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, .55fr) minmax(40px, .2fr);
  align-items: center;
  gap: 1rem 1.5rem;
  width: 100%;
  max-width: none;
  min-height: clamp(90px, 9vw, 140px);
  padding: 1rem 1.5rem;
  background-color: transparent;
  background-image: url("../img/box-1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  clip-path: none;
}
.site-business__banner-text {
  max-width: 46rem;
}
.site-business__banner h3 {
  margin: 0 0 .4rem;
  color: #2f3238;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.3;
}
.site-business__banner p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  font-weight: 600;
}
.site-business__banner .site-btn {
  justify-self: start; /* dugme levo u desnoj koloni */
  border-radius: 4px;
  padding: .85rem 1.8rem;
  font-weight: 500;
  white-space: nowrap;
  margin: 0;
}

.site-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.site-feature h3 { font-size: 1.1rem; }
.site-feature p { margin: 0; color: var(--fr-muted); font-size: .95rem; }

.site-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
}
.site-split--reverse { direction: rtl; }
.site-split--reverse > * { direction: ltr; }
.site-split__media img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.site-statline {
  font-size: 1.15rem;
  color: var(--fr-ink);
}
.site-statline strong {
  color: var(--fr-blue);
  font-size: 1.6rem;
  margin-right: .35rem;
}

.site-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.site-price-card {
  text-align: center;
}
.site-price-card img {
  margin: 0 auto 1rem;
  max-height: 220px;
  width: auto;
  object-fit: contain;
}
.site-price-card__from {
  color: var(--fr-muted);
  margin: 0;
}
.site-price-card__from strong {
  color: var(--fr-ink);
  font-size: 1.35rem;
}
.site-muted { color: var(--fr-muted); }

.site-faq {
  display: grid;
  gap: .65rem;
  max-width: 820px;
}
.site-faq details {
  border: 1px solid #e8e8ef;
  border-radius: 8px;
  padding: .85rem 1rem;
  background: #fff;
}
.site-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--fr-ink);
  list-style: none;
}
.site-faq summary::-webkit-details-marker { display: none; }
.site-faq details[open] summary { color: var(--fr-blue); margin-bottom: .5rem; }
.site-faq p { margin: 0; color: var(--fr-muted); font-size: .95rem; }

.site-prose h2 { margin-top: 1.75rem; font-size: 1.25rem; }
.site-prose h2:first-child { margin-top: 0; }
.site-prose ul { margin: 0 0 1rem; }

.site-cta-band {
  background: linear-gradient(135deg, #1c1460 0%, #3c43ed 55%, #2a30c4 100%);
  color: #fff;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.site-cta-band h2 { color: #fff; margin: 0 0 .35rem; }
.site-cta-band p { margin: 0; opacity: .9; }

.site-page-hero {
  padding: 2.5rem 0 1.5rem;
  background: var(--fr-soft);
  border-bottom: 1px solid #ececf2;
}
.site-page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.site-page-hero p { color: var(--fr-muted); max-width: 40rem; margin: 0; }

.site-prose { max-width: 760px; }
.site-prose p { margin: 0 0 1rem; }
.site-prose ul { padding-left: 1.2rem; }

.site-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem;
}
.site-form {
  display: grid;
  gap: .85rem;
  background: #fff;
  border: 1px solid #e8e8ef;
  border-radius: 12px;
  padding: 1.25rem;
}
.site-form label { display: grid; gap: .3rem; font-weight: 600; font-size: .88rem; }
.site-form input,
.site-form textarea {
  border: 1px solid #d0d0d8;
  border-radius: 8px;
  padding: .7rem .8rem;
  font: inherit;
}
.site-alert-success {
  background: #e8faf2;
  border: 1px solid #adf1d2;
  color: #0b0033;
  border-radius: 8px;
  padding: .85rem 1rem;
  margin-bottom: 1rem;
}

.site-footer {
  position: relative;
  color: rgba(255,255,255,.75);
  margin-top: 3rem;
  padding: 5.5rem 0 0;
  background:
    linear-gradient(180deg, rgba(11,0,51,.48) 0%, rgba(11,0,51,.58) 100%),
    url("../img/footer-bg.jpeg") center / cover no-repeat;
  background-color: #0b0033;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr 1.1fr;
  gap: 2.5rem 2rem;
  padding-bottom: 3rem;
  width: min(100% - 2rem, 1260px);
}
.site-footer h3 {
  color: #fff;
  font-family: Epilogue, system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.35;
}
.site-footer ul { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.site-footer li { margin-bottom: 0; }
.site-footer li a {
  display: inline-block;
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.5;
}
.site-footer a:hover { color: var(--fr-accent); }
.site-footer__lead {
  color: #fff;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  max-width: 22rem;
}
.site-footer__phone {
  margin: 0 0 1rem;
}
.site-footer__phone a {
  color: var(--fr-accent);
  font-family: Epilogue, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
.site-footer__text {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0 0 .75rem;
  max-width: 24rem;
}
.site-footer__legal { margin-top: 1.25rem; }
.site-footer__legal a {
  font-size: .92rem;
  line-height: 2.1;
}
.site-footer__flags {
  display: flex;
  gap: .5rem;
  margin-top: 1.25rem;
}
.site-footer__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  background: rgba(255,255,255,.08);
  text-decoration: none;
}
.site-footer__flag:hover {
  border-color: var(--fr-accent);
  color: var(--fr-accent);
}
.site-footer__flag.is-active {
  border-color: var(--fr-accent);
  color: var(--fr-accent);
}
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 2rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-align: center;
}
.site-logo--footer {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.site-logo--footer .site-logo__img {
  width: min(308px, 85%);
  max-width: 308px;
  height: auto;
}

@media (max-width: 1100px) and (min-width: 981px) {
  .site-why__grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-why__intro { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .site-nav-toggle { display: block; }
  .site-header__inner {
    grid-template-columns: 1fr auto auto;
  }
  .site-nav--left {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #0b0033;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: .35rem;
  }
  .page-home .site-nav--left,
  .page-blog .site-nav--left,
  .page-buchen .site-nav--left { background: rgba(11,0,51,.96); }
  .site-page-banner {
    min-height: 220px;
    padding: calc(var(--fr-header-h) + 1.25rem) 1rem 2rem;
  }
  .site-buchen-intro {
    padding: 2rem 1rem 1rem;
  }
  .site-blog-article__layout {
    grid-template-columns: 1fr;
  }
  .site-blog-aside {
    position: static;
  }
  .site-blog-heading {
    min-height: 240px;
    padding: calc(var(--fr-header-h) + 1.5rem) 1rem 2.25rem;
  }
  .site-blog-heading h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .site-nav--left.is-open { display: flex; }
  .site-nav--left a {
    padding: .75rem .5rem;
    color: #fff !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .site-header__right .site-langs { display: none; }
  .site-grid-3,
  .site-price-grid,
  .site-split,
  .site-why__grid,
  .site-offers,
  .site-offers__features,
  .site-fleet__grid,
  .site-private,
  .site-rebate__inner,
  .site-business__top,
  .site-footer__grid,
  .site-contact-grid { grid-template-columns: 1fr; }
  .site-business__top {
    grid-template-columns: 1fr;
    padding-left: 1rem;
    padding-right: 1rem;
    min-height: 0;
    background-size: auto 260px;
  }
  .site-business__title-line {
    white-space: normal;
  }
  .site-business__visual {
    min-height: 280px;
    justify-content: center;
    padding-left: 0;
  }
  .site-business__chauffeur {
    width: min(100%, 420px);
    margin-inline: auto;
  }
  .site-business__banner-wrap {
    margin-top: 1rem;
    width: min(100% - 2rem, 1260px);
  }
  .site-business__banner {
    grid-template-columns: 1fr;
    background-image: none;
    background-color: var(--fr-accent);
    padding: .75rem 1rem;
    min-height: 0;
  }
  .site-business__banner .site-btn {
    justify-self: start;
  }
  .site-airport {
    padding: 2rem 1rem 0;
  }
  .site-airport__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .site-callbar--band {
    margin-top: 2rem;
  }
  .site-news {
    padding: 2.75rem 0 2.5rem;
  }
  .site-news__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .site-rebate .site-btn {
    justify-self: start;
  }
  .site-rebate h2 {
    white-space: normal;
  }
  .site-fleet__grid {
    gap: 2rem;
  }
  .site-fleet h2 {
    white-space: normal;
  }
  .site-offers__media {
    min-height: 0;
  }
  .site-offers__media img {
    clip-path: none;
  }
  .site-offers__content {
    padding: 1.75rem 1rem 2.5rem;
    margin-left: 0;
  }
  .site-private {
    padding-left: 1rem;
    column-gap: 0;
  }
  .site-private__content {
    padding: 2rem 1rem;
  }
  .site-private__media {
    order: -1;
    padding-left: 0;
  }
  .site-split--reverse { direction: ltr; }
  .site-hero {
    background-image: url("../img/hero-mobile.webp");
    background-position: center;
    background-size: cover;
  }
  .site-hero__pattern {
    width: 160%;
    top: 38%;
    opacity: .85;
  }
  .site-logo__img { height: 42px; width: auto; }
  .page-home .site-logo__img {
    width: 140px;
    max-width: 140px;
    height: auto;
  }
}
