/* =========================
   LOCAL FONTS
========================= */

/* PLUS JAKARTA SANS */

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/assets/fonts/plus-jakarta-sans-v12-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/assets/fonts/plus-jakarta-sans-v12-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/assets/fonts/plus-jakarta-sans-v12-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/assets/fonts/plus-jakarta-sans-v12-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* CORMORANT INFANT */

@font-face {
  font-family: 'Cormorant Infant';
  src: url('/assets/fonts/cormorant-infant-v22-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Infant';
  src: url('/assets/fonts/cormorant-infant-v22-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Infant';
  src: url('/assets/fonts/cormorant-infant-v22-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Infant';
  src: url('/assets/fonts/cormorant-infant-v22-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #071319;
  --bg-2: #08161d;
  --panel: #0b1c24;
  --text: #f5f1e8;
  --muted: #c5bcaf;
  --gold: #c9a86a;
  --gold-soft: #e2c58d;
  --border: rgba(201, 168, 106, 0.18);
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  --radius: 6px;
  --container: 1240px;
  --header-h: 86px;
}
h1, h2, h3 {
  font-feature-settings: "liga" 1, "dlig" 0, "swsh" 0;
}
.section-title {
  font-feature-settings: "swsh" 0 !important;
  font-family: 'Cormorant', serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, #061017 100%);
  color: var(--text);
  line-height: 1.55;
}

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

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  margin-bottom: 10px;
}

.section-title {
  margin: 0 0 16px;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-copy {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.page-main {
  padding-top: 0;
}

.page-section-offset {
  padding-top: calc(var(--header-h) + 30px);
}

.pattern-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* ========================================
   BUTTONS
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  color: var(--text);
  background: transparent;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: color 0.28s ease, border-color 0.28s ease, filter 0.28s ease, background 0.28s ease;
  z-index: 0;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
  z-index: -1;
}

.btn:hover {
  color: #0d1214;
  border-color: var(--gold-soft);
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn-primary {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #0d1214;
  border-color: var(--gold-soft);
}

.btn-primary::before {
  display: none;
}

.btn-primary:hover {
  color: #0d1214;
  border-color: #f0d39f;
  filter: brightness(1.04);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(201, 168, 106, 0.45);
}

.btn-wide {
  width: 100%;
}

/* ========================================
   HEADER
======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-h);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.site-header.header-transparent::before {
  opacity: 1;
  background: linear-gradient(
    180deg,
    rgba(4, 11, 15, 0.92) 0%,
    rgba(4, 11, 15, 0.55) 55%,
    rgba(4, 11, 15, 0.15) 100%
  );
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201, 168, 106, 0.06);
}

.site-header.scrolled::before,
.site-header.header-solid::before {
  opacity: 1;
  background: rgba(7, 19, 25, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 106, 0.14);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.header-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 30px;
  width: auto;
  display: block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.logo:hover .logo-img {
  opacity: 0.85;
  transform: translateY(-1px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav a {
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  transition: color 0.25s ease;
}

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

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a:hover,
.nav a.active {
  color: var(--gold-soft);
}

.header-cta {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.header-cta .btn {
  padding: 0 26px;
  min-height: 46px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1002;
}

.icon-svg {
  width: 20px;
  height: 20px;
  opacity: 0.9;
}

.mobile-action-btn svg {
  transform: translateY(1px);
}

.mobile-action-btn.btn-primary {
  border-radius: 10px;
  background: linear-gradient(90deg, #c9a86a 0%, #e2c58d 100%);
  box-shadow: 0 6px 18px rgba(201, 168, 106, 0.25);
}

.mobile-action-btn.btn-secondary {
  border: 1px solid rgba(201, 168, 106, 0.4);
  background: rgba(255, 255, 255, 0.02);
}

.mobile-action-btn.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 106, 0.08);
}

.mobile-call-btn,
.mobile-toggle,
.mobile-close {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(201, 168, 106, 0.24);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.mobile-call-btn {
  color: var(--gold-soft);
}

.mobile-call-btn:hover,
.mobile-toggle:hover,
.mobile-close:hover {
  border-color: rgba(201, 168, 106, 0.44);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-close {
  position: relative;
}

.mobile-close span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
}

.mobile-close span:first-child {
  transform: rotate(45deg);
}

.mobile-close span:last-child {
  transform: rotate(-45deg);
}

.site-header.header-transparent .mobile-call-btn,
.site-header.header-transparent .mobile-toggle,
.site-header.header-transparent .mobile-close {
  border-color: rgba(255, 255, 255, 0.16);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 12, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  padding: calc(22px + env(safe-area-inset-top)) 20px calc(22px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(7, 19, 25, 0.97) 0%, rgba(6, 16, 23, 0.985) 100%);
  backdrop-filter: blur(14px);
  transform: translateX(-100%);
  transition: transform 0.34s ease;
  z-index: 999;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-panel.open {
  transform: translateX(0);
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.mobile-panel-logo {
  display: inline-flex;
  align-items: center;
}

.mobile-nav {
  display: grid;
  gap: 10px;
  font-size: 1.14rem;
  font-weight: 700;
}

.mobile-nav a {
  display: block;
  padding: 16px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.22s ease, background 0.22s ease, padding-left 0.22s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold-soft);
  background: rgba(201, 168, 106, 0.08);
  padding-left: 18px;
}

.mobile-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.mobile-action-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.mobile-action-btn span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.mobile-action-btn.btn-primary svg,
.mobile-action-btn.btn-primary span {
  color: #0d1214;
}

.mobile-action-btn.btn-secondary svg,
.mobile-action-btn.btn-secondary span {
  color: var(--text);
}

.mobile-maps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.mobile-maps a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 0 10px;
  border: 1px solid rgba(201, 168, 106, 0.18);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.2;
  transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.mobile-maps a:hover {
  border-color: rgba(201, 168, 106, 0.4);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

/* ========================================
   HERO
======================================== */

.hero {
  position: relative;
  overflow: hidden;
}

.hero.hero-home {
  min-height: 100vh;
}

.hero.hero-subpage {
  min-height: clamp(420px, 62vh, 680px);
}

.slides {
  position: relative;
  min-height: inherit;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
}

.slide:first-child,
.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 12, 0.88) 0%, rgba(3, 9, 12, 0.56) 36%, rgba(3, 9, 12, 0.34) 100%),
    linear-gradient(180deg, rgba(3, 9, 12, 0.10) 0%, rgba(3, 9, 12, 0.24) 100%);
  z-index: 1;
  pointer-events: none;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: 110px 0 130px;
}

.hero.hero-subpage .hero-content {
  padding: 140px 0 90px;
}

.hero-copy {
  max-width: 760px;
  transform: translateY(18px);
}

.hero.hero-subpage .hero-copy {
  max-width: 680px;
  transform: none;
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: clamp(3.4rem, 7.8vw, 6.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.045em;
  font-weight: 700;
  max-width: 820px;
}

.hero.hero-subpage .hero-copy h1 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.1;
  max-width: 90%;
}

.hero-copy p {
  max-width: 560px;
  margin: 0 0 34px;
  color: #ddd3c5;
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-actions .btn {
  min-width: 190px;
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 4;
}

.dot,
.diamond-dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 2px solid #f2eee6;
  background: transparent;
  transform: rotate(45deg);
  position: relative;
  cursor: pointer;
}

.dot::before,
.diamond-dot::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: transparent;
}

.dot.active,
.diamond-dot.active {
  border-color: var(--gold);
}

.dot.active::before,
.diamond-dot.active::before {
  background: rgba(243, 239, 230, 0.96);
}

/* ========================================
   GENERIC CONTENT / CARDS
======================================== */

.simple-content {
  max-width: 900px;
}

.simple-content p {
  color: var(--muted);
  font-size: 1.04rem;
}

.content-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.content-card {
  background: linear-gradient(180deg, rgba(18, 41, 50, 0.62), rgba(8, 20, 26, 0.96));
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
}

.content-card h3 {
  margin: 0 0 10px;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 1.8rem;
  font-feature-settings: "swsh" 0, "dlig" 0 !important;
  font-variant-ligatures: no-discretionary-ligatures;
}
.content-card h3,
.about-page .about-point-card h3,
.home .why-item h3,
.sell-option-card h3,
.process-step h3,
.comparison-card h3 {
  font-feature-settings: "swsh" 0, "dlig" 0 !important;
  font-variant-ligatures: no-discretionary-ligatures;
}

.content-card p {
  margin: 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

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

.stat {
  background: linear-gradient(180deg, rgba(18, 41, 50, 0.62), rgba(8, 20, 26, 0.96));
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 22px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat strong {
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 2.25rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.stat span {
  color: #d2c7b8;
}

/* ========================================
   HOME / SERVICES / FLEET / GALLERY
======================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #08141a;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 44%;
  bottom: 0;
  background: linear-gradient(180deg, rgba(4, 11, 15, 0) 0%, rgba(4, 11, 15, 0.28) 18%, rgba(4, 11, 15, 0.84) 58%, rgba(4, 11, 15, 0.98) 100%);
  transform: translateY(34%);
  opacity: 0;
  transition: transform 0.42s ease, opacity 0.42s ease;
  z-index: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 11, 15, 0.04) 0%, rgba(4, 11, 15, 0.16) 45%, rgba(4, 11, 15, 0.3) 100%);
  z-index: 0;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card:hover::before {
  transform: translateY(0);
  opacity: 1;
}

.service-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.service-body h3 {
  margin: 0;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 1.95rem;
  font-weight: 700;
  color: #fffaf1;
  display: inline-block;
  padding: 5px 5px 5px 0;
  background: linear-gradient(180deg, rgba(4, 11, 15, 0.12) 0%, rgba(4, 11, 15, 0.6) 100%);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

.service-copy {
  max-width: 540px;
  color: #efe6d8;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.service-card:hover .service-copy {
  opacity: 0.96;
  transform: translateY(0);
}

.service-cta {
  width: 100%;
  margin: 10px auto 0;
  opacity: 0;
  transform: translateY(42px);
  transition: transform 0.34s ease, opacity 0.34s ease;
}

.service-card:hover .service-cta {
  opacity: 1;
  transform: translateY(0);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.car-card {
  background: linear-gradient(180deg, rgba(18, 41, 50, 0.68), rgba(8, 20, 26, 0.96));
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.car-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 106, 0.36);
}

.car-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.car-body {
  padding: 16px;
}

.car-body h3 {
  margin: 0 0 6px;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 1.32rem;
  font-weight: 600;
}

.car-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.gallery-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* ========================================
   TESTIMONIALS
======================================== */

.testimonial-slider {
  position: relative;
  min-height: 250px;
}

.testimonial {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 36px 24px;
  border-top: 1px solid rgba(201, 168, 106, 0.12);
  border-bottom: 1px solid rgba(201, 168, 106, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.testimonial.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: relative;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.24em;
  margin-bottom: 20px;
}

.testimonial blockquote {
  margin: 0;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.6;
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  color: var(--gold);
  font-style: normal;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 26px;
}

/* ========================================
   FOOTER / NEWSLETTER
======================================== */

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}

.contact-box,
.newsletter-box {
  background: linear-gradient(180deg, rgba(18, 41, 50, 0.62), rgba(8, 20, 26, 0.96));
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px;
}

.contact-box strong,
.newsletter-box strong {
  display: block;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 1.04rem;
}

.contact-box span,
.newsletter-box span {
  color: #f0ebe2;
  font-size: 1.02rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.newsletter-form input {
  flex: 1;
  min-height: 46px;
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 106, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 24px;
  padding-top: 18px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-col h4 {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 500;
  font-size: 1.04rem;
}

.footer-col p,
.footer-col li,
.footer-col a {
  color: #f0ebe2;
  font-size: 1.02rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 106, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #f0ebe2;
  font-size: 1rem;
}

/* ========================================
   LEGAL
======================================== */

.legal-content {
  max-width: 920px;
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 2rem;
}

.legal-content p {
  color: var(--muted);
}

/* ========================================
   FORM ALERTS
======================================== */

.form-alert {
  margin-top: 24px;
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: 6px;
  border: 1px solid;
}

.form-alert strong {
  display: block;
  margin-bottom: 8px;
}

.form-alert ul,
.form-review-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.form-alert-success {
  background: rgba(44, 125, 88, 0.12);
  border-color: rgba(44, 125, 88, 0.35);
  color: #d8f3e6;
}

.form-alert-error {
  background: rgba(176, 52, 52, 0.12);
  border-color: rgba(176, 52, 52, 0.35);
  color: #ffdada;
}

/* ========================================
   VERKAUFEN PAGE
======================================== */

.sell-options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.sell-option-card {
  background: linear-gradient(180deg, rgba(18, 41, 50, 0.62), rgba(8, 20, 26, 0.96));
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.sell-option-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 168, 106, 0.3);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.sell-option-card h3 {
  margin: 0;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.sell-option-card p {
  margin: 0;
  color: var(--muted);
  flex: 1;
}

.valuation-banner {
  margin-top: 26px;
  padding: 30px;
  border-radius: 6px;
  border: 1px solid rgba(201, 168, 106, 0.22);
  background: linear-gradient(90deg, rgba(201, 168, 106, 0.12), rgba(8, 20, 26, 0.96));
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 24px;
  align-items: center;
}

.valuation-banner h3 {
  margin: 0 0 10px;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 2rem;
}

.valuation-banner p {
  margin: 0;
  color: #efe6d8;
}

.valuation-banner-action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sell-comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.comparison-card {
  background: linear-gradient(180deg, rgba(18, 41, 50, 0.62), rgba(8, 20, 26, 0.96));
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
}

.comparison-card h3 {
  margin: 0 0 16px;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 1.7rem;
}

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

.comparison-card li {
  color: var(--muted);
}

.comparison-card strong {
  color: #f0ebe2;
}

.process-steps {
  display: grid;
  gap: 16px;
  margin-top: 34px;
  max-width: 860px;
}

.process-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(18, 41, 50, 0.62), rgba(8, 20, 26, 0.96));
}

.process-step-number {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  border: 1px solid rgba(201, 168, 106, 0.25);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 0.82rem;
}

.process-step h3 {
  margin: 0 0 8px;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 1.7rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.multi-step-form-card {
  margin-top: 34px;
  padding: 30px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(18, 41, 50, 0.62), rgba(8, 20, 26, 0.96));
  position: relative;
  overflow: hidden;
}

.multi-step-form h3 {
  margin: 0 0 20px;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 2rem;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.request-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.request-type-option {
  position: relative;
  display: block;
  cursor: pointer;
  min-height: 92px;
}

.request-type-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.request-type-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  border-radius: 6px;
  border: 1px solid rgba(201, 168, 106, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: #f0ebe2;
  font-weight: 700;
  text-align: center;
  padding: 0.75rem;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.request-type-option input:checked + span {
  border-color: rgba(201, 168, 106, 0.4);
  background: rgba(201, 168, 106, 0.08);
  color: #fffaf1;
}

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

.form-grid-single {
  grid-template-columns: 1fr;
  margin-top: 16px;
}

.form-grid-full {
  grid-column: 1 / -1;
}

.multi-step-form label {
  display: grid;
  gap: 8px;
  color: #f0ebe2;
}

.multi-step-form input,
.multi-step-form textarea,
.multi-step-form select {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 106, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 12px 14px;
}

.multi-step-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-review-note {
  margin: 0 0 20px;
  color: var(--muted);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

.form-submit-btn[hidden] {
  display: none;
}

.verkaufen-page .form-field {
  display: block;
}

.verkaufen-page .form-label {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #f5efe6;
}

.verkaufen-page .choice-grid {
  display: grid;
  gap: 12px;
}

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

.verkaufen-page .choice-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.verkaufen-page .choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.verkaufen-page .choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.verkaufen-page .choice-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(200, 169, 106, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  color: #f5efe6;
  font-size: 15px;
  text-align: center;
  transition: all 0.25s ease;
}

.verkaufen-page .choice-card:hover span {
  border-color: rgba(214, 179, 106, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.verkaufen-page .choice-card input:checked + span {
  border-color: #d6b36a;
  background: rgba(214, 179, 106, 0.14);
  color: #fff7e8;
  box-shadow: inset 0 0 0 1px rgba(214, 179, 106, 0.28);
}

.verkaufen-page .choice-card input:focus + span {
  box-shadow:
    inset 0 0 0 1px rgba(214, 179, 106, 0.28),
    0 0 0 3px rgba(214, 179, 106, 0.08);
}

.verkaufen-page .upload-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 28px 24px;
  border: 1px dashed rgba(214, 179, 106, 0.35);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.015);
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.verkaufen-page .upload-dropzone:hover {
  border-color: rgba(214, 179, 106, 0.7);
  background:
    linear-gradient(180deg, rgba(214, 179, 106, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.verkaufen-page .upload-dropzone.is-active {
  border-color: #d6b36a;
  background:
    linear-gradient(180deg, rgba(214, 179, 106, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 3px rgba(214, 179, 106, 0.08);
}

.verkaufen-page .upload-dropzone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border: 1px solid rgba(214, 179, 106, 0.28);
  border-radius: 999px;
  color: #d6b36a;
  font-size: 30px;
  line-height: 1;
}

.verkaufen-page .upload-dropzone-title {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
  color: #f5efe6;
}

.verkaufen-page .upload-dropzone-text {
  display: block;
  max-width: 540px;
  color: rgba(245, 239, 230, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.verkaufen-page .upload-dropzone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid rgba(214, 179, 106, 0.5);
  border-radius: 4px;
  background: rgba(214, 179, 106, 0.12);
  color: #f3d89b;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.verkaufen-page .upload-dropzone:hover .upload-dropzone-button {
  background: rgba(214, 179, 106, 0.18);
  border-color: rgba(214, 179, 106, 0.8);
}

.verkaufen-page .upload-status {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(201, 166, 90, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.verkaufen-page .upload-file-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.verkaufen-page .upload-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(214, 179, 106, 0.16);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  color: #f5efe6;
  font-size: 14px;
}

.verkaufen-page .upload-file-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.verkaufen-page .upload-file-size {
  color: rgba(245, 239, 230, 0.6);
  white-space: nowrap;
}

.verkaufen-page .form-top-progress {
  position: relative;
  height: 42px;
  margin: -1px -1px 2rem -1px;
  border-bottom: 1px solid rgba(201, 166, 90, 0.18);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.verkaufen-page .form-top-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 20%;
  background: linear-gradient(90deg, #b89249 0%, #d8b56d 65%, #ecd39a 100%);
  transition: width 0.28s ease;
}

.verkaufen-page .form-top-progress-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #0a1117;
  text-shadow: none;
  pointer-events: none;
}

.verkaufen-page .consent-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: nowrap;
  line-height: 1.5;
  margin-top: 1rem;
}

.verkaufen-page .consent-inline input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 18px;
}

.verkaufen-page .consent-inline span {
  display: inline;
}

.verkaufen-page .form-submit-btn[hidden],
.verkaufen-page #nextStepBtn[hidden],
.verkaufen-page #prevStepBtn[hidden],
.verkaufen-page #uploadStatus[hidden] {
  display: none !important;
}

.verkaufen-page .field-error input,
.verkaufen-page .field-error textarea,
.verkaufen-page .field-error select {
  border-color: #c85b5b !important;
  box-shadow: 0 0 0 1px rgba(200, 91, 91, 0.35);
}

.verkaufen-page .field-error-message {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #d98989;
}

.verkaufen-page .request-type-option.is-error {
  border-color: #c85b5b !important;
  box-shadow: 0 0 0 1px rgba(200, 91, 91, 0.35);
}

.verkaufen-page .consent-inline.is-error {
  color: #d98989;
}

.verkaufen-page .form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.verkaufen-page .form-actions .btn,
.verkaufen-page .form-actions button {
  width: 100%;
  min-width: 0;
}

/* ========================================
   VERKAUFEN DANKE PAGE
======================================== */

.verkaufen-danke-page .thankyou-section {
  padding-top: 150px;
  padding-bottom: 110px;
}

.verkaufen-danke-page .thankyou-hero {
  margin-bottom: 42px;
}

.verkaufen-danke-page .thankyou-hero .section-title {
  max-width: 980px;
  margin-bottom: 18px;
}

.verkaufen-danke-page .thankyou-hero .section-copy {
  max-width: 760px;
}

.verkaufen-danke-page .thankyou-next-steps {
  margin-bottom: 34px;
  padding: 28px;
  border: 1px solid rgba(200, 169, 106, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.verkaufen-danke-page .thankyou-next-steps-head {
  margin-bottom: 22px;
}

.verkaufen-danke-page .thankyou-next-steps-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.verkaufen-danke-page .thankyou-next-steps-head p {
  margin: 0;
  color: rgba(245, 239, 230, 0.72);
}

.verkaufen-danke-page .thankyou-next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.verkaufen-danke-page .thankyou-step-card {
  padding: 22px 20px;
  border: 1px solid rgba(200, 169, 106, 0.12);
  background: rgba(255, 255, 255, 0.018);
}

.verkaufen-danke-page .thankyou-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 1px solid rgba(214, 179, 106, 0.28);
  color: #d6b36a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.verkaufen-danke-page .thankyou-step-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.verkaufen-danke-page .thankyou-step-card p {
  margin: 0;
  color: rgba(245, 239, 230, 0.72);
  line-height: 1.65;
}

.verkaufen-danke-page .thankyou-card {
  padding: 34px 30px 30px;
  border: 1px solid rgba(200, 169, 106, 0.14);
  background: rgba(255, 255, 255, 0.015);
}

.verkaufen-danke-page .thankyou-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.verkaufen-danke-page .thankyou-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(214, 179, 106, 0.35);
  background: rgba(214, 179, 106, 0.10);
  color: #f3d89b;
  font-size: 14px;
  font-weight: 600;
}

.verkaufen-danke-page .thankyou-reference {
  color: rgba(245, 239, 230, 0.74);
  font-size: 15px;
}

.verkaufen-danke-page .thankyou-reference strong {
  color: #f5efe6;
}

.verkaufen-danke-page .thankyou-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.verkaufen-danke-page .thankyou-block h3 {
  margin: 0 0 18px;
  font-size: 20px;
}

.verkaufen-danke-page .thankyou-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.verkaufen-danke-page .thankyou-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.6;
}

.verkaufen-danke-page .thankyou-list li strong {
  color: #f5efe6;
}

.verkaufen-danke-page .thankyou-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ========================================
   ABOUT PAGE
======================================== */

.about-page .about-philosophy-section,
.about-page .about-why-section {
  position: relative;
  overflow: hidden;
}

.about-page .about-philosophy-section {
  background: #071319;
  padding-top: 120px;
  padding-bottom: 92px;
}

.about-page .about-philosophy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/pattern.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.about-page .about-philosophy-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 19, 25, 0.65),
    rgba(7, 19, 25, 0.85)
  );
  pointer-events: none;
  z-index: 1;
}

.about-page .about-philosophy-section > .container {
  position: relative;
  z-index: 2;
}

.about-page .about-philosophy-panel {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 34px 38px;
  border: 1px solid rgba(201, 168, 106, 0.12);
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    rgba(18, 41, 50, 0.34),
    rgba(8, 20, 26, 0.72)
  );
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.about-page .about-philosophy-panel .section-title {
  max-width: 820px;
  margin-bottom: 20px;
}

.about-page .about-philosophy-panel p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.about-page .content-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.about-page .about-why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/pattern.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  pointer-events: none;
  z-index: 0;
}

.about-page .about-why-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 16, 23, 0.85) 0%,
    rgba(6, 16, 23, 0.2) 20%,
    rgba(6, 16, 23, 0) 50%,
    rgba(6, 16, 23, 0.2) 80%,
    rgba(6, 16, 23, 0.85) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.about-page .about-why-section > .container {
  position: relative;
  z-index: 2;
}

.about-page .about-highlight-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.about-page .about-highlight-copy .section-title {
  max-width: 700px;
}

.about-page .about-highlight-copy p {
  max-width: 660px;
  color: var(--muted);
}

.about-page .about-highlight-points {
  display: grid;
  gap: 18px;
}

.about-page .about-point-card {
  padding: 24px 24px 22px;
  border: 1px solid rgba(201, 168, 106, 0.12);
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    rgba(18, 41, 50, 0.34),
    rgba(8, 20, 26, 0.72)
  );
}

.about-page .about-point-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 1px solid rgba(201, 168, 106, 0.24);
  border-radius: 6px;
  color: var(--gold);
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.about-page .about-point-card h3 {
  margin: 0 0 10px;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 1.7rem;
}

.about-page .about-point-card p {
  margin: 0;
  color: var(--muted);
}

.about-page .cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 34px 38px;
  border: 1px solid rgba(201, 168, 106, 0.14);
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    rgba(18, 41, 50, 0.34),
    rgba(8, 20, 26, 0.72)
  );
}

.about-page .cta-panel-copy .section-title {
  margin-bottom: 14px;
}

.about-page .cta-panel-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 660px;
}

.about-page .cta-panel-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-page .hero-copy {
  max-width: 620px;
}

.about-page .hero.hero-subpage .hero-copy {
  max-width: 620px;
}

.about-page .hero.hero-subpage .hero-copy h1 {
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.about-page .hero.hero-subpage .slide::before {
  background:
    linear-gradient(
      90deg,
      rgba(3, 9, 12, 0.94) 0%,
      rgba(3, 9, 12, 0.74) 28%,
      rgba(3, 9, 12, 0.42) 56%,
      rgba(3, 9, 12, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 9, 12, 0.28) 0%,
      rgba(3, 9, 12, 0.46) 100%
    );
}

.about-page .hero.hero-subpage .slide img {
  filter: brightness(0.72) saturate(0.88) contrast(1.02);
}
.home-fahrzeuge-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.home #home-fahrzeuge-preview .home-fahrzeuge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

@media (max-width: 1100px) {
  .home #home-fahrzeuge-preview .home-fahrzeuge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home #home-fahrzeuge-preview .home-fahrzeuge-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ========================================
   KONTAKT PAGE
======================================== */

.kontakt-page .kontakt-main-section {
  position: relative;
}

.kontakt-page .kontakt-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 1px minmax(0, 1.05fr);
  gap: 34px;
  padding: 34px 38px;
  border: 1px solid rgba(201, 168, 106, 0.14);
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    rgba(18, 41, 50, 0.34),
    rgba(8, 20, 26, 0.78)
  );
  box-shadow: var(--shadow);
}

.kontakt-page .kontakt-panel-side {
  min-width: 0;
}

.kontakt-page .kontakt-panel-info .section-title,
.kontakt-page .kontakt-panel-form .section-title {
  margin-bottom: 14px;
}

.kontakt-page .kontakt-panel-info .section-copy,
.kontakt-page .kontakt-panel-form .section-copy {
  max-width: 620px;
}

.kontakt-page .kontakt-panel-form .section-copy {
  margin-bottom: 24px;
}

.kontakt-page .kontakt-panel-divider {
  position: relative;
  width: 1px;
  min-height: 100%;
}

.kontakt-page .kontakt-panel-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(201, 168, 106, 0.24) 18%,
    rgba(201, 168, 106, 0.55) 50%,
    rgba(201, 168, 106, 0.24) 82%,
    transparent 100%
  );
}

.kontakt-page .contact-info-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kontakt-page .contact-info-item span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.kontakt-page .contact-info-item strong {
  display: block;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 600;
  color: #fffaf1;
}

.kontakt-page .contact-info-item strong a {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s ease;
}

.kontakt-page .contact-info-item strong a:hover {
  color: var(--gold-soft);
}

.kontakt-page .contact-divider {
  height: 1px;
  width: 100%;
  position: relative;
}

.kontakt-page .contact-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 106, 0.20) 18%,
    rgba(201, 168, 106, 0.52) 50%,
    rgba(201, 168, 106, 0.20) 82%,
    transparent 100%
  );
}

.kontakt-page .kontakt-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.kontakt-page .kontakt-action-grid .btn {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.kontakt-page .kontakt-trust-note {
  margin-top: 22px;
  color: rgba(201, 168, 106, 0.9);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.kontakt-page .contact-form {
  display: grid;
  gap: 14px;
}

.kontakt-page .contact-form label {
  display: grid;
  gap: 8px;
  color: #f0ebe2;
}

.kontakt-page .contact-form input,
.kontakt-page .contact-form textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 106, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 12px 14px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.kontakt-page .contact-form input:focus,
.kontakt-page .contact-form textarea:focus {
  outline: none;
  border-color: rgba(201, 168, 106, 0.42);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.08);
  background: rgba(255, 255, 255, 0.055);
}

.kontakt-page .contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.kontakt-page .contact-form .btn {
  width: 100%;
  margin-top: 8px;
}

.kontakt-page .hero.hero-subpage .hero-copy {
  max-width: 660px;
}

.kontakt-page .hero.hero-subpage .hero-copy h1 {
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.kontakt-page .hero.hero-subpage .slide::before {
  background:
    linear-gradient(
      90deg,
      rgba(3, 9, 12, 0.92) 0%,
      rgba(3, 9, 12, 0.6) 40%,
      rgba(3, 9, 12, 0.3) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 9, 12, 0.25) 0%,
      rgba(3, 9, 12, 0.45) 100%
    );
}

.kontakt-page .hero.hero-subpage .slide img {
  filter: brightness(0.78) saturate(0.92);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1100px) {
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

@media (max-width: 991px) {
  .verkaufen-danke-page .thankyou-section {
    padding-top: 130px;
    padding-bottom: 90px;
  }

  .verkaufen-danke-page .thankyou-next-steps-grid,
  .verkaufen-danke-page .thankyou-grid,
  .about-page .content-grid-3,
  .about-page .about-highlight-grid,
  .about-page .cta-panel,
  .kontakt-page .kontakt-panel {
    grid-template-columns: 1fr;
  }

  .about-page .cta-panel {
    align-items: start;
  }

  .kontakt-page .kontakt-panel {
    gap: 24px;
  }

  .kontakt-page .kontakt-panel-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
  }

  .kontakt-page .kontakt-panel-divider::before {
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(201, 168, 106, 0.24) 18%,
      rgba(201, 168, 106, 0.55) 50%,
      rgba(201, 168, 106, 0.24) 82%,
      transparent 100%
    );
  }
}

@media (max-width: 900px) {
  .nav,
  .header-cta {
    display: none;
  }

  .header-actions {
    display: flex;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .services-grid,
  .gallery-grid,
  .stats,
  .content-grid-2,
  .sell-options-grid,
  .sell-comparison-grid,
  .form-grid,
  .form-progress {
    grid-template-columns: 1fr;
  }

  .valuation-banner {
    grid-template-columns: 1fr;
  }

  .valuation-banner-action {
    justify-content: flex-start;
  }

  .hero-copy {
    max-width: 100%;
    transform: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 11vw, 4.5rem);
    line-height: 0.94;
  }

  .hero-copy p {
    max-width: 100%;
  }

  .service-card,
  .service-card img {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .logo-img {
    height: 27px;
  }

  .verkaufen-page .form-top-progress {
    height: 38px;
    margin-bottom: 1.5rem;
  }

  .verkaufen-page .form-top-progress-text {
    padding: 0 0.85rem;
    font-size: 0.82rem;
  }

  .verkaufen-page .consent-inline {
    align-items: flex-start;
    gap: 0.7rem;
  }

  .verkaufen-page .request-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .verkaufen-page .request-type-option {
    min-height: 84px;
  }

  .verkaufen-page .request-type-option span {
    padding: 0.65rem;
    font-size: 0.98rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 74px;
  }

  .section {
    padding: 70px 0;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .gallery-grid img,
  .car-card img {
    height: 240px;
  }

  .service-card,
  .service-card img {
    min-height: 340px;
  }

  .hero-content {
    padding: 90px 0 110px;
  }

  .hero.hero-subpage .hero-content {
    padding: 118px 0 68px;
  }

  .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 46px;
    padding: 0 12px;
    font-size: 0.84rem;
    letter-spacing: 0;
  }

  .service-cta {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .header-wrap {
    gap: 12px;
    padding: 0 4px;
  }

  .header-actions {
    gap: 8px;
  }

  .mobile-call-btn,
  .mobile-toggle,
  .mobile-close {
    width: 44px;
    height: 44px;
  }

  .mobile-panel {
    padding: calc(18px + env(safe-area-inset-top)) 16px calc(18px + env(safe-area-inset-bottom));
  }

  .mobile-panel-head {
    margin-bottom: 22px;
  }

  .mobile-nav {
    font-size: 1.08rem;
  }

  .mobile-actions {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-maps {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-action-btn {
    min-height: 50px;
    padding: 0 12px;
  }

  .mobile-action-btn span,
  .mobile-maps a span {
    font-size: 0.88rem;
  }

  .multi-step-form-card,
  .valuation-banner {
    padding: 22px;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .verkaufen-page .form-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .verkaufen-page .form-actions .btn,
  .verkaufen-page .form-actions button {
    min-height: 48px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 14px;
  }

  .verkaufen-danke-page .thankyou-section {
    padding-top: 118px;
    padding-bottom: 72px;
  }

  .verkaufen-danke-page .thankyou-next-steps,
  .verkaufen-danke-page .thankyou-card {
    padding: 22px 18px;
  }

  .verkaufen-danke-page .thankyou-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .verkaufen-danke-page .thankyou-actions .btn {
    width: 100%;
  }

  .about-page .about-philosophy-section {
    padding-top: 90px;
    padding-bottom: 70px;
  }

  .about-page .about-philosophy-panel,
  .about-page .cta-panel,
  .about-page .about-point-card,
  .kontakt-page .kontakt-panel {
    padding: 22px 18px;
  }

  .about-page .content-grid-3 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-page .about-philosophy-panel p,
  .about-page .about-highlight-copy p,
  .about-page .cta-panel-copy p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .about-page .cta-panel-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-page .cta-panel-actions .btn {
    width: 100%;
  }

  .kontakt-page .kontakt-panel {
    gap: 20px;
  }

  .kontakt-page .kontakt-action-grid {
    grid-template-columns: 1fr;
  }

  .kontakt-page .kontakt-action-grid .btn {
    width: 100%;
  }

  .kontakt-page .contact-info-item strong {
    font-size: 1.38rem;
  }
}

@media (max-width: 480px) {
  .hero.hero-subpage .hero-copy h1 {
    font-size: 32px;
    line-height: 1.15;
    max-width: 100%;
  }

  .verkaufen-page .form-step h3 {
    font-size: 26px;
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .verkaufen-page .form-step-intro {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 16px;
    max-width: 30ch;
  }

  .verkaufen-page .multi-step-form-card {
    padding: 18px 14px;
  }

  .verkaufen-page .form-top-progress-text {
    font-size: 13px;
  }

  .verkaufen-page .form-top-progress {
    margin-bottom: 20px;
  }

  .verkaufen-page .request-type-grid,
  .verkaufen-page .choice-grid {
    gap: 10px;
  }

  .verkaufen-page .request-type-option {
    min-height: auto !important;
    height: auto !important;
  }

  .verkaufen-page .request-type-option span {
    min-height: 56px !important;
    padding: 8px 10px !important;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
  }

  .verkaufen-page .choice-card span {
    min-height: 82px;
    padding: 10px;
    font-size: 14px;
    line-height: 1.25;
  }

  .verkaufen-page .form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .verkaufen-page .form-actions .btn,
  .verkaufen-page .form-actions button {
    width: 100%;
    min-height: 46px;
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .verkaufen-page .choice-grid-3,
  .verkaufen-page .choice-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .verkaufen-page .choice-card span {
    min-height: 42px;
    padding: 9px 8px;
    font-size: 13px;
  }

  .verkaufen-page .hero-copy h1 {
    font-size: 34px;
    line-height: 1.15;
  }
}

@media (max-width: 768px) {
  .verkaufen-page .choice-grid-3,
  .verkaufen-page .choice-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .verkaufen-page .choice-card span {
    min-height: 44px;
    padding: 10px 10px;
    font-size: 14px;
    line-height: 1.25;
  }

  .verkaufen-page .choice-grid {
    gap: 10px;
  }

  .verkaufen-page .form-label {
    margin-bottom: 10px;
  }
}
/* ========================================
   FAHRZEUGE PAGE
======================================== */

.fahrzeuge-page .hero.hero-subpage .hero-copy {
  max-width: 760px;
}

.fahrzeuge-page .hero.hero-subpage .slide::before {
  background:
    linear-gradient(
      90deg,
      rgba(3, 9, 12, 0.92) 0%,
      rgba(3, 9, 12, 0.68) 38%,
      rgba(3, 9, 12, 0.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 9, 12, 0.20) 0%,
      rgba(3, 9, 12, 0.42) 100%
    );
}

.fahrzeuge-page .hero.hero-subpage .slide img {
  filter: brightness(0.74) saturate(0.92);
}

.fahrzeuge-page .fahrzeuge-list-section {
  border-top: 1px solid rgba(201, 168, 106, 0.1);
  border-bottom: 1px solid rgba(201, 168, 106, 0.1);
  background: linear-gradient(180deg, rgba(6,16,23,0.95), rgba(7,19,25,1));
}

.fahrzeuge-page .fahrzeuge-list-head {
  margin-bottom: 30px;
  max-width: 760px;
}

.fahrzeuge-page .fahrzeuge-list-head .section-title {
  margin-bottom: 0;
}

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

/* =========================
   CARD
========================= */

.fahrzeuge-page .fahrzeug-card {
  overflow: hidden;
  border: 1px solid rgba(201, 168, 106, 0.15);
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    rgba(18, 41, 50, 0.44),
    rgba(8, 20, 26, 0.96)
  );
  box-shadow: var(--shadow);
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.fahrzeuge-page .fahrzeug-card:hover {
  border-color: rgba(201, 168, 106, 0.28);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.34);
}

.fahrzeuge-page .fahrzeug-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.fahrzeuge-page .fahrzeug-card {
  transform: translateZ(0);
}
/* =========================
   IMAGE (FIXED – NO BLINK)
========================= */

.fahrzeuge-page .fahrzeug-card-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #071319;
  isolation: isolate;
}
.fahrzeuge-page .fahrzeug-card:hover .fahrzeug-card-image,
.fahrzeuge-page .fahrzeug-card:hover .fahrzeug-card-image-wrap img {
  transform: none !important;
}
.fahrzeuge-page .fahrzeug-card-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.5s ease;
  will-change: transform;
}

.fahrzeuge-page .fahrzeug-card:hover .fahrzeug-card-image {
  transform: none;
}

.fahrzeuge-page .fahrzeug-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7,19,25,0.02) 0%,
    rgba(7,19,25,0.84) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.fahrzeuge-page .fahrzeug-card-badge,
.fahrzeuge-page .fahrzeug-card-price {
  z-index: 2;
}

/* Overlay */

.fahrzeuge-page .fahrzeug-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7,19,25,0.02) 0%,
    rgba(7,19,25,0.84) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Badge + Price */

.fahrzeuge-page .fahrzeug-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(201, 168, 106, 0.3);
  border-radius: 6px;
  background: rgba(7, 19, 25, 0.86);
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  z-index: 2;
}

.fahrzeuge-page .fahrzeug-card-price {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #0d1214;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0,0,0,0.24);
  z-index: 2;
}

/* =========================
   BODY
========================= */

.fahrzeuge-page .fahrzeug-card-body {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.fahrzeuge-page .fahrzeug-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.fahrzeuge-page .fahrzeug-card-head h3 {
  margin: 0;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 2rem;
  line-height: 1.05;
  color: #fffaf1;
}

.fahrzeuge-page .fahrzeug-card-head span {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.fahrzeuge-page .fahrzeug-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.fahrzeuge-page .fahrzeug-card-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(201, 168, 106, 0.14);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 0.92rem;
}

.fahrzeuge-page .fahrzeug-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 0.94rem;
}

.fahrzeuge-page .fahrzeug-card-arrow {
  color: var(--gold-soft);
  font-size: 1.1rem;
  transition: transform 0.28s ease;
}

.fahrzeuge-page .fahrzeug-card:hover .fahrzeug-card-arrow {
  transform: translateX(3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .fahrzeuge-page .fahrzeuge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .fahrzeuge-page .fahrzeuge-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fahrzeuge-page .fahrzeug-card-body {
    padding: 20px 18px;
  }

  .fahrzeuge-page .fahrzeug-card-head h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 640px) {
  .fahrzeuge-page .fahrzeug-card-badge {
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    font-size: 0.64rem;
  }

  .fahrzeuge-page .fahrzeug-card-price {
    left: 12px;
    bottom: 12px;
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .fahrzeuge-page .fahrzeug-card-body {
    padding: 18px 16px;
  }

  .fahrzeuge-page .fahrzeug-card-head h3 {
    font-size: 1.6rem;
  }
}
/* ========================================
   FAHRZEUG DETAIL PAGE
======================================== */

.fahrzeug-detail-page .hero.hero-subpage {
  min-height: 240px;
  margin-top: var(--header-h);
}

.fahrzeug-detail-page .hero.hero-subpage .slides,
.fahrzeug-detail-page .hero.hero-subpage .slide,
.fahrzeug-detail-page .hero.hero-subpage .slide img,
.fahrzeug-detail-page .hero.hero-subpage .slide::before {
  min-height: 240px;
}

.fahrzeug-detail-page .hero.hero-subpage .slide::before {
  background:
    linear-gradient(
      90deg,
      rgba(3, 9, 12, 0.92) 0%,
      rgba(3, 9, 12, 0.70) 34%,
      rgba(3, 9, 12, 0.38) 68%,
      rgba(3, 9, 12, 0.24) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 9, 12, 0.16) 0%,
      rgba(3, 9, 12, 0.34) 100%
    );
}

.fahrzeug-detail-page .hero.hero-subpage .slide img {
  filter: brightness(0.72) saturate(0.92);
}
.fahrzeug-detail-page .fahrzeug-thumbs {
  margin-top: 12px;
}

.fahrzeug-detail-page .fahrzeug-thumbs .swiper-slide {
  height: auto;
}

.fahrzeug-detail-page .fahrzeug-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(201, 168, 106, 0.14);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  opacity: 0.62;
  transition: opacity 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.fahrzeug-detail-page .fahrzeug-thumb:hover {
  opacity: 1;
  border-color: rgba(201, 168, 106, 0.45);
}

.fahrzeug-detail-page .fahrzeug-thumb.swiper-thumb-active,
.fahrzeug-detail-page .swiper-slide-thumb-active .fahrzeug-thumb {
  opacity: 1;
  border-color: var(--gold);
}

.fahrzeug-detail-page .fahrzeug-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .fahrzeug-detail-page .fahrzeug-thumbs {
    margin-top: 10px;
  }
}

.fahrzeug-detail-page .hero.hero-subpage .hero-content {
  min-height: 240px;
  padding: 28px 0 24px;
  align-items: flex-end;
}

.fahrzeug-detail-page .hero.hero-subpage .hero-copy {
  max-width: 700px !important;
  margin-left: 0 !important;
}

.fahrzeug-detail-page .hero.hero-subpage .eyebrow {
  margin-bottom: 8px;
}

.fahrzeug-detail-page .hero.hero-subpage .hero-copy h1 {
  margin: 0 !important;
  max-width: 29ch !important;
  font-size: clamp(1.65rem, 2.45vw, 2.35rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.024em !important;
}

.fahrzeug-detail-page .hero.hero-subpage .hero-copy p {
  display: none;
}

.fahrzeug-detail-page .fahrzeug-detail-section {
  padding-top: 24px;
  border-top: 1px solid rgba(201, 168, 106, 0.1);
  border-bottom: 1px solid rgba(201, 168, 106, 0.1);
  background: linear-gradient(180deg, rgba(6,16,23,0.95), rgba(7,19,25,1));
}

.fahrzeug-detail-page .fahrzeug-back-row {
  margin-bottom: 18px;
}

.fahrzeug-detail-page .fahrzeug-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  font-size: 0.95rem;
  transition: color 0.22s ease, transform 0.22s ease;
}

.fahrzeug-detail-page .fahrzeug-back-link:hover {
  color: #f0d39f;
  transform: translateX(-2px);
}

.fahrzeug-detail-page .fahrzeug-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 380px);
  gap: 28px;
  align-items: start;
}

.fahrzeug-detail-page .fahrzeug-detail-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.fahrzeug-detail-page .fahrzeug-detail-side {
  min-width: 0;
}

.fahrzeug-detail-page .fahrzeug-gallery-card,
.fahrzeug-detail-page .fahrzeug-description-card,
.fahrzeug-detail-page .fahrzeug-data-card,
.fahrzeug-detail-page .fahrzeug-sticky-box {
  border: 1px solid rgba(201, 168, 106, 0.15);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(18, 41, 50, 0.44), rgba(8, 20, 26, 0.96));
  box-shadow: var(--shadow);
}

.fahrzeug-detail-page .fahrzeug-gallery-card {
  padding: 14px;
  overflow: hidden;
}

.fahrzeug-detail-page .fahrzeug-slider {
  position: relative;
}

.fahrzeug-detail-page .fahrzeug-gallery-main {
  overflow: hidden;
  border-radius: 4px;
}

.fahrzeug-detail-page .fahrzeug-gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.fahrzeug-detail-page .fahrzeug-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fffaf1;
  font-size: 3.2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  text-shadow:
    0 3px 14px rgba(0, 0, 0, 0.78),
    0 0 26px rgba(0, 0, 0, 0.45);
  transition: transform 0.22s ease, opacity 0.22s ease, color 0.22s ease;
  opacity: 0.94;
}

.fahrzeug-detail-page .fahrzeug-slider-arrow:hover {
  color: #f0d39f;
  opacity: 1;
}

.fahrzeug-detail-page .fahrzeug-slider-prev {
  left: 14px;
}

.fahrzeug-detail-page .fahrzeug-slider-next {
  right: 14px;
}

.fahrzeug-detail-page .fahrzeug-slider-prev {
  left: 14px;
}

.fahrzeug-detail-page .fahrzeug-slider-next {
  right: 14px;
}

.fahrzeug-detail-page .fahrzeug-slider-pagination {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.fahrzeug-detail-page .fahrzeug-slider-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  opacity: 0.35;
  background: rgba(255, 250, 241, 0.8);
}

.fahrzeug-detail-page .fahrzeug-slider-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold);
}

.fahrzeug-detail-page .fahrzeug-description-card,
.fahrzeug-detail-page .fahrzeug-data-card {
  padding: 24px;
}

.fahrzeug-detail-page .fahrzeug-description-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

.fahrzeug-detail-page .fahrzeug-description-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fahrzeug-detail-page .fahrzeug-description-card ul li {
  color: var(--muted);
  line-height: 1.7;
}

.fahrzeug-detail-page .fahrzeug-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fahrzeug-detail-page .fahrzeug-data-item {
  padding: 16px 16px 14px;
  border: 1px solid rgba(201, 168, 106, 0.14);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
}

.fahrzeug-detail-page .fahrzeug-data-item span {
  display: block;
  color: var(--gold);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.fahrzeug-detail-page .fahrzeug-data-item strong {
  display: block;
  margin-top: 8px;
  color: #fffaf1;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  word-break: break-word;
}

.fahrzeug-detail-page .fahrzeug-sticky-box {
  position: relative;
  top: auto;
  padding: 24px 22px;
}

.fahrzeug-detail-page .fahrzeug-price-block {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.fahrzeug-detail-page .fahrzeug-price-value {
  margin-top: 10px;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: clamp(2.1rem, 3.1vw, 2.9rem);
  line-height: 1.02;
  color: #fffaf1;
}

.fahrzeug-detail-page .fahrzeug-side-meta {
  display: grid;
  gap: 0;
  margin-top: 16px;
}

.fahrzeug-detail-page .fahrzeug-side-meta-item {
  padding: 11px 0 13px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fahrzeug-detail-page .fahrzeug-side-meta-item:last-child {
  border-bottom: 0;
  padding-bottom: 4px;
}

.fahrzeug-detail-page .fahrzeug-side-meta-item span {
  display: block;
  color: var(--gold);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.fahrzeug-detail-page .fahrzeug-side-meta-item strong {
  display: block;
  margin-top: 6px;
  color: #fffaf1;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.fahrzeug-detail-page .fahrzeug-side-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.fahrzeug-detail-page .fahrzeug-side-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fahrzeug-detail-page .fahrzeug-side-actions .btn,
.fahrzeug-detail-page .fahrzeug-side-actions button {
  width: 100%;
  min-height: 46px;
}

.fahrzeug-detail-page .fahrzeug-side-note {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.fahrzeug-detail-page .fahrzeug-not-found {
  padding: 28px;
  border: 1px solid rgba(201, 168, 106, 0.14);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(18, 41, 50, 0.44), rgba(8, 20, 26, 0.96));
  box-shadow: var(--shadow);
}

.fahrzeug-detail-page .fahrzeug-not-found-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.fahrzeug-detail-page .fahrzeug-quality-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.fahrzeug-detail-page .fahrzeug-quality-list li {
  color: var(--muted);
  line-height: 1.7;
}
@media (min-width: 1280px) {
  .fahrzeug-detail-page .hero.hero-subpage .hero-copy {
    max-width: 470px;
  }

  .fahrzeug-detail-page .hero.hero-subpage .hero-copy h1 {
    font-size: 2.45rem;
    max-width: 19ch;
  }
}

@media (max-width: 1100px) {
  .fahrzeug-detail-page .fahrzeug-detail-layout {
    grid-template-columns: 1fr;
  }

  .fahrzeug-detail-page .fahrzeug-detail-side {
    order: 2;
  }

  .fahrzeug-detail-page .fahrzeug-sticky-box {
    position: static;
    top: auto;
  }
}

@media (max-width: 767px) {
  .fahrzeug-detail-page .hero.hero-subpage {
    min-height: 240px;
  }

  .fahrzeug-detail-page .hero.hero-subpage .slides,
  .fahrzeug-detail-page .hero.hero-subpage .slide,
  .fahrzeug-detail-page .hero.hero-subpage .slide img,
  .fahrzeug-detail-page .hero.hero-subpage .slide::before,
  .fahrzeug-detail-page .hero.hero-subpage .hero-content {
    min-height: 240px;
  }

  .fahrzeug-detail-page .hero.hero-subpage .hero-content {
    padding: 18px 0 16px;
  }
    .fahrzeug-detail-page .hero.hero-subpage .hero-copy {
    max-width: 100%;
    margin-left: 0;
  }
  .fahrzeug-detail-page .hero.hero-subpage .hero-copy h1 {
    max-width: 100%;
    font-size: 1.7rem;
    line-height: 1.08;
  }

  .fahrzeug-detail-page .fahrzeug-gallery-card,
  .fahrzeug-detail-page .fahrzeug-description-card,
  .fahrzeug-detail-page .fahrzeug-data-card,
  .fahrzeug-detail-page .fahrzeug-sticky-box {
    padding: 18px;
  }

  .fahrzeug-detail-page .fahrzeug-gallery-card {
    padding: 12px;
  }

.fahrzeug-detail-page .fahrzeug-slider-arrow {
  width: 44px;
  height: 44px;
  font-size: 2.55rem;
}

  .fahrzeug-detail-page .fahrzeug-slider-prev {
    left: 10px;
  }

  .fahrzeug-detail-page .fahrzeug-slider-next {
    right: 10px;
  }

  .fahrzeug-detail-page .fahrzeug-data-grid {
    gap: 8px;
  }

  .fahrzeug-detail-page .fahrzeug-data-item {
    padding: 11px 12px;
  }

  .fahrzeug-detail-page .fahrzeug-data-item span {
    font-size: 0.6rem;
  }

  .fahrzeug-detail-page .fahrzeug-data-item strong {
    font-size: 0.9rem;
  }

  .fahrzeug-detail-page .fahrzeug-price-value {
    font-size: 2.1rem;
  }

  .fahrzeug-detail-page .fahrzeug-side-actions-row {
    grid-template-columns: 1fr;
  }

  .fahrzeug-detail-page .fahrzeug-side-note {
    display: none;
  }
}

@media (max-width: 640px) {
  .fahrzeug-detail-page .fahrzeug-not-found-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .fahrzeug-detail-page .fahrzeug-not-found-actions .btn {
    width: 100%;
  }
}
.fahrzeug-detail-page .fahrzeug-mobile-summary-card {
  display: none;
  border: 1px solid rgba(201, 168, 106, 0.15);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(18, 41, 50, 0.44), rgba(8, 20, 26, 0.96));
  box-shadow: var(--shadow);
  padding: 18px;
}

.fahrzeug-detail-page .fahrzeug-mobile-price-row {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.fahrzeug-detail-page .fahrzeug-mobile-price-value {
  margin-top: 8px;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 2.1rem;
  line-height: 1.02;
  color: #fffaf1;
}

.fahrzeug-detail-page .fahrzeug-mobile-quickfacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.fahrzeug-detail-page .fahrzeug-mobile-quickfact {
  padding: 12px;
  border: 1px solid rgba(201, 168, 106, 0.12);
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
}

.fahrzeug-detail-page .fahrzeug-mobile-quickfact span {
  display: block;
  color: var(--gold);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.fahrzeug-detail-page .fahrzeug-mobile-quickfact strong {
  display: block;
  margin-top: 7px;
  color: #fffaf1;
  font-size: 0.94rem;
  line-height: 1.35;
}

.fahrzeug-detail-page .fahrzeug-mobile-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

@media (max-width: 1100px) {
  .fahrzeug-detail-page .fahrzeug-mobile-summary-card {
    display: block;
  }

  .fahrzeug-detail-page .fahrzeug-detail-side {
    display: none;
  }
}

/* ========================================
   HOME PAGE REWORK
======================================== */

.home .hero.hero-home .hero-copy {
  max-width: 760px;
}

.home .hero.hero-home .slide::before {
  background:
    linear-gradient(
      90deg,
      rgba(3, 9, 12, 0.92) 0%,
      rgba(3, 9, 12, 0.68) 38%,
      rgba(3, 9, 12, 0.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 9, 12, 0.20) 0%,
      rgba(3, 9, 12, 0.42) 100%
    );
}

.home .hero.hero-home .slide img {
  filter: brightness(0.74) saturate(0.92);
}

.home .hero.hero-home .hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 7.2vw, 6rem);
  line-height: 0.9;
}

.home .hero.hero-home .hero-copy p {
  max-width: 620px;
}

.home #services-preview,
.home #home-fahrzeuge-preview,
.home #about-preview,
.home #home-cta {
  border-top: 1px solid rgba(201, 168, 106, 0.1);
  background: linear-gradient(180deg, rgba(6,16,23,0.95), rgba(7,19,25,1));
}

.home #services-preview {
  border-top: 0;
}

.home .services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.home .service-card {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #08141a;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.home .service-card img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.home .service-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 44%;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 11, 15, 0) 0%,
    rgba(4, 11, 15, 0.28) 18%,
    rgba(4, 11, 15, 0.84) 58%,
    rgba(4, 11, 15, 0.98) 100%
  );
  transform: translateY(34%);
  opacity: 0;
  transition: transform 0.42s ease, opacity 0.42s ease;
  z-index: 1;
}

.home .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 11, 15, 0.04) 0%,
    rgba(4, 11, 15, 0.16) 45%,
    rgba(4, 11, 15, 0.3) 100%
  );
  z-index: 0;
}

.home .service-card:hover img {
  transform: scale(1.08);
}

.home .service-card:hover::before {
  transform: translateY(0);
  opacity: 1;
}

.home .service-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.home .service-body h3 {
  margin: 0;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 1.95rem;
  font-weight: 700;
  color: #fffaf1;
  display: inline-block;
  padding: 5px 5px 5px 0;
  background: linear-gradient(
    180deg,
    rgba(4, 11, 15, 0.12) 0%,
    rgba(4, 11, 15, 0.6) 100%
  );
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

.home .service-copy {
  max-width: 540px;
  color: #efe6d8;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.home .service-card:hover .service-copy {
  opacity: 0.96;
  transform: translateY(0);
}

.home .service-cta {
  width: 100%;
  margin: 10px auto 0;
  opacity: 0;
  transform: translateY(42px);
  transition: transform 0.34s ease, opacity 0.34s ease;
}

.home .service-card:hover .service-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   HOME VEHICLE WIDGET
======================================== */

.home #home-fahrzeuge-preview .section-copy {
  max-width: 760px;
}

.home .home-fahrzeuge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.home .home-fahrzeuge-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

/* shared vehicle card styles for fahrzeuge + home */
.fahrzeuge-page .fahrzeug-card,
.home .fahrzeug-card {
  overflow: hidden;
  border: 1px solid rgba(201, 168, 106, 0.15);
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    rgba(18, 41, 50, 0.44),
    rgba(8, 20, 26, 0.96)
  );
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.fahrzeuge-page .fahrzeug-card:hover,
.home .fahrzeug-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 106, 0.28);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.fahrzeuge-page .fahrzeug-card-link,
.home .fahrzeug-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.fahrzeuge-page .fahrzeug-card-image-wrap,
.home .fahrzeug-card-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.fahrzeuge-page .fahrzeug-card-image-wrap img,
.home .fahrzeug-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fahrzeuge-page .fahrzeug-card:hover .fahrzeug-card-image-wrap img,
.home .fahrzeug-card:hover .fahrzeug-card-image-wrap img {
  transform: none;
}

.fahrzeuge-page .fahrzeug-card-overlay,
.home .fahrzeug-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,19,25,0.02) 0%, rgba(7,19,25,0.84) 100%);
}

.fahrzeuge-page .fahrzeug-card-badge,
.home .fahrzeug-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(201, 168, 106, 0.3);
  border-radius: 6px;
  background: rgba(7, 19, 25, 0.86);
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.fahrzeuge-page .fahrzeug-card-price,
.home .fahrzeug-card-price {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #0d1214;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0,0,0,0.24);
}

.fahrzeuge-page .fahrzeug-card-body,
.home .fahrzeug-card-body {
  padding: 24px;
}

.fahrzeuge-page .fahrzeug-card-head,
.home .fahrzeug-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.fahrzeuge-page .fahrzeug-card-head h3,
.home .fahrzeug-card-head h3 {
  margin: 0;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.1;
  color: #fffaf1;
}

.fahrzeuge-page .fahrzeug-card-head span,
.home .fahrzeug-card-head span {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.fahrzeuge-page .fahrzeug-card-meta,
.home .fahrzeug-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.fahrzeuge-page .fahrzeug-card-meta span,
.home .fahrzeug-card-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(201, 168, 106, 0.14);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 0.92rem;
}

.fahrzeuge-page .fahrzeug-card-footer,
.home .fahrzeug-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 0.94rem;
}

.fahrzeuge-page .fahrzeug-card-arrow,
.home .fahrzeug-card-arrow {
  color: var(--gold-soft);
  font-size: 1.1rem;
  transition: transform 0.28s ease;
}

.fahrzeuge-page .fahrzeug-card:hover .fahrzeug-card-arrow,
.home .fahrzeug-card:hover .fahrzeug-card-arrow {
  transform: translateX(3px);
}

/* ========================================
   HOME ABOUT / CTA
======================================== */

.home .about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.home .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.home .stat {
  min-height: 190px;
  background: linear-gradient(180deg, rgba(18, 41, 50, 0.62), rgba(8, 20, 26, 0.96));
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home .stat strong {
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 2.1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.home .stat span {
  color: #d2c7b8;
}

.home .home-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 34px 38px;
  border: 1px solid rgba(201, 168, 106, 0.14);
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    rgba(18, 41, 50, 0.34),
    rgba(8, 20, 26, 0.72)
  );
  box-shadow: var(--shadow);
}

.home .home-cta-copy .section-title {
  margin-bottom: 14px;
}

.home .home-cta-copy .section-copy {
  margin: 0;
  max-width: 660px;
}

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

/* hide old home sections if still present */
.home #fleet-preview,
.home #gallery-preview,
.home #testimonials {
  display: none;
}

/* ========================================
   RESPONSIVE HOME
======================================== */

@media (max-width: 1200px) {
  .home .home-fahrzeuge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .home .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .home .services-grid,
  .home .stats {
    grid-template-columns: 1fr;
  }

  .home .service-card,
  .home .service-card img {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .home .hero.hero-home {
    min-height: 640px;
  }

  .home .hero.hero-home .hero-content {
    min-height: 640px;
    padding: 110px 0 92px;
    align-items: flex-end;
  }

  .home .hero.hero-home .hero-copy {
    max-width: 100%;
  }

  .home .hero.hero-home .hero-copy h1 {
    font-size: 2.2rem;
    line-height: 0.95;
    max-width: 8ch;
    margin-bottom: 14px;
  }

  .home .hero.hero-home .hero-copy p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .home .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .home .hero-actions .btn {
    min-width: 0;
    width: 100%;
    padding: 0 12px;
    min-height: 46px;
    font-size: 0.84rem;
  }

  .home .home-fahrzeuge-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home .fahrzeug-card-body {
    padding: 20px 18px;
  }

  .home .fahrzeug-card-head {
    gap: 12px;
  }

  .home .fahrzeug-card-head h3 {
    font-size: 1.7rem;
    line-height: 1.05;
  }

  .home .fahrzeug-card-head span {
    font-size: 0.62rem;
  }

  .home .fahrzeug-card-meta {
    gap: 8px;
    margin-top: 14px;
  }

  .home .fahrzeug-card-meta span {
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .home .fahrzeug-card-footer {
    margin-top: 16px;
    padding-top: 14px;
    font-size: 0.88rem;
  }

  .home .home-cta-box {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 22px 18px;
  }

  .home .home-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .home .home-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .home .service-card,
  .home .service-card img {
    min-height: 340px;
  }

  .home .service-body {
    padding: 20px 18px;
  }

  .home .service-body h3 {
    font-size: 1.65rem;
  }

  .home .service-copy {
    opacity: 1;
    transform: none;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .home .service-cta {
    opacity: 1;
    transform: none;
    margin-top: 8px;
  }

  .home .fahrzeug-card-badge {
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    font-size: 0.64rem;
  }

  .home .fahrzeug-card-price {
    left: 12px;
    bottom: 12px;
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .home .fahrzeug-card-body {
    padding: 18px 16px;
  }

  .home .fahrzeug-card-head h3 {
    font-size: 1.6rem;
  }
}
/* WHY AUTOART – LINE STYLE */

.home .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 34px;
}

.home .why-item {
  position: relative;
  padding-left: 22px;
}

.home .why-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(201, 168, 106, 0.6) 40%,
    rgba(201, 168, 106, 0.3) 100%
  );
}

.home .why-item h3 {
  margin: 0 0 8px;
  font-family: 'Cormorant Infant', Georgia, serif;
  font-size: 1.6rem;
  color: var(--gold);
}

.home .why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
@media (max-width: 767px) {

  .home .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home .why-item {
    padding-left: 0;
    padding-top: 16px;
  }

  .home .why-item::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(201, 168, 106, 0.6) 40%,
      rgba(201, 168, 106, 0.3) 100%
    );
  }
  .home .why-item:first-child::before {
  display: none;
}

}
/* ========================================
   FOOTER / NEWSLETTER
======================================== */

#contact-footer {
  border-top: 1px solid rgba(201, 168, 106, 0.1);
  background: linear-gradient(180deg, rgba(6,16,23,0.98), rgba(7,19,25,1));
}

.footer-top-strip {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 1px minmax(180px, 0.8fr) 1px minmax(320px, 1.4fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 48px;
}

.footer-strip-item {
  min-width: 0;
}

.footer-strip-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.footer-strip-item a,
.footer-strip-item span {
  display: inline-block;
  color: #f0ebe2;
  font-size: 1.02rem;
  line-height: 1.5;
  transition: color 0.22s ease;
}

.footer-strip-item a:hover {
  color: var(--gold-soft);
}

.footer-strip-divider {
  position: relative;
  width: 1px;
  align-self: stretch;
}

.footer-strip-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(201, 168, 106, 0.18) 18%,
    rgba(201, 168, 106, 0.58) 50%,
    rgba(201, 168, 106, 0.18) 82%,
    transparent 100%
  );
}

.footer-newsletter {
  display: grid;
  gap: 14px;
  align-self: start;
}

.footer-newsletter-head {
  display: grid;
  gap: 6px;
}

.footer-newsletter-head span {
  color: var(--muted);
  font-size: 0.96rem;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.newsletter-form input {
  width: 100%;
  min-height: 48px;
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 106, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 14px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(201, 168, 106, 0.42);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.08);
  background: rgba(255, 255, 255, 0.055);
}

.newsletter-form .btn {
  min-height: 48px;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 24px;
  padding-top: 18px;
}

.footer-col-brand {
  max-width: 420px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 35px;
  width: auto;
  display: block;
  opacity: 0.98;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.footer-logo:hover .footer-logo-img {
  opacity: 0.84;
  transform: translateY(-1px);
}

.footer-col h4 {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 500;
  font-size: 1.04rem;
}

.footer-col p,
.footer-col li,
.footer-col a {
  color: #f0ebe2;
  font-size: 1rem;
  line-height: 1.7;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 106, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #f0ebe2;
  font-size: 0.96rem;
}

/* ========================================
   FOOTER RESPONSIVE
======================================== */

@media (max-width: 1100px) {
  .footer-top-strip {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-strip-divider {
    width: 100%;
    height: 1px;
  }

  .footer-strip-divider::before {
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(201, 168, 106, 0.18) 18%,
      rgba(201, 168, 106, 0.58) 50%,
      rgba(201, 168, 106, 0.18) 82%,
      transparent 100%
    );
  }

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

@media (max-width: 640px) {
  .footer-top-strip {
    gap: 16px;
    margin-bottom: 34px;
  }

  .footer-strip-item strong {
    margin-bottom: 6px;
  }

  .footer-strip-item a,
  .footer-strip-item span {
    font-size: 0.96rem;
  }

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

  .newsletter-form .btn {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}


.fahrzeug-equipment-group + .fahrzeug-equipment-group {
  margin-top: 32px;
}

.fahrzeug-equipment-group h3 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.3;
}

.fahrzeug-equipment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.fahrzeug-equipment-list li {
  position: relative;
  padding-left: 18px;
  color: #d7d7d7;
  line-height: 1.6;
}

.fahrzeug-equipment-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4af37;
}

.fahrzeug-equipment-list .equipment-sub-item {
  padding-left: 22px;
  color: #a9a9a9;
}

.fahrzeug-equipment-list .equipment-sub-item::before {
  width: 4px;
  height: 4px;
  top: 12px;
  background: rgba(212, 175, 55, 0.65);
}

.equipment-hidden {
  display: none;
}

.fahrzeug-equipment-toggle {
  margin-top: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.fahrzeug-equipment-toggle:hover {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.08);
}

.fahrzeug-gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.fahrzeug-gallery-trigger img {
  display: block;
  width: 100%;
  height: auto;
}

.fahrzeug-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.fahrzeug-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fahrzeug-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(5px);
}

.fahrzeug-lightbox-dialog {
  position: relative;
  z-index: 2;
  width: min(1500px, calc(100% - 32px));
  height: min(94vh, 980px);
  margin: 3vh auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fahrzeug-lightbox-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.fahrzeug-lightbox-slider {
  width: 100%;
  height: 100%;
}

.fahrzeug-lightbox-slider .swiper-wrapper,
.fahrzeug-lightbox-slider .swiper-slide {
  height: 100%;
}

.fahrzeug-lightbox-image-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 72px;
}

.fahrzeug-lightbox-image-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 100%;
}

.fahrzeug-lightbox-image-box img {
  max-width: 100%;
  max-height: calc(94vh - 48px);
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.fahrzeug-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 30;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  text-shadow:
    0 3px 16px rgba(0, 0, 0, 0.85),
    0 0 28px rgba(0, 0, 0, 0.45);
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
  opacity: 0.95;
}

.fahrzeug-lightbox-close:hover {
  color: #f0d39f;
  opacity: 1;
}

.fahrzeug-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
  text-shadow:
    0 3px 16px rgba(0, 0, 0, 0.85),
    0 0 28px rgba(0, 0, 0, 0.45);
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
  opacity: 0.94;
}

.fahrzeug-lightbox-arrow:hover {
  color: #f0d39f;
  opacity: 1;
}

.fahrzeug-lightbox-prev {
  left: 12px;
}

.fahrzeug-lightbox-next {
  right: 12px;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .fahrzeug-lightbox-dialog {
    width: calc(100% - 8px);
    height: 100dvh;
    margin: 0 auto;
  }

  .fahrzeug-lightbox-image-wrap {
  padding: 18px 34px;
}

.fahrzeug-lightbox-image-box img {
  max-height: calc(100dvh - 36px);
}

.fahrzeug-lightbox-close {
  top: 8px;
  right: 8px;
  font-size: 2.1rem;
}

  .fahrzeug-lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 2.9rem;
  }

  .fahrzeug-lightbox-prev {
    left: 2px;
  }

  .fahrzeug-lightbox-next {
    right: 2px;
  }
}
.fahrzeug-mobile-only {
  display: none;
}

.fahrzeug-desktop-only {
  display: block;
}

@media (max-width: 1100px) {
  .fahrzeug-mobile-only {
    display: block;
  }

  .fahrzeug-desktop-only {
    display: none;
  }
}
.fahrzeug-side-stack {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  display: grid;
  gap: 22px;
}

.fahrzeug-mobile-only {
  display: none;
}

.fahrzeug-desktop-only {
  display: block;
}

@media (max-width: 1100px) {
  .fahrzeug-side-stack {
    position: static;
    top: auto;
  }

  .fahrzeug-mobile-only {
    display: block;
  }

  .fahrzeug-desktop-only {
    display: none;
  }
}
.impressum-page .legal-content {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.impressum-page .legal-content h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #fffaf1;
}

.impressum-page .legal-content p {
  margin-bottom: 16px;
}

.impressum-page .legal-content a {
  color: var(--gold);
  text-decoration: none;
}
.datenschutz-page .legal-content {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.datenschutz-page .legal-content h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #fffaf1;
}

.datenschutz-page .legal-content p {
  margin-bottom: 16px;
}