/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-v24-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v24-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/poppins-v24-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/inter-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/inter-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/inter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f7f5f2;
    --color-bg-card: #ffffff;
    --color-accent: #8b5a2b;
    --color-accent-light: #a0724b;
    --color-accent-dark: #6b3f1a;
    --color-text: #3a3a3a;
    --color-text-muted: #6b6b6b;
    --color-heading: #2a2a2a;
    --color-white: #ffffff;
    --color-border: rgba(139, 90, 43, 0.15);
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1400px;
    --section-padding: 100px 0;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent-light);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 48px;
}

.text-center {
    text-align: center;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 90, 43, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    border-color: rgba(255,255,255,0.7);
}

/* ============================================
   NAVBAR – SINGLE ROW: Logo left, Links center, Phone+CTA right
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.navbar .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-brand {
    flex-shrink: 0;
}

.nav-brand img {
    height: 90px;
    width: auto;
    transition: height 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.navbar.scrolled .nav-brand img {
    height: 50px;
    filter: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 22px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    white-space: nowrap;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

@media (max-width: 1280px) {
    .nav-links { gap: 16px; }
    .nav-links a { font-size: 0.78rem; letter-spacing: 0.5px; }
    .nav-right { gap: 14px; }
    .nav-cta { padding: 9px 16px; font-size: 0.78rem; }
}

@media (max-width: 1100px) {
    .nav-phone { display: none; }
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text);
    text-shadow: none;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Nav Right Area: Phone + CTA */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-phone svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.navbar.scrolled .nav-phone {
    color: var(--color-accent);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 6px;
    background: var(--color-accent);
    color: var(--color-white) !important;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--color-accent-dark);
    color: var(--color-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 90, 43, 0.3);
}

.mobile-phone {
    display: none;
}

.mobile-phone a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-phone svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Nav Toggle (Mobile) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--color-white);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--color-heading);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--color-white);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--color-white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-fallback {
    position: absolute;
    inset: 0;
    background: #1a1008;
    z-index: 0;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,8,5,0.9) 0%,
        rgba(10,8,5,0.3) 50%,
        rgba(10,8,5,0.2) 100%
    );
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 900px;
}

.hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-white);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero h1 em {
    font-style: normal;
    color: var(--color-accent-light);
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 720px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: block;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 13px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    animation: scrollAnim 1.5s ease-in-out infinite;
}

@keyframes scrollAnim {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image .img-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.accent-border {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent);
    border-radius: 12px;
    z-index: -1;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--color-text);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.stat-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   VEHICLE SECTION
   ============================================ */
.vehicle {
    padding: var(--section-padding);
    background: var(--color-bg-alt);
}

.vehicle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.vehicle-tabs {
    display: flex;
    gap: 0;
    margin: 24px 0;
    border-bottom: 2px solid var(--color-border);
}

.vehicle-tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    transition: color 0.3s ease;
}

.vehicle-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vehicle-tab-btn.active {
    color: var(--color-accent);
}

.vehicle-tab-btn.active::after {
    transform: scaleX(1);
}

.vehicle-tab-btn:hover {
    color: var(--color-accent);
}

.vehicle-tab-content {
    display: none;
}

.vehicle-tab-content.active {
    display: block;
}

.vehicle-data-list {
    list-style: none;
    padding: 0;
}

.vehicle-data-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 0.95rem;
}

.vehicle-data-list li:last-child {
    border-bottom: none;
}

.vehicle-image .img-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--section-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 16px;
}

.service-card {
    background: var(--color-bg-alt);
    padding: 40px 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-heading);
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-icon {
    display: none;
}

/* ============================================
   MESSE EUROPE SECTION
   ============================================ */
.messe-europe {
    padding: var(--section-padding);
    background: var(--color-bg-alt);
}

.messe-europe-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 56px;
}

.messe-europe-header .section-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.messe-europe-lead {
    font-size: 1.15rem;
    color: var(--color-text);
    margin-top: 12px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.messe-europe-lead strong {
    color: var(--color-accent, var(--color-heading));
}

.messe-europe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 16px;
}

.messe-europe-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.messe-europe-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

.messe-europe-item .img-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: pointer;
}

.messe-europe-item .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.messe-europe-item .img-wrapper:hover img {
    transform: scale(1.05);
}

.messe-europe-item h4 {
    font-size: 1.15rem;
    margin: 24px 28px 10px;
    color: var(--color-heading);
}

.messe-europe-item p {
    margin: 0 28px 28px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.messe-europe-cta {
    text-align: center;
    margin-top: 48px;
}

@media (max-width: 900px) {
    .messe-europe-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================
   REFERENZ-TICKER / LAUFBAND
   ============================================ */
.ref-ticker {
    padding: 72px 0 88px;
    background: linear-gradient(180deg, #1a1a1a 0%, #262626 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.ref-ticker-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.ref-ticker-intro .section-label {
    color: var(--color-accent-light, #d4a574);
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.ref-ticker-intro h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin: 12px 0 10px;
    line-height: 1.2;
}

.ref-ticker-intro p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.ref-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.ref-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    width: max-content;
    animation: ref-scroll 55s linear infinite;
    will-change: transform;
}

.ref-marquee:hover .ref-track {
    animation-play-state: paused;
}

@keyframes ref-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.ref-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 12px 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 999px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.ref-item:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(212,165,116,0.5);
    transform: translateY(-2px);
}

.ref-item .ref-cat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-light, #d4a574);
    padding: 3px 8px;
    background: rgba(212,165,116,0.12);
    border-radius: 4px;
}

.ref-item--highlight {
    background: linear-gradient(135deg, var(--color-accent, #b8875a), var(--color-accent-light, #d4a574));
    border-color: transparent;
    color: #1a1a1a;
    font-weight: 700;
}

.ref-item--highlight:hover {
    background: linear-gradient(135deg, var(--color-accent, #b8875a), var(--color-accent-light, #d4a574));
    border-color: transparent;
    color: #1a1a1a;
}

.ref-item--highlight svg {
    stroke: #1a1a1a;
}

@media (prefers-reduced-motion: reduce) {
    .ref-track {
        animation-duration: 120s;
    }
}

@media (max-width: 640px) {
    .ref-ticker {
        padding: 56px 0 64px;
    }
    .ref-track {
        animation-duration: 45s;
        gap: 10px;
    }
    .ref-item {
        padding: 10px 16px;
        font-size: 0.88rem;
    }
}

/* ============================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================ */
.legal-page {
    padding: 140px 0 80px;
    background: #fff;
}

.legal-page .container {
    max-width: 880px;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.legal-back:hover {
    color: var(--color-heading);
}

.legal-back svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.legal-page h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--color-heading);
    margin-bottom: 32px;
    line-height: 1.2;
}

.legal-page h2 {
    font-size: 1.4rem;
    color: var(--color-heading);
    margin: 40px 0 16px;
    line-height: 1.3;
}

.legal-page h3 {
    font-size: 1.1rem;
    color: var(--color-heading);
    margin: 28px 0 12px;
    line-height: 1.4;
}

.legal-page h4 {
    font-size: 1rem;
    color: var(--color-heading);
    margin: 20px 0 8px;
    line-height: 1.4;
}

.legal-page p {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 14px;
}

.legal-page ul {
    margin: 0 0 16px 24px;
    padding: 0;
}

.legal-page li {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 6px;
}

.legal-page a {
    color: var(--color-accent, var(--color-heading));
    word-break: break-word;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-erecht24 {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-align: center;
}

.legal-erecht24 img {
    max-width: 260px;
    height: auto;
    display: inline-block;
}

.legal-erecht24 p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 12px;
}

/* ============================================
   PARALLAX SECTION
   ============================================ */
.parallax-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: 0;
    background: url('../images/AdobeStock_53382030.jpeg') center/cover no-repeat;
    background-attachment: fixed;
}

@supports (-webkit-overflow-scrolling: touch) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

.parallax-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(42, 42, 42, 0.7);
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    padding: 0 24px;
}

.parallax-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-white);
    margin-bottom: 16px;
}

.parallax-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

/* ============================================
   GALLERY SECTION – FULL-WIDTH SLIDER
   ============================================ */
.gallery {
    padding: 100px 0 80px;
    background: var(--color-bg-alt);
    overflow: hidden;
}

.gallery .container {
    text-align: left;
}

.gallery .section-subtitle {
    margin-left: 0;
    margin-right: 0;
}

.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    margin-top: 16px;
    padding: 0 60px;
}

.gallery-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    flex: 0 0 calc(25% - 12px);
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    scroll-snap-align: start;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-slide:hover img {
    transform: scale(1.08);
}

.gallery-slide .overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 90, 43, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-slide:hover .overlay {
    background: rgba(139, 90, 43, 0.3);
}

.overlay-icon {
    color: var(--color-white);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-slide:hover .overlay-icon {
    opacity: 1;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-heading);
    border: 1px solid var(--color-border);
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slider-nav:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.slider-prev {
    left: 8px;
}

.slider-next {
    right: 8px;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--color-white);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--color-white);
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: var(--section-padding);
}

.pricing-simple {
    max-width: 800px;
}

.pricing-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.pricing-service-item h4 {
    font-size: 1.1rem;
    color: var(--color-heading);
    margin-bottom: 16px;
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--color-text);
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding);
    background: var(--color-bg-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.contact-info-item p {
    color: var(--color-text);
}

.contact-info-icon {
    display: none;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-heading);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: var(--color-white);
    color: var(--color-text);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-status {
    padding: 0;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
}

.form-status.success {
    padding: 16px;
    background: #f0f9f0;
    color: #2d7a2d;
    border: 1px solid #c8e6c8;
}

.form-status.error {
    padding: 16px;
    background: #fdf0f0;
    color: #a32525;
    border: 1px solid #f0c8c8;
}

/* Honeypot – für Menschen unsichtbar, für Bots unmarkiert ausfüllbar */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Datenschutz-Checkbox */
.form-check .check-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-text, #555);
    cursor: pointer;
    margin-bottom: 0;
    font-weight: 400;
}

.form-check input[type="checkbox"] {
    width: auto !important;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--color-accent);
    cursor: pointer;
}

.form-check .check-label a {
    color: var(--color-accent);
    text-decoration: underline;
}

.form-check .check-label a:hover {
    text-decoration: none;
}

#submitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--color-heading) 0%, #6c513b 100%);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.footer-social {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social .social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
}

.footer-social .social-link svg {
    flex-shrink: 0;
}

.footer-links h4 {
    color: var(--color-white);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
    color: var(--color-accent-light);
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links a,
    .footer-text {
        word-break: break-word;
        overflow-wrap: anywhere;
    }
}

/* ============================================
   TO TOP BUTTON
   ============================================ */
.to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 900;
    box-shadow: 0 4px 15px rgba(139, 90, 43, 0.3);
}

.to-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.to-top:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE – TABLET (only 901px–1024px)
   ============================================ */
@media (min-width: 901px) and (max-width: 1024px) {
    .about-grid,
    .vehicle-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-slide {
        flex: 0 0 calc(33.333% - 11px);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-services-grid {
        grid-template-columns: 1fr;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        position: static;
        transform: none;
        gap: 20px;
    }

    .navbar.scrolled .nav-links a {
        color: var(--color-text);
        text-shadow: none;
    }
}

/* ============================================
   RESPONSIVE – MOBILE & SMALL TABLET (≤900px)
   ============================================ */
@media (max-width: 900px) {
    :root {
        --section-padding: 60px 0;
    }

    .about-grid,
    .vehicle-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-services-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        padding: 10px 0;
    }

    .navbar.scrolled {
        padding: 6px 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-right {
        display: none;
    }

    .nav-brand img {
        height: 48px;
    }

    .navbar.scrolled .nav-brand img {
        height: 36px;
    }

    .nav-links {
        display: none !important;
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        transform: none;
        background: linear-gradient(135deg, var(--color-heading) 0%, #6c513b 100%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 1001;
    }

    .nav-links.open {
        display: flex !important;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.9) !important;
        letter-spacing: 2px;
        text-shadow: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--color-accent-light) !important;
    }

    .nav-links a::after {
        display: none;
    }

    .mobile-phone {
        display: list-item;
        list-style: none;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    .mobile-phone a {
        color: var(--color-accent-light) !important;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-slide {
        flex: 0 0 calc(50% - 8px);
    }

    .gallery-slider-wrapper {
        padding: 0 40px;
    }

    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .slider-prev {
        left: 4px;
    }

    .slider-next {
        right: 4px;
    }


    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 5.5vw, 2.4rem);
        margin-bottom: 16px;
    }

    .hero-label {
        