/*
Theme Name: Rolls Royce Hochzeit – MeinHochzeitsauto
Theme URI: https://meinhochzeitsauto.de
Author: MeinHochzeitsauto.de
Author URI: https://meinhochzeitsauto.de
Description: Elegantes Luxus-Theme für die Vermarktung des Rolls Royce Silver Shadow II Landaulette als Hochzeitsfahrzeug in Aichach und Süddeutschland.
Version: 1.7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rr-hochzeit
Tags: wedding, luxury, one-page, elegant
*/


/* ── Scroll-Offset für fixed Header + Top-Bar ──────────────────────────────
   Top-Bar (~34px) + Header-Padding (~24px) + Logo (~42px) = ~100px
   Wir verwenden 120px als komfortablen Puffer damit der Inhalt
   nicht direkt unter dem Header landet. ──────────────────────────────── */
section[id],
div[id].section-anchor {
    scroll-margin-top: 118px;
}
@media (max-width: 768px) {
    section[id],
    div[id].section-anchor {
        scroll-margin-top: 72px;
    }
}

/* ============================================================
   IMPORTS & RESET
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --rr-topbar-height: 34px;
    --rr-header-height: 88px;
    --gold: #C9A84C;
    --gold-light: #E8D49A;
    --gold-dark: #9A7A2E;
    --black: #141210;
    --dark: #111111;
    --dark-mid: #1A1A1A;
    --dark-card: #161616;
    --white: #FFFFFF;
    --cream: #F8F4EE;
    --grey: #888888;
    --grey-light: #CCCCCC;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', Arial, sans-serif;
    --font-sans: 'Montserrat', Arial, sans-serif;
    --transition: all 0.4s ease;
    --shadow: 0 20px 60px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.2);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden; /* iOS Safari: verhindert horizontales Scrollen */
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

.gold-text {
    color: var(--gold);
}

.serif {
    font-family: var(--font-serif);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container--narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

.section--dark {
    background-color: var(--dark);
}

.section--darker {
    background-color: var(--dark-mid);
}

.section-tag {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    padding-bottom: 0.4rem;
}

.section-tag::after {
    content: '';
    display: block;
    width: 50%;
    min-width: 32px;
    height: 1px;
    margin-top: 0.4rem;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-text {
    font-size: 1rem;
    color: var(--grey-light);
    line-height: 1.9;
    max-width: 680px;
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem 0;
}

.divider--center {
    margin: 1.5rem auto;
}

.text-center {
    text-align: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn--gold {
    background: var(--gold);
    color: var(--black);
}

.btn--gold:hover {
    background: var(--gold-light);
    color: var(--black);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn--outline:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: var(--rr-topbar-height, 34px);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: top 0.35s ease, padding 0.4s ease, background 0.4s ease;
    background: rgba(10,10,10,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201,168,76,0.12);
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.site-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.site-logo__main {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.05em;
}

.site-logo__sub {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.25rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.site-nav a {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-light);
    transition: var(--transition);
}

.site-nav a:hover {
    color: var(--gold);
}

.site-nav 

.nav-toggle {
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--white);
    transition: var(--transition);
}


/* ── WORDPRESS ADMIN BAR KOMPENSATION ────────────────────── */
.admin-bar .top-bar {
    top: 32px;
}
.admin-bar .site-header {
    top: calc(32px + 34px);
}
.admin-bar.scrolled .site-header,
.admin-bar .site-header.scrolled {
    top: 32px;
}
@media (max-width: 782px) {
    .admin-bar .top-bar { top: 46px; }
    .admin-bar .site-header { top: calc(46px + 34px); }
}

/* Nav-toggle: absolut unsichtbar auf Desktop */
.nav-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* fallback gradient wenn kein Bild gesetzt */
    background-color: var(--dark);
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.15) 40%,
        rgba(0,0,0,0.0) 60%,
        rgba(17,17,17,0.85) 85%,
        rgba(17,17,17,1.0) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.hero__badge::before,
.hero__badge::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.7;
}

.hero__badge span {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero__title em {
    font-style: italic;
    color: var(--gold);
}

.hero__subtitle {
    font-family: var(--font-sans);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--grey-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero__cta {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
}

.hero__scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================================
   CAR NAME SECTION
   ============================================================ */
.car-intro {
    padding: 16px 0 72px;
    background: var(--dark);
    text-align: center;
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.car-intro__model {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.car-intro__model span {
    color: var(--gold);
    font-style: italic;
}

.car-intro__tagline {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: var(--grey);
    text-transform: uppercase;
    font-weight: 300;
}

.car-intro__ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.car-intro__ornament::before,
.car-intro__ornament::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}



.car-intro__ornament-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
    padding: 40px 0 100px;
    background: var(--black);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 4rem;
}

.feature-card {
    background: var(--dark-card);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--dark-mid);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(201,168,76,0.38);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-card__icon {
    background: var(--gold);
}

.feature-card__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.5;
    transition: var(--transition);
}

.feature-card:hover .feature-card__icon svg {
    stroke: var(--black);
}

.feature-card__title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-card__text {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.8;
}

/* ============================================================
   BLUMENSCHMUCK SECTION
   ============================================================ */
.blumen-section {
    padding: 40px 0 100px;
    background: var(--dark-mid);
}

.blumen-section__intro {
    margin-bottom: 3.5rem;
}

.blumen-section__lead {
    max-width: 640px;
    margin: 0 auto 3rem;
}

.blumen-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    border-radius: 2px;
    overflow: hidden;
}

.blumen-grid__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--dark-card);
}

.blumen-grid__item--wide {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.blumen-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.blumen-grid__item:hover img {
    transform: scale(1.04);
}

.blumen-grid__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.6rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blumen-grid__item:hover .blumen-grid__caption {
    opacity: 1;
}

@media (max-width: 900px) {
    .blumen-grid {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    
}

@media (max-width: 600px) {
    .blumen-grid {
        grid-template-columns: 1fr;
    }
    
}

/* ============================================================
   DESCRIPTION / ABOUT SECTION
   ============================================================ */
.blumen-section__lead-wrap {
    max-width: 560px;
    margin: 0 auto 3rem;
    text-align: center;
}

.blumen-section__lead {
    color: var(--grey-light);
    line-height: 1.85;
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 1.1rem;
}

.blumen-section__price {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gold);
    border-top: 1px solid rgba(201,168,76,0.35);
    padding-top: 0.9rem;
    width: 100%;
}

.about {
    padding: 40px 0 100px;
    background: var(--dark);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}


/* ── ABOUT COUNTER ICONS ─────────────────────────────────── */
.about__counter-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50%;
    margin: 0 auto 0.8rem;
    color: var(--gold);
    transition: var(--transition);
}

.about__counter-icon--number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
}
.about__counter-icon--number span {
    line-height: 1;
}

.about__counter-item:hover .about__counter-icon {
    background: var(--gold);
    color: var(--black);
}

.about__counter {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.about__counter-item {
    text-align: center;
}

.about__counter-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.about__counter-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey);
}

.about__image-wrap {
    position: relative;
}

.about__image-frame {
    position: relative;
    overflow: hidden;
}

.about__image-frame::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    opacity: 0.25;
    pointer-events: none;
}

.about__image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition);
}

.about__image-frame:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.about__badge-overlay {
    display: none;
    position: absolute;
    top: 2rem;
    left: -1.5rem;
    background: var(--gold);
    color: var(--black);
    padding: 1.2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.about__badge-overlay strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}

.about__badge-overlay span {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery {
    padding: 40px 0 100px;
    background: var(--black);
}

.gallery__intro {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 4px;
    height: 600px;
}

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

.gallery__item--main {
    grid-row: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%) brightness(0.85);
    transition: all 0.6s ease;
}

.gallery__item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.04);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover 

/* ============================================================
   DETAILS SECTION
   ============================================================ */
.details {
    padding: 40px 0 100px;
    background: var(--dark);
}

.details__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.details__list {
    list-style: none;
    margin-top: 2rem;
}

.details__list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
    color: var(--grey-light);
}

.details__list li::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.4rem;
    margin-top: 0.55rem;
    flex-shrink: 0;
}

.details__images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-content: start;
}

.details__images img,
.details__images .rr-placeholder {
    width: 100%;
    height: 150px;
    object-fit: cover;
    filter: grayscale(10%);
    transition: var(--transition);
}

.details__images img:hover,
.details__images .rr-placeholder:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* ============================================================
   AREAS SECTION
   ============================================================ */
.areas {
    padding: 30px 0 80px;
    background: var(--dark-mid);
    text-align: center;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.areas__title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 2rem;
}

.areas__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    list-style: none;
}

.areas__list li {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--grey-light);
    transition: var(--transition);
    cursor: default;
}

.areas__list li:hover {
    color: var(--gold);
}

.areas__list li.highlight {
    color: var(--gold);
    font-weight: 400;
}

.areas__separator {
    color: rgba(201,168,76,0.3);
    font-size: 0.8rem;
}

/* ============================================================
   CTA / CONTACT SECTION
   ============================================================ */
.cta-section {
    padding: 40px 0 120px;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.cta-section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-section__title em {
    font-style: italic;
    color: var(--gold);
}

.cta-section__text {
    font-size: 1rem;
    color: var(--grey);
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.cta-section__contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.cta-contact-item {
    text-align: center;
    min-width: 140px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(201,168,76,0.1);
}

.cta-contact-item__label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 0.5rem;
}

.cta-contact-item__value {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 400;
}

.cta-contact-item__value a {
    color: var(--white);
    transition: var(--transition);
}

.cta-contact-item__value a:hover {
    color: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 3rem 0;
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.site-footer__copy {
    font-size: 0.75rem;
    color: var(--grey);
    letter-spacing: 0.05em;
}

.site-footer__links {
    display: flex;
    gap: 2rem;
}

.site-footer__links a {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--grey);
    text-transform: uppercase;
    transition: var(--transition);
}

.site-footer__links a:hover {
    color: var(--gold);
}

.site-footer__gold-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin-bottom: 2rem;
    opacity: 0.3;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   MOBILE NAVIGATION MENU
   ============================================================ */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--gold);
}

.mobile-nav__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav__close:hover {
    color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .about__inner,
    
    
    
    
    
    
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .container { padding: 0 1.5rem; }
    .features__grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    .site-nav { display: none; }
    .nav-toggle { display: flex !important; visibility: visible !important; opacity: 1 !important; pointer-events: auto !important; }
    .hero__cta {
        flex-direction: column;
        align-items: center;
    }
    .about__inner,
    .details__inner { grid-template-columns: 1fr; gap: 3rem; }
    .about__image-frame img { height: 320px; }
    .details__images { grid-template-columns: 1fr 1fr; }
    .details__images img,
    .details__images .rr-placeholder { height: 140px; }
    .cta-section__contact {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .site-footer__inner {
        flex-direction: column;
        text-align: center;
    }
    .about__counter { gap: 1.5rem; }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }
    .details__images { grid-template-columns: 1fr; }
    .details__images img,
    .details__images .rr-placeholder { height: 190px; }
    .rr-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   BILD-PLATZHALTER (wenn noch kein Foto hochgeladen)
   ============================================================ */
.rr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2010 50%, #1a1a1a 100%);
    border: 1px dashed rgba(201,168,76,0.2);
    color: rgba(201,168,76,0.35);
    width: 100%;
    min-height: 200px;
    padding: 2rem;
    text-align: center;
}

.rr-placeholder svg {
    opacity: 0.3;
}

.rr-placeholder span {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rr-placeholder small {
    font-size: 0.6rem;
    opacity: 0.5;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.3);
}

/* ============================================================
   FADE-IN ANIMATIONEN (front-page benutzt .fi statt .fade-in)
   ============================================================ */
.fi {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fi.visible {
    opacity: 1;
    transform: none;
}
.fi.d1 { transition-delay: 0.1s; }
.fi.d2 { transition-delay: 0.2s; }
.fi.d3 { transition-delay: 0.3s; }

/* ============================================================
   GALERIE WRAP
   ============================================================ */
.gallery-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================
   DETAILS IMAGES GRID
   ============================================================ */


.details__images img,
.details__images .rr-placeholder {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: var(--transition);
}



/* ============================================================
   VERSION BADGE – Customizer Info
   ============================================================ */
.customize-partial-edit-shortcuts-shown .rr-placeholder {
    border-color: rgba(201,168,76,0.5);
}

/* ============================================================
   AREAS SUBTITLE
   ============================================================ */
.areas__sub {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--grey);
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews {
    padding: 2rem 0 6rem;
    background: var(--dark);
}

.reviews .section-label { color: var(--gold); }
.reviews .section-title { color: var(--white); }

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 720px) {
    .reviews__grid { grid-template-columns: 1fr; }
}

.review-card {
    background: var(--dark-card);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.review-card__stars {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 1.1rem;
    color: var(--grey);
}

.star--filled {
    color: var(--gold);
}

.review-card__text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--grey-light);
    font-style: italic;
    flex: 1;
}

.review-card__text::before {
    content: '\201E';
    color: var(--gold);
    font-size: 1.6rem;
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 4px;
}

.review-card__text::after {
    content: '\201C';
    color: var(--gold);
    font-size: 1.6rem;
    line-height: 0;
    vertical-align: -0.4em;
    margin-left: 4px;
}

.review-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(201,168,76,0.12);
    padding-top: 1rem;
}

.review-card__name {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.review-card__source {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    color: var(--grey);
    letter-spacing: 0.06em;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrap {
    margin-top: 3rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.form-success {
    background: rgba(201,168,76,0.12);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    padding: 1.2rem 1.6rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.rr-form {
    display: grid;
    gap: 1rem;
}

.rr-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .rr-form__row { grid-template-columns: 1fr; }
}

.rr-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.rr-form__field label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey);
}

.rr-form__field input,
.rr-form__field textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
    resize: vertical;
}

.rr-form__field input:focus,
.rr-form__field textarea:focus {
    border-color: var(--gold);
}

.rr-form__field input::placeholder,
.rr-form__field textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.rr-form .btn--gold {
    margin-top: 0.5rem;
    justify-self: start;
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

/* wpcf7 override – match our button style */
.wpcf7 input[type="submit"] {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.wpcf7 input[type="submit"]:hover {
    background: var(--gold-light);
}

/* ============================================================
   FILMAUTO SECTION
   ============================================================ */
.filmauto {
    padding: 40px 0 100px;
    background-color: var(--dark);
}
.filmauto__inner {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: center;
}
.filmauto__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 0.45rem 1.2rem;
    margin-bottom: 1.8rem;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--font-sans);
}
.filmauto__use-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2.5rem;
}
.filmauto__use-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 1.4rem;
    transition: var(--transition);
}
.filmauto__use-card:hover {
    border-color: rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.04);
}
.filmauto__use-icon {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    line-height: 1;
}
.filmauto__use-title {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.filmauto__use-text {
    font-size: 0.83rem;
    color: var(--grey-light);
    line-height: 1.65;
}
.filmauto__cta {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.filmauto__cta-phone {
    /* kein margin-left nötig – gap im flex-container übernimmt das */
}
.filmauto__visual { position: relative; }
.filmauto__visual-frame { overflow: hidden; position: relative; }
.filmauto__visual-frame img {
    width: 100%; height: 420px;
    object-fit: cover;
    object-position: center 45%;
    display: block;
    transition: transform 0.6s ease;
}
.filmauto__visual-frame:hover img { transform: scale(1.03); }
.filmauto__visual-tag {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: var(--gold); color: var(--black);
    font-family: var(--font-sans); font-size: 0.63rem;
    font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; padding: 0.45rem 0.9rem;
}
.filmauto__visual-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(20,18,16,0.88));
    padding: 2rem 1.5rem 1.5rem;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.05rem; font-style: italic;
}
@media (max-width: 960px) {
    .filmauto__inner { grid-template-columns: 1fr; gap: 3rem; }
    .filmauto__visual-frame img { height: 260px; object-position: center 45%; }
}
@media (max-width: 560px) {
    .filmauto__use-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ / IMPRESSUM / DATENSCHUTZ pages
   ============================================================ */
.legal-page, .faq-page {
    padding: 120px 0 80px;
    background: var(--black);
    min-height: 100vh;
}
.legal-page__header, .faq-page__header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}
.legal-content, .faq-accordion {
    max-width: 820px;
    margin: 0 auto;
}
.legal-content h2 {
    font-family: var(--font-sans);
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold);
    margin: 2.5rem 0 0.8rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding-bottom: 0.5rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
    color: var(--grey-light);
    line-height: 1.9; font-size: 0.95rem;
    margin-bottom: 0.6rem;
}
.legal-content ul { margin: 0.5rem 0 1rem 1.2rem; }
.legal-content strong { color: var(--white); }
.legal-content a { color: var(--gold); text-underline-offset: 3px; }
/* FAQ accordion */
.faq-item { border-bottom: 1px solid rgba(201,168,76,0.18); }
.faq-item__question {
    width: 100%; background: none; border: none;
    color: var(--white); font-family: var(--font-serif);
    font-size: 1.15rem; font-weight: 400;
    text-align: left; padding: 1.4rem 3rem 1.4rem 0;
    cursor: pointer; position: relative;
    transition: color 0.3s ease; line-height: 1.4;
}
.faq-item__question:hover { color: var(--gold); }
.faq-item__question::after {
    content: '+'; position: absolute; right: 0;
    top: 50%; transform: translateY(-50%);
    font-family: var(--font-sans); font-size: 1.4rem;
    font-weight: 300; color: var(--gold);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-item__question::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-item.active .faq-item__question { color: var(--gold); }
.faq-item__answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding-bottom 0.4s ease;
    padding-bottom: 0;
}
.faq-item.active .faq-item__answer {
    max-height: 800px;
    padding-bottom: 1.5rem;
}
.faq-item__answer p {
    color: var(--grey-light);
    line-height: 1.9; font-size: 0.93rem;
}
.faq-item__answer ul {
    margin: 0.6rem 0 0.2rem 1.2rem;
    color: var(--grey-light); font-size: 0.93rem; line-height: 1.8;
}
.faq-item__answer a { color: var(--gold); }
.faq-back-link { text-align: center; margin-top: 4rem; }

/* ============================================================
   v3 ADDITIONS
   ============================================================ */

/* ── TOP BAR ─────────────────────────────────────────────── */
.top-bar {
    background: rgba(10, 9, 8, 0.96);
    border-bottom: 1px solid rgba(201,168,76,0.18);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 0.45rem 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.top-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-bar__left {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.top-bar__right {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.top-bar__phone {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gold);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.top-bar__phone:hover { color: var(--gold-light); }

.top-bar__wa,
.top-bar__email {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-sans);
    font-size: 0.67rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.top-bar__wa:hover { color: #25D366; }
.top-bar__email:hover { color: var(--gold-light); }

/* Hero padding-top accounts for top-bar + header */

@media (max-width: 768px) {
    
}

/* Mobile: hide hours and email on very small screens */
@media (max-width: 560px) {
    .top-bar__email { display: none; }
    .top-bar__right { gap: 1rem; }
}


/* ── MOBILE NAV CONTACT ──────────────────────────────────── */
.mobile-nav__contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201,168,76,0.2);
}

.mobile-nav__contact a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.06em;
}


/* ── GALLERY SLIDER ──────────────────────────────────────── */
.gallery-slider-wrap {
    position: relative;
    overflow: hidden;
    background: var(--dark-mid);
}

.gallery-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    align-items: stretch;
}

.gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
    object-fit: contain;
    background: var(--dark-mid);
}

/* Navigation buttons */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(20,18,16,0.7);
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--gold);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.gallery-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.gallery-btn:hover svg {
    stroke: var(--black);
}

.gallery-btn--prev { left: 1.5rem; }
.gallery-btn--next { right: 1.5rem; }

/* Dots */
.gallery-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: 1px solid rgba(201,168,76,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .gallery-slide img { height: auto; max-height: 60vw; object-fit: contain; }
    .gallery-btn { width: 40px; height: 40px; }
}


/* ── FILMAUTO SVG ICONS ───────────────────────────────────── */


.filmauto__use-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    transition: stroke 0.35s ease;
}

.filmauto__use-card:hover 

.filmauto__use-card:hover .filmauto__use-icon svg {
    stroke: var(--black);
}


/* ── BUTTON SVG ICONS ─────────────────────────────────────── */
.btn svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.45rem;
    position: relative;
    top: -1px;
    flex-shrink: 0;
}




/* ── FORM CONTRAST IMPROVEMENTS (Light-Mode) ──────────────── */
body.light-mode .rr-form__field input,
body.light-mode .rr-form__field textarea {
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.18);
    color: #1a1a1a;
}

body.light-mode .rr-form__field input::placeholder,
body.light-mode .rr-form__field textarea::placeholder {
    color: rgba(0,0,0,0.38);
}

body.light-mode .rr-form__field input:focus,
body.light-mode .rr-form__field textarea:focus {
    border-color: var(--gold);
    background: rgba(0,0,0,0.07);
}

body.light-mode .rr-form__field label {
    color: #555;
}

/* ── FOOTER LINK VISIBILITY ──────────────────────────────── */




/* ══════════════════════════════════════════════════════════════
   v1.4 – Galerie Raster, Slider-Fix, Google Reviews Memo
   ══════════════════════════════════════════════════════════════ */

/* Raster-Layout */
.gallery-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
    gap:6px;
    padding:0;
}
.gallery-grid__item {
    position:relative;
    overflow:hidden;
    aspect-ratio:3/2;
}
.gallery-grid__item--main {
    grid-column:span 2;
    aspect-ratio:16/9;
}
.gallery-grid__item img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease, filter .5s ease;
    filter:grayscale(10%) brightness(.9);
}
.gallery-grid__item:hover img {
    transform:scale(1.04);
    filter:grayscale(0%) brightness(1);
}

.gallery-grid__item:hover 

@media(max-width:600px){
    .gallery-grid__item--main { grid-column:span 1; }
    .gallery-slide img { max-height: 60vw; }
}

/* ── Google Reviews – Memo für zukünftige Implementierung ──────
   ZUKÜNFTIG: Automatische Google Reviews Integration
   ═══════════════════════════════════════════════════════════════
   WIE ES FUNKTIONIERT:
   1. Google Business Profil anlegen (maps.google.com/business)
   2. Google Cloud Console → Places API aktivieren
      https://console.cloud.google.com/
   3. API-Key erstellen (nur für Places API beschränken!)
   4. Place ID herausfinden:
      https://developers.google.com/maps/documentation/javascript/examples/places-placeid-finder
   5. In customizer.php zwei Felder hinzufügen:
      rr_google_api_key  → API Key (verschlüsselt speichern)
      rr_google_place_id → Place ID (z.B. ChIJxxxxxxxxxx)
   6. In helpers.php Funktion rr_fetch_google_reviews() ergänzen:
      - wp_remote_get() zur Places API
      - Nur Bewertungen mit rating >= 4 ausgeben
      - Ergebnis als Transient cachen (set_transient, 24h)
   7. In front-page.php: if (rr_get('rr_google_api_key'))
        → Google Reviews anzeigen, sonst Repeater-Bewertungen
   KOSTEN: Google Places API Free Tier = 200$/Monat Guthaben
           Für kleine Seiten = kostenlos (ca. 2.000 Abfragen/Tag)
   ══════════════════════════════════════════════════════════════ */


/* ════════════════════════════════════════════════════════════
   THEME TOGGLE – Sonne/Mond Button mit Hover-Popup
   ════════════════════════════════════════════════════════════ */
.theme-toggle-wrap {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.theme-toggle {
    background: none;
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.theme-toggle:hover {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
}

.theme-toggle__icon {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-toggle__icon--sun {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}
.theme-toggle__icon--moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Popup */
.theme-toggle__popup {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--dark-card, #1a1a1a);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 8px;
    padding: 1rem;
    width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 1000;
}

.theme-toggle__popup::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 12px;
    width: 10px;
    height: 10px;
    background: var(--dark-card, #1a1a1a);
    border-left: 1px solid rgba(201,168,76,0.3);
    border-top: 1px solid rgba(201,168,76,0.3);
    transform: rotate(45deg);
}

.theme-toggle-wrap:hover .theme-toggle__popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Mini preview */
.theme-toggle__preview {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255,255,255,0.1);
    height: 60px;
    background: #FAF8F4;
}

.theme-toggle__preview-header {
    height: 14px;
    background: #C9A84C;
}

.theme-toggle__preview-lines {
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.theme-toggle__preview-lines div {
    height: 4px;
    border-radius: 2px;
    background: #333;
}

.theme-toggle__preview-lines div:nth-child(1) { width: 80%; }
.theme-toggle__preview-lines div:nth-child(2) { width: 60%; }
.theme-toggle__preview-lines div:nth-child(3) { width: 70%; }

.theme-toggle__label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: var(--grey-light, #ccc);
    text-align: center;
    line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════
   LIGHT MODE
   ════════════════════════════════════════════════════════════ */
body.light-mode {
    --black:      #FAF8F4;
    --dark:       #F0EDE8;
    --dark-mid:   #E8E4DE;
    --dark-card:  #FFFFFF;
    --white:      #1A1A1A;
    --grey:       #555555;
    --grey-light: #333333;
    background: #FAF8F4;
    color: #1A1A1A;
}

body.light-mode .site-header {
    background: rgba(250,248,244,0.97) !important;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

body.light-mode .site-header.scrolled {
    background: rgba(250,248,244,0.97) !important;
}

body.light-mode .site-nav a,
body.light-mode .site-logo__main,
body.light-mode .site-logo__sub {
    color: #1A1A1A;
}

body.light-mode .top-bar {
    background: rgba(240,237,232,0.98);
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

body.light-mode .top-bar__phone { color: var(--gold); }
body.light-mode .top-bar__wa,
body.light-mode .top-bar__email { color: #555; }

body.light-mode .hero__overlay {
    background: linear-gradient(
        to bottom,
        rgba(240,237,232,0.0) 0%,
        rgba(240,237,232,0.0) 65%,
        rgba(240,237,232,0.9) 88%,
        rgba(240,237,232,1.0) 100%
    );
}

body.light-mode .section-tag { color: var(--gold); }
body.light-mode .section-title { color: #1A1A1A; }
body.light-mode .section-text { color: #444; }

body.light-mode .feature-card {
    background: #FFFFFF;
    border-color: rgba(201,168,76,0.2);
}

body.light-mode .review-card {
    background: #FFFFFF;
    border-color: rgba(201,168,76,0.2);
}

body.light-mode .review-card__text { color: #444; }

body.light-mode .site-footer {
    background: #E8E4DE;
    border-top: 1px solid rgba(201,168,76,0.2);
}

body.light-mode .site-footer__copy,
body.light-mode .site-footer__links a { color: #555; }

body.light-mode .theme-toggle__popup {
    background: #FFFFFF;
    border-color: rgba(201,168,76,0.3);
}
body.light-mode .theme-toggle__popup::before {
    background: #FFFFFF;
}
body.light-mode .theme-toggle__preview {
    background: #1A1A1A;
}
body.light-mode .theme-toggle__preview-header { background: #C9A84C; }
body.light-mode .theme-toggle__preview-lines div { background: #FAF8F4; }
body.light-mode .theme-toggle__label { color: #555; }

/* Light mode icon swap */
body.light-mode .theme-toggle__icon--sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}
body.light-mode .theme-toggle__icon--moon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

body.light-mode .mobile-nav {
    background: rgba(250,248,244,0.99);
}
body.light-mode .mobile-nav a { color: #1A1A1A; }
body.light-mode .mobile-nav a:hover { color: var(--gold); }

/* ── DATE INPUT STYLING ──────────────────────────────────── */
/*
   DARK MODE (Standard): Felder haben dunklen Hintergrund.
   Calendar-Icon → weiß rendern (brightness(0) invert(1)).
   color-scheme: dark → Browser rendert dunklen Date-Picker.

   LIGHT MODE (Standard-Theme): body.light-mode ist gesetzt.
   Felder haben hellen Hintergrund (#FAF8F4).
   Calendar-Icon → Browser rendert es von sich aus dunkel,
   kein Filter nötig. Explizite Schriftfarbe = #1a1a1a,
   identisch zu allen anderen Inputs.
*/

/* ─── DARK MODE ─── */
.rr-form__field input[type="date"] {
    color-scheme: dark;
    color: var(--white);           /* = #FFFFFF im Dark Mode */
    cursor: pointer;
    position: relative;
}

.rr-form__field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: brightness(0) invert(1);  /* Icon → weiß */
    opacity: 0.9;
    cursor: pointer;
    padding-left: 6px;
    width: 18px;
    height: 18px;
}

.rr-form__field input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.rr-form__field input[type="date"]:focus {
    border-color: var(--gold);
}

/* ─── LIGHT MODE ─── */
body.light-mode .rr-form__field input[type="date"] {
    color-scheme: light;
    color: #1a1a1a !important;         /* Identisch zu allen anderen Inputs */
    -webkit-text-fill-color: #1a1a1a;  /* Browser-Override verhindern */
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.18);
}

body.light-mode .rr-form__field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: none;          /* Browser rendert dunkles Icon automatisch */
    opacity: 0.85;         /* Gut sichtbar */
    cursor: pointer;
    padding-left: 6px;
    width: 18px;
    height: 18px;
}

body.light-mode .rr-form__field input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

body.light-mode .hero__title {
    color: #1A1A1A;
    text-shadow: 0 1px 8px rgba(250,248,244,0.8);
}
body.light-mode .hero__title em {
    color: var(--gold);
}
body.light-mode .hero__subtitle {
    /* Light-Mode: dunklere Farbe für bessere Lesbarkeit auf hellem Hintergrund */
    color: rgba(20,18,16,0.82);
    text-shadow: 0 1px 3px rgba(250,248,244,0.5);
}
body.light-mode .hero__badge span {
    color: var(--gold);
}
body.light-mode .car-intro {
    background: #F0EDE8;
}
body.light-mode .car-intro__model,
body.light-mode .car-intro__tagline {
    color: #1A1A1A;
}
body.light-mode .car-intro__ornament {
    color: var(--gold);
}

/* Soft radial glow hinter dem Textblock – kein harter Kasten */
.hero__content {
    position: relative;
}
.hero__content::before {
    content: '';
    position: absolute;
    inset: -20% -15%;
    background: radial-gradient(ellipse at center,
        rgba(240,237,232,0.55) 0%,
        rgba(240,237,232,0.0) 70%
    );
    z-index: -1;
    pointer-events: none;
}
body:not(.light-mode) .hero__content::before {
    background: radial-gradient(ellipse at center,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.0) 70%
    );
}
body.light-mode .hero__title {
    color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.5);
}
body.light-mode .hero__subtitle {
    /* Light-Mode: dunkler Ton – klar lesbar auf Foto-Hintergrund */
    color: rgba(20,18,16,0.82);
    text-shadow: 0 1px 6px rgba(250,248,244,0.7), 0 2px 10px rgba(250,248,244,0.5);
}
body.light-mode .hero__badge span {
    color: var(--gold);
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* Hero-Elemente sofort sichtbar – kein Fader beim Einstieg */
.hero .fi {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}


/* ══════════════════════════════════════════════════════════════
   FIXES 2026-03-19
   - Date field / calendar icon harmonized in dark + light mode
   - Hero tagline moved lower and light mode color corrected
   - About section protected against accidental disappearance
   ══════════════════════════════════════════════════════════════ */

/* Hero subtitle / tagline */
.hero__content {
    margin-top: clamp(2.4rem, 5vh, 4.5rem);
}

.hero__subtitle--tagline {
    position: relative;
    top: 2.8rem;
    font-size: clamp(0.96rem, 1.35vw, 1.04rem);
    max-width: min(1120px, calc(100vw - 7rem));
    margin: 1.45rem auto 0;
    padding-top: 1.05rem;
    line-height: 1.45;
    letter-spacing: 0.02em;
    white-space: nowrap;
    color: rgba(235, 232, 226, 0.82);
    text-shadow: 0 1px 8px rgba(0,0,0,0.58);
    border-top: 1px solid rgba(180,148,77,0.28);
}

body.light-mode .hero__subtitle--tagline {
    color: rgba(38, 34, 29, 0.82);
    text-shadow: 0 1px 10px rgba(250,248,244,0.72);
    border-top-color: rgba(180,148,77,0.34);
}

.about .section-tag {
    display: none !important;
}

@media (max-width: 991px) {
    .hero__content {
        margin-top: clamp(1.4rem, 3vh, 2.2rem);
    }

    .hero__subtitle--tagline {
        top: 1.9rem;
        margin-top: 1.2rem;
        max-width: 92%;
        font-size: 0.94rem;
        white-space: normal;
        line-height: 1.65;
    }
}

/* Date field: native placeholder + icon aligned with the other fields */
.rr-form__field input[type="date"] {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.rr-form__field input[type="date"].is-empty {
    color: rgba(255,255,255,0.32);
    -webkit-text-fill-color: rgba(255,255,255,0.32);
}

.rr-form__field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: brightness(0) invert(1);
    opacity: 0.34;
}

.rr-form__field input[type="date"]:hover::-webkit-calendar-picker-indicator,
.rr-form__field input[type="date"]:focus::-webkit-calendar-picker-indicator {
    opacity: 0.52;
}

body.light-mode .rr-form__field input[type="date"] {
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a;
}

body.light-mode .rr-form__field input[type="date"].is-empty {
    color: rgba(0,0,0,0.38) !important;
    -webkit-text-fill-color: rgba(0,0,0,0.38);
}

body.light-mode .rr-form__field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: grayscale(1) brightness(0.32);
    opacity: 0.46;
}

body.light-mode .rr-form__field input[type="date"]:hover::-webkit-calendar-picker-indicator,
body.light-mode .rr-form__field input[type="date"]:focus::-webkit-calendar-picker-indicator {
    opacity: 0.62;
}


/* ============================================================
   SECTION DIVIDERS – automatische Trennung gleichfarbiger Sections
   Wirkt unabhängig von der Customizer-Reihenfolge, rein DOM-basiert.
   ============================================================ */

/*
 * Alle Sections die direkt aufeinander folgen können:
 * .car-intro, .features, .about, .gallery, .blumen-section,
 * .details, .filmauto, .reviews, .cta-section
 *
 * Strategie: ::before-Pseudo auf der nachfolgenden Section.
 * Hellere Variante (--dark auf --dark) → dünne Goldlinie.
 * Dunklere Variante (--black auf --black) → etwas breiter.
 */

/* Sammlung aller Section-Selektoren als Basis */
.car-intro, .features, .about, .gallery, .blumen-section,
.details, .filmauto, .reviews, .cta-section {
    --rr-section-divider: none; /* Standard: kein Divider */
}

/* --dark auf --dark: filmauto, reviews, details haben alle var(--dark) */
.filmauto + .reviews::before,
.filmauto + .details::before,
.details + .reviews::before,
.details + .filmauto::before,
.reviews + .filmauto::before,
.reviews + .details::before,
.blumen-section + .filmauto::before,
.blumen-section + .reviews::before,
.gallery + .details::before,
.gallery + .filmauto::before,
.gallery + .reviews::before,
.about + .gallery::before,
.about + .filmauto::before,
.about + .reviews::before,
.features + .gallery::before,
.features + .filmauto::before,
.features + .reviews::before {
    content: '';
    display: block;
    width: min(420px, 60%);
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.35), transparent);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Sections brauchen position:relative – bereits gesetzt im FINAL CLEANUP unten */

/* --black auf --black: gallery, cta-section */
.gallery + .cta-section::before,
.cta-section + .gallery::before {
    content: '';
    display: block;
    width: min(320px, 50%);
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.25), transparent);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Light-Mode: Divider etwas sichtbarer machen */
body.light-mode .filmauto + .reviews::before,
body.light-mode .filmauto + .details::before,
body.light-mode .details + .reviews::before,
body.light-mode .details + .filmauto::before,
body.light-mode .reviews + .filmauto::before,
body.light-mode .reviews + .details::before,
body.light-mode .blumen-section + .filmauto::before,
body.light-mode .blumen-section + .reviews::before,
body.light-mode .gallery + .details::before,
body.light-mode .gallery + .filmauto::before,
body.light-mode .gallery + .reviews::before,
body.light-mode .about + .gallery::before,
body.light-mode .about + .filmauto::before,
body.light-mode .about + .reviews::before,
body.light-mode .features + .gallery::before,
body.light-mode .features + .filmauto::before,
body.light-mode .features + .reviews::before {
    background: linear-gradient(to right, transparent, rgba(180,150,60,0.45), transparent);
}


/* ============================================================
   MOBILE LANDSCAPE – Header & Top-Bar kompakt
   Bei geringer Viewport-Höhe (Querformat Mobile) wird die Top-Bar
   ausgeblendet und der Header auf ein Minimum reduziert, damit
   der Inhalt nicht hinter dem fixierten Header verschwindet.
   ============================================================ */

@media (max-height: 500px) and (orientation: landscape) {

    /* Top-Bar komplett verstecken */
    .top-bar {
        display: none !important;
    }

    /* Header direkt oben, schlanker */
    .site-header {
        top: 0 !important;
        padding: 0.5rem 0 !important;
    }

    .site-header.scrolled {
        padding: 0.4rem 0 !important;
    }

    /* CSS-Variable auf 0 setzen damit body-padding stimmt */
    :root {
        --rr-topbar-height: 0px !important;
    }

    /* Logo etwas kleiner */
    .site-logo__main { font-size: 1rem; }
    .site-logo__sub  { font-size: 0.6rem; }

    /* Hero: volle Höhe ohne Top-Bar-Offset */
    .hero {
        min-height: 100svh;
    }
}

/* ============================================================
   FINAL CLEANUP – konsolidierte Fixes
   ============================================================ */

/* Einheitliche obere Abstände der großen Inhaltssektionen */
.features,
.blumen-section,
.about,
.gallery,
.details,
.filmauto,
.reviews {
    padding-top: 96px;
}

/* Überlaufende Reste an den Abschnittskanten unterdrücken */
.car-intro,
.features,
.blumen-section,
.about,
.gallery,
.details,
.filmauto,
.reviews {
    position: relative;
    overflow-x: clip;
}

/* FAQ: alle Fragen initial geschlossen */
.faq-item__answer {
    display: block;
}

/* Galerie Buttons im Hellmodus */
body.light-mode .gallery-btn {
    background: rgba(250,248,244,0.88);
    border-color: rgba(201,168,76,0.55);
    color: var(--gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
body.light-mode .gallery-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #1A1A1A;
}
body.light-mode .gallery-btn:hover svg {
    stroke: #1A1A1A;
}

/* Mobile Header / Nav Stabilisierung */
.mobile-nav nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: min(100%, 420px);
    margin: 0 auto;
}
.mobile-nav__close {
    position: absolute;
    top: max(1rem, env(safe-area-inset-top));
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 999px;
    background: transparent;
}
.mobile-nav__close span {
    position: absolute;
    width: 18px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
}
.mobile-nav__close span:first-child { transform: rotate(45deg); }
.mobile-nav__close span:last-child  { transform: rotate(-45deg); }

@media (max-width: 768px) {
    :root { --rr-topbar-height: 40px; }
    .site-header { top: var(--rr-topbar-height, 40px); padding: 0.85rem 0; }
    .site-header__inner { padding: 0 1rem; gap: 0.75rem; min-height: 44px; align-items: center; }
    .site-logo { flex: 1 1 auto; min-width: 0; }
    .site-logo__main {
        font-size: clamp(0.95rem, 6vw, 1.25rem);
        letter-spacing: 0.03em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .site-logo__sub {
        font-size: 0.5rem;
        letter-spacing: 0.2em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .site-nav { display: none !important; }
    .theme-toggle-wrap {
        margin-left: auto;
        margin-right: 0.15rem;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }
    .theme-toggle__popup { display: none !important; }
    .nav-toggle {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        width: 44px;
        height: 44px;
        padding: 0;
        flex: 0 0 44px;
        color: var(--white);
        border: 1px solid rgba(201,168,76,0.28);
        border-radius: 999px;
        background: transparent;
        overflow: hidden;
    }
    .nav-toggle span {
        display: block;
        flex: 0 0 auto;
        width: 18px;
        height: 1.5px;
        background: currentColor;
        border-radius: 999px;
        margin: 0;
    }
    .top-bar__inner { padding: 0 0.9rem; }
    .top-bar__right { display: none; }
    .top-bar__phone { font-size: 0.72rem; letter-spacing: 0.04em; }
    .mobile-nav {
        z-index: 2005;
        padding: calc(env(safe-area-inset-top) + 5.75rem) 1.25rem calc(env(safe-area-inset-bottom) + 1.5rem);
        justify-content: flex-start;
        align-items: stretch;
        overflow-y: auto;
        background: rgba(10,10,10,0.985);
    }
    .mobile-nav.active { display: flex; }
    .mobile-nav a { width: 100%; font-size: clamp(1.15rem, 5.5vw, 1.55rem); line-height: 1.2; }
    .mobile-nav .btn { width: 100%; text-align: center; margin-top: 0.5rem !important; }
    .mobile-nav__contact { width: min(100%, 420px); margin: 1.5rem auto 0; }
    body.mobile-nav-open { overflow: hidden; }
    body.mobile-nav-open .site-header,
    body.mobile-nav-open .top-bar { z-index: 2001; }
    .hero__subtitle--tagline {
        border-top: 0;
        padding-top: 0;
        margin-top: 1rem;
    }
    .hero__bg { background-position: 74% center; }
}
@media (max-width: 560px) {
    .site-logo__main { font-size: 0.9rem; }
    .site-logo__sub { font-size: 0.46rem; letter-spacing: 0.16em; }
    .theme-toggle,
    .nav-toggle { width: 40px; height: 40px; }
    .mobile-nav { padding-top: calc(env(safe-area-inset-top) + 5.25rem); }
}
body.light-mode .nav-toggle {
    color: #1A1A1A;
    border-color: rgba(201,168,76,0.35);
}
body.light-mode .mobile-nav {
    background: rgba(250,248,244,0.995);
}
body.light-mode .mobile-nav__close {
    color: #1A1A1A;
    border-color: rgba(201,168,76,0.35);
}

@media (max-width: 480px) {
    .top-bar__inner {
        padding: 0 1rem;
    }
    .top-bar__phone {
        font-size: 0.72rem;
        letter-spacing: 0.03em;
    }
    .top-bar__right {
        display: none;
    }
    :root { --rr-topbar-height: 34px; }
    .site-header { top: 34px; }
}

.hero__subtitle2 {
    font-family: var(--font-sans);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.9);
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* ============================================================
   MOBILE OVERFLOW FIX – iPhone / kleine Screens
   ============================================================ */

/* Hero Badge: auf kleinen Screens kompakter damit nichts überläuft */
@media (max-width: 480px) {
    .hero__badge {
        gap: 0.5rem;
        max-width: 100%;
        overflow: hidden;
    }
    .hero__badge::before,
    .hero__badge::after {
        width: 20px;
        flex-shrink: 0;
    }
    .hero__badge span {
        font-size: 0.58rem;
        letter-spacing: 0.18em;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Container etwas mehr Luft auf sehr kleinen Screens */
    .container,
    .container--narrow {
        padding: 0 1.25rem;
    }

    /* Blumen-Grid auf sehr kleinen Screens */
    .blumen-grid {
        gap: 0.75rem;
    }

    /* Details-Liste kein overflow */
    .details__list li {
        word-break: break-word;
    }

    /* CTA-Buttons stacken sauber */
    .cta-section .fi[style*="flex"] {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-section .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* About counter: auf Mobile kleinerer Gap und kein overflow */
@media (max-width: 768px) {
    .about__counter {
        gap: 1rem;
        justify-content: space-between;
    }
    .about__counter-label {
        font-size: 0.62rem;
        letter-spacing: 0.08em;
    }
    .about__counter-item {
        flex: 1 1 0;
        min-width: 0;
    }
}
@media (max-width: 768px) {
    /* Bilder und Medien explizit begrenzen – aber NICHT position:absolute/fixed */
    img, video, iframe {
        max-width: 100%;
    }
    /* Tabellen scrollen intern */
    table {
        display: block;
        overflow-x: auto;
        max-width: 100%;
    }
    /* About-Sektion: Text nicht abschneiden */
    .about__text p,
    .about__text1,
    .about__text2,
    .section-text {
        max-width: 100%;
        word-break: break-word;
    }
}

/* About-Textspalte: kein overflow auf Mobile */
@media (max-width: 768px) {
    .about__inner > div:first-child {
        min-width: 0;
        overflow: hidden;
    }
    .about__inner .section-text {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}
