/* Overflow-Schutz */
html, body { overflow-x: clip; }

/* ────────────────────────────────────────
   BUTTONS (shared)
   ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    line-height: 1.2;
    min-height: 44px;
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.btn--primary {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.btn--primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn--outline:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ────────────────────────────────────────
   SITE HEADER
   ──────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(23, 64, 118, 0.18);
    box-shadow: 0 1px 12px rgba(23, 64, 118, 0.06);
    transition: box-shadow 200ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.site-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 120px;
    transition: min-height 250ms ease;
}

.site-header.is-scrolled .site-header__inner {
    min-height: 72px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    height: 100px;
    width: auto;
    max-height: none;
    max-width: none;
    display: block;
    transition: height 250ms ease;
}

.site-header.is-scrolled .site-logo img {
    height: 44px;
}

.site-logo__text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.site-logo__name {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: none;
    opacity: 0;
    transition: opacity 250ms ease;
}

@media (min-width: 768px) {
    .site-header.is-scrolled .site-logo__name {
        display: inline;
        opacity: 1;
    }
}

/* Navigation */
.site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.site-nav__link {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.5rem 0;
    transition: color 200ms ease, border-color 200ms ease;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.site-nav__link[aria-current="page"] {
    border-bottom: 2px solid var(--color-copper, #b9764b);
}

.site-nav__link:hover {
    color: var(--color-accent);
}

.site-nav__cta {
    margin-left: var(--space-sm);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Phone + Social Meta */
.site-nav__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 16px;
    border-left: 1px solid rgba(23, 64, 118, 0.2);
    margin-left: 8px;
}

.site-nav__phone {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #aaaaaa;
    text-decoration: none;
}

.site-nav__phone:hover {
    color: var(--color-accent);
}

.site-nav__social {
    color: #aaaaaa;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-nav__social:hover {
    color: var(--color-accent);
}

.site-nav__social svg,
.site-nav__phone svg {
    width: 18px;
    height: 18px;
}

/* Desktop nav layout */
.site-nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Burger toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    z-index: 210;
}

.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: transform 200ms ease, opacity 200ms ease;
}

/* Burger animation when open */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ────────────────────────────────────────
   MOBILE NAV (< 768px)
   ──────────────────────────────────────── */
@media (max-width: 767px) {
    .site-header__inner,
    .site-header.is-scrolled .site-header__inner {
        min-height: 56px;
        padding: 0 var(--space-md);
    }

    .site-logo img,
    .site-header.is-scrolled .site-logo img {
        height: 36px;
    }

    .site-header.is-scrolled .site-logo__name {
        display: none;
    }

    .site-nav__meta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 200;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        transform: translateX(100%);
        transition: transform 300ms ease;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .site-nav__list {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

    .site-nav__link {
        font-size: 1.25rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .site-nav__cta {
        margin-left: 0;
        font-size: 1.125rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }
}

/* ────────────────────────────────────────
   SITE FOOTER
   ──────────────────────────────────────── */
.site-footer {
    background: #f0ece6;
    color: #333333;
    margin-top: var(--space-lg);
}

.site-footer__accent {
    height: 1px;
    background: var(--color-accent);
}

.site-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-md);
}

.site-footer__logo {
    max-width: 140px;
    height: auto;
    display: block;
    margin-bottom: var(--space-xs);
}

.site-footer__heading {
    color: #888888;
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 var(--space-xs);
    letter-spacing: 0;
}

.site-footer__address {
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #333333;
    margin-bottom: var(--space-xs);
}

.site-footer__link {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 200ms ease;
}

.site-footer__link:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.site-footer p {
    margin: 0.2rem 0;
    font-size: 0.875rem;
}

/* Oeffnungszeiten */
.site-footer__hours {
    margin: 0;
    font-size: 0.875rem;
    color: #333333;
    width: fit-content;
}

.site-footer__hours-row {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: 0.2rem 0;
}

.site-footer__hours-row dt {
    font-weight: 500;
}

.site-footer__hours-row dd {
    margin: 0;
    text-align: right;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-social__link {
    color: var(--color-primary);
    display: flex;
    align-items: center;
}

.footer-social__link:hover {
    color: var(--color-accent);
}

.footer-social__link svg {
    width: 20px;
    height: 20px;
}

/* Footer-Bar */
.site-footer__bar {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.site-footer__bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-xs) var(--space-md);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.site-footer__bar-link {
    color: #999999;
    text-decoration: none;
    font-size: 0.875rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
    transition: color 200ms ease;
}

.site-footer__bar-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ────────────────────────────────────────
   FOOTER MOBILE (< 768px)
   ──────────────────────────────────────── */
@media (max-width: 767px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: var(--space-md) var(--space-md);
    }
}

/* ────────────────────────────────────────
   MAIN CONTENT
   ──────────────────────────────────────── */
main {
    min-height: 50vh;
}

/* ────────────────────────────────────────
   PAGE CONTENT (Impressum, Datenschutz etc.)
   ──────────────────────────────────────── */
.page-content__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

.page-content__text h2 {
    margin-top: var(--space-lg);
}

.page-content__text p {
    margin-bottom: var(--space-sm);
}

/* ────────────────────────────────────────
   SECTIONS (shared pattern)
   ──────────────────────────────────────── */
[id] {
    scroll-margin-top: 180px;
}

@media (max-width: 767px) {
    [id] {
        scroll-margin-top: 110px;
    }
}

.section {
    padding: var(--space-xl) var(--space-md);
}

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

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

.section__inner {
    max-width: 1280px;
    margin: 0 auto;
}

/* Section-Header + Eyebrow (Plattform-Pattern) */
.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-header .section__title {
    margin-bottom: 0;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-eyebrow::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: currentColor;
    display: inline-block;
}

.section__title {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.section__intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    line-height: 1.6;
}

/* ────────────────────────────────────────
   HERO (zwei Spalten: Text links, Bild rechts)
   ──────────────────────────────────────── */
.hero {
    background: var(--color-bg);
    padding: 3rem 0 5rem;
}

.hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hero__media {
    margin-right: var(--space-md);
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.hero .hero__headline {
    color: var(--color-primary);
    font-size: clamp(1.5rem, 2.2vw, 2.25rem);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0.75rem 0 1rem;
}

.hero__subline {
    color: var(--color-text);
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 0 0 var(--space-md);
}

.hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
}

.hero__bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: var(--color-text);
}

.hero__bullets li::before {
    content: '\25C6';
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-size: 0.65rem;
    top: 0.35em;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.hero__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.hero__placeholder {
    aspect-ratio: 4 / 5;
    max-height: 600px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 1rem;
}

.hero__placeholder .ti {
    font-size: 3rem;
}

@media (max-width: 767px) {
    .hero {
        padding: 2rem 0 3rem;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-right: var(--space-md);
    }

    .hero__media {
        margin-left: auto;
        margin-right: auto;
        width: 85%;
        order: -1;
    }

    .hero__media img,
    .hero__placeholder {
        max-height: 45vw;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .hero__ctas {
        flex-direction: column;
    }

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

/* ────────────────────────────────────────
   SERVICES GRID (4-Saeulen)
   ──────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.services-card {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 1px solid transparent;
    transition: border-color 200ms ease;
}

.services-card:hover {
    border-color: rgba(185, 118, 75, 0.5);
}

.services-card__icon {
    font-size: 2rem;
    color: var(--color-accent);
    display: block;
    margin-bottom: var(--space-sm);
}

.services-card__title {
    margin: 0 0 var(--space-xs);
}

.services-card__text {
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

.services-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }

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

/* ────────────────────────────────────────
   TARGET GROUPS (Zielgruppen)
   ──────────────────────────────────────── */
.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.target-card {
    border-radius: var(--radius-lg);
    background: var(--color-primary);
    padding: 2rem;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.target-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 64, 118, 0.3);
}

.target-card__icon {
    font-size: 2rem;
    color: var(--color-bg);
    display: block;
    margin-bottom: var(--space-sm);
}

.target-card__title {
    color: #fff;
    font-weight: 600;
    margin: 0 0 var(--space-xs);
}

.target-card__intro {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0 0 var(--space-sm);
}

.target-card__bullets {
    margin: 0;
    padding-left: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    list-style: none;
}

.target-card__bullets li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.target-card__bullets li::before {
    content: "•";
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.target-card__bullets strong {
    color: #fff;
}

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

/* ────────────────────────────────────────
   BRAND GRID (Marken-Tiles)
   ──────────────────────────────────────── */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.brand-tile {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1rem;
    border: 0.5px solid rgba(23, 64, 118, 0.12);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.brand-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.brand-tile img {
    max-height: 100px;
    width: auto;
    max-width: 80%;
    object-fit: contain;
    display: block;
    margin: auto;
}

@media (max-width: 767px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-tile {
        min-height: 90px;
    }

    .brand-tile img {
        max-height: 70px;
    }
}

/* ────────────────────────────────────────
   STEPS (So funktioniert's)
   ──────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    text-align: center;
    counter-reset: step;
}

.step-card {
    position: relative;
}

.step-card__icon {
    font-size: 3rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.step-card__number {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.step-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.step-card__text {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.5;
}

/* Verbindungslinie zwischen Schritten (Desktop) */
.step-card + .step-card::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: -1.5rem;
    width: 1px;
    height: 2rem;
    background: var(--color-accent);
    opacity: 0.3;
}

@media (min-width: 768px) {
    .step-card + .step-card::before {
        top: 1.75rem;
        left: calc(-1 * var(--space-lg) / 2);
        width: var(--space-lg);
        height: 1px;
    }
}

@media (max-width: 767px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .step-card + .step-card::before {
        top: -0.75rem;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Verbindungslinie nur horizontal bei 2x2 */
    .step-card + .step-card::before {
        display: none;
    }
}

/* ────────────────────────────────────────
   REFERENCE CAROUSEL
   ──────────────────────────────────────── */
.ref-carousel {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3.5rem;
}

.ref-carousel__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding: var(--space-xs) 0;
}

.ref-carousel__track::-webkit-scrollbar {
    display: none;
}

.ref-carousel__card {
    flex: 0 0 calc((100% - 2 * 1.5rem) / 3);
    scroll-snap-align: start;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 0.5px solid rgba(23, 64, 118, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 200ms ease, box-shadow 200ms ease;
    display: flex;
    flex-direction: column;
}

.ref-carousel__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ref-card__label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.ref-card__logo {
    display: block;
    max-height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: var(--space-sm);
}

.ref-card__title {
    margin: 0 0 var(--space-xs);
    font-size: 1.125rem;
}

.ref-card__text {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

.ref-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 0.5px solid rgba(23, 64, 118, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-primary);
    transition: box-shadow 200ms ease;
    z-index: 2;
    padding: 0;
}

.ref-carousel__btn:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.ref-carousel__btn--prev {
    left: 0;
}

.ref-carousel__btn--next {
    right: 0;
}

/* Hide mobile nav wrapper on desktop */
.ref-carousel__nav {
    display: none;
}

@media (max-width: 767px) {
    .ref-carousel {
        padding: 0 0.5rem;
    }

    .ref-carousel__card {
        flex: 0 0 100%;
    }

    .ref-carousel__track {
        gap: var(--space-lg);
    }

    .ref-carousel__btn--desktop {
        display: none;
    }

    .ref-carousel__nav {
        display: flex;
        justify-content: center;
        gap: var(--space-sm);
        margin-top: var(--space-md);
    }

    .ref-carousel__nav .ref-carousel__btn {
        position: static;
        transform: none;
    }
}

/* ────────────────────────────────────────
   SHOWROOM — Asymmetric Featured Grid
   ──────────────────────────────────────── */
.showroom__text {
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    text-align: center;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.showroom__text p {
    margin: 0 0 var(--space-sm);
}

/* Showroom Hours Card */
.showroom-hours {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.showroom-hours__card {
    background: var(--color-white, #fff);
    border: 1px solid var(--color-border, #e5e0d8);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    min-width: min(280px, 100%);
    max-width: 400px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}

.showroom-hours__day-short {
    display: none;
}

.showroom-hours__list {
    margin: 0;
    padding: 0;
}

.showroom-hours__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--color-border, #e5e0d8);
    font-size: 0.95rem;
}

.showroom-hours__row:last-child {
    border-bottom: none;
}

.showroom-hours__row dt {
    font-weight: 500;
    color: var(--color-text, #1a1a1a);
}

.showroom-hours__row dd {
    margin: 0;
    color: var(--color-text-muted, #666);
}

.showroom-hours__cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1.25rem;
}

@media (max-width: 768px) {
    .showroom-hours__card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .showroom-hours__day-long {
        display: none;
    }
    .showroom-hours__day-short {
        display: inline;
    }
}

/* Grid: 3 columns (2fr + 1fr + 1fr), fixed row height */
.showroom-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 6px;
}

/* Shared tile styles */
.showroom-grid__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: var(--color-surface);
    aspect-ratio: unset;
    height: 100%;
    display: block;
}

/* Featured image: left column (2fr) over 2 rows = 400px */
.showroom-grid__featured {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    aspect-ratio: unset;
    height: 100%;
}

.showroom-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 300ms ease;
}

.showroom-grid__item:hover img,
.showroom-grid__item:focus-visible img {
    transform: scale(1.04);
}

/* Hover overlay */
.showroom-grid__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(23, 64, 118, 0);
    color: #fff;
    transition: background 200ms ease, opacity 200ms ease;
    opacity: 0;
    pointer-events: none;
}

.showroom-grid__item:hover .showroom-grid__overlay,
.showroom-grid__item:focus-visible .showroom-grid__overlay {
    background: rgba(23, 64, 118, 0.3);
    opacity: 1;
}

/* "+X weitere" tile */
.showroom-grid__more {
    background: rgba(185, 118, 75, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.showroom-grid__more-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.showroom-grid__more-plus {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.2;
}

.showroom-grid__more-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.showroom-grid__more:hover {
    background: rgba(185, 118, 75, 0.18);
}

.showroom-grid__more:hover .showroom-grid__more-plus {
    color: var(--color-accent-hover, var(--color-accent));
}

/* CTA under grid */
.showroom__cta {
    text-align: center;
    margin-top: var(--space-lg);
}

/* Focus ring for keyboard users */
.showroom-grid__item:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* ── Mobile: collapse to 2-col equal grid ── */
@media (max-width: 767px) {
    .showroom-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 4px;
    }

    .showroom-grid__featured {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1;
    }

    .showroom-grid__more-plus {
        font-size: 1.25rem;
    }

    .showroom-grid__more-label {
        font-size: 0.75rem;
    }
}

/* ────────────────────────────────────────
   LIGHTBOX
   ──────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 250ms ease, visibility 250ms ease;
}

.lightbox--open {
    opacity: 1;
    visibility: visible;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 200ms ease;
    padding: 0;
}

.lightbox__close:hover {
    opacity: 1;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background 200ms ease;
    padding: 0;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox__nav--prev {
    left: 1rem;
}

.lightbox__nav--next {
    right: 1rem;
}

.lightbox__figure {
    position: relative;
    z-index: 2;
    max-width: calc(100vw - 120px);
    max-height: calc(100vh - 120px);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.lightbox__img {
    max-width: 100%;
    max-height: calc(100vh - 160px);
    object-fit: contain;
    display: block;
    border-radius: var(--radius-md);
    pointer-events: auto;
}

.lightbox__caption {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    text-align: center;
    max-width: 600px;
    line-height: 1.5;
    pointer-events: auto;
}

.lightbox__counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .lightbox__nav {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 3.5rem;
        transform: none;
    }

    .lightbox__nav--prev {
        left: 1.5rem;
    }

    .lightbox__nav--next {
        right: 1.5rem;
    }

    .lightbox__figure {
        max-width: calc(100vw - 16px);
        max-height: calc(100vh - 100px);
    }

    .lightbox__img {
        max-height: calc(100vh - 140px);
    }
}

/* ────────────────────────────────────────
   ABOUT (Über uns)
   ──────────────────────────────────────── */
.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.about__photo {
    margin: 0;
}

.about__photo img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
}

.about__caption {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
    font-style: italic;
}

/* Pull-Quote */
.about__pullquote {
    margin: 0 0 var(--space-md);
    padding: 0;
    padding-left: 1.25rem;
    border-left: 3px solid var(--color-accent);
}

.about__pullquote h3 {
    font-size: 1.15rem;
    font-weight: 600;
    font-style: italic;
    color: var(--color-primary);
    line-height: 1.5;
    margin: 0 0 0.5rem;
}

.about__pullquote cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.about__text {
    line-height: 1.7;
    color: var(--color-text);
}

.about__text p {
    margin: 0 0 var(--space-sm);
}

/* Stats-Reihe */
.about__stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(23, 64, 118, 0.1);
}

.about__stat {
    display: flex;
    flex-direction: column;
}

.about__stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.2;
}

.about__stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.15rem;
}

/* Tag-Wolke */
.about__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(23, 64, 118, 0.08);
}

.about__tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    background: var(--color-surface);
    border-radius: 100px;
    letter-spacing: 0.02em;
}

@media (max-width: 767px) {
    .about__layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about__stats {
        gap: var(--space-md);
    }

    .about__stat-number {
        font-size: 1.5rem;
    }
}

/* ────────────────────────────────────────
   REVIEWS SLIDER (Kundenmeinungen)
   ──────────────────────────────────────── */
.reviews__rating {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.review-carousel {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3.5rem;
}

.carousel__track {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5rem 0;
}

.carousel__track::-webkit-scrollbar {
    display: none;
}

.review-slide {
    flex: 0 0 calc(50% - var(--space-lg) / 2);
    scroll-snap-align: start;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 0.5px solid rgba(23, 64, 118, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.review-slide__quote {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.4;
    display: block;
    margin-bottom: -1rem;
}

.review-slide__text {
    margin: 0 0 var(--space-md);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--color-text);
    flex: 1;
}

.review-slide__stars {
    display: flex;
    gap: 0.15rem;
    margin-bottom: var(--space-sm);
}

.review-slide__footer {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.875rem;
}

.review-slide__author {
    font-weight: 600;
    color: var(--color-primary);
}

.review-slide__date {
    color: var(--color-text-muted);
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 0.5px solid rgba(23, 64, 118, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-primary);
    transition: box-shadow 200ms ease;
    z-index: 2;
    padding: 0;
}

.carousel__btn:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.carousel__btn--prev {
    left: 0;
}

.carousel__btn--next {
    right: 0;
}

.reviews__cta {
    text-align: center;
    margin-top: var(--space-lg);
}

/* Hide mobile nav wrapper on desktop */
.carousel__nav {
    display: none;
}

@media (max-width: 767px) {
    .review-carousel {
        padding: 0 0.5rem;
    }

    .review-slide {
        flex: 0 0 100%;
    }

    .carousel__btn--desktop {
        display: none;
    }

    .carousel__nav {
        display: flex;
        justify-content: center;
        gap: var(--space-sm);
        margin-top: var(--space-md);
    }

    .carousel__nav .carousel__btn {
        position: static;
        transform: none;
    }
}

/* ────────────────────────────────────────
   FAQ ACCORDION
   ──────────────────────────────────────── */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: #fff;
    border: 0.5px solid rgba(23, 64, 118, 0.12);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: 1.125rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none;
    min-height: 44px;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::marker {
    content: '';
}

.faq__icon {
    flex-shrink: 0;
    color: var(--color-accent);
    transition: transform 300ms ease;
}

/* Vertikale Linie ausblenden beim Aufklappen → wird zum Minus */
.faq__item[open] .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--color-text);
    line-height: 1.7;
}

.faq__answer p {
    margin: 0;
}

@media (max-width: 767px) {
    .faq__question {
        font-size: 0.9375rem;
        padding: 1rem;
    }

    .faq__answer {
        padding: 0 1rem 1rem;
    }
}

/* ────────────────────────────────────────
   BOOKING QUIZ (In 3 Klicks zur Beratung)
   ──────────────────────────────────────── */
.section--primary {
    background: var(--color-primary);
    color: #fff;
}

.section-eyebrow--light {
    color: var(--color-accent);
}

.booking-quiz__title {
    color: #fff;
}

.booking-quiz__intro {
    color: rgba(255, 255, 255, 0.85);
}

.booking-quiz__question {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 var(--space-md);
}

.booking-quiz__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.booking-quiz__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    transition: background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
    min-height: 44px;
}

.booking-quiz__card:hover,
.booking-quiz__card:focus-visible {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.booking-quiz__icon {
    font-size: 2.5rem;
    color: var(--color-accent);
}

.booking-quiz__label {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 767px) {
    .booking-quiz__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .booking-quiz__card {
        padding: 1.5rem 1rem;
    }

    .booking-quiz__icon {
        font-size: 2rem;
    }
}

/* ────────────────────────────────────────
   LEAD FORM (Quiz-Form Lead-Variante)
   ──────────────────────────────────────── */
.booking-quiz__card--active {
    background: rgba(255, 255, 255, 0.20);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.lead-form-wrapper {
    max-width: 640px;
    margin: var(--space-lg) auto 0;
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition: opacity 350ms ease, max-height 400ms ease;
}

.lead-form-wrapper--visible {
    opacity: 1;
    max-height: 800px;
}

.lead-form__honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.lead-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.lead-form__field--full {
    grid-column: 1 / -1;
}

.lead-form__field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.25rem;
}

.lead-form__field input,
.lead-form__field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--color-text);
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    transition: border-color 200ms ease;
}

.lead-form__field input:focus,
.lead-form__field textarea:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 1px;
    border-color: var(--color-accent);
}

.lead-form__submit {
    display: block;
    width: 100%;
    margin-top: var(--space-md);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: var(--color-accent);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-color 200ms ease;
    min-height: 44px;
}

.lead-form__submit:hover,
.lead-form__submit:focus-visible {
    background: var(--color-accent-hover);
}

.lead-form__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.lead-form__privacy {
    margin-top: var(--space-sm);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
}

.lead-form__privacy a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}

.lead-form__success {
    padding: var(--space-md);
    text-align: center;
    font-size: 1.125rem;
    color: #fff;
}

.lead-form__success .ti {
    font-size: 1.5rem;
    color: #4ade80;
    vertical-align: middle;
}

.lead-form__error {
    padding: var(--space-md);
    text-align: center;
    color: #fca5a5;
    font-size: 0.9375rem;
}

@media (max-width: 767px) {
    .lead-form__grid {
        grid-template-columns: 1fr;
    }

    .lead-form-wrapper--visible {
        max-height: 1000px;
    }
}

/* ────────────────────────────────────────
   CONTACT / CALENDLY
   ──────────────────────────────────────── */
.contact-calendly__embed {
    max-width: 900px;
    margin: 0 auto;
}

/* ────────────────────────────────────────
   STICKY MOBILE CTA BAR
   ──────────────────────────────────────── */
.sticky-cta {
    display: none;
}

@media (max-width: 767px) {
    .sticky-cta {
        display: flex;
        justify-content: center;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 90;
        background: var(--color-bg);
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
        padding: 0.75rem 1rem;
        gap: 0.75rem;
        align-items: center;
        transition: transform 300ms ease;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        box-sizing: border-box;
    }

    .sticky-cta.is-hidden {
        transform: translateY(100%);
    }

    .sticky-cta .btn {
        width: 56px;
        height: 56px;
        border-radius: var(--radius-md);
        padding: 0;
        justify-content: center;
        align-items: center;
        min-height: 44px;
    }

    /* Text-Labels auf Mobile ausblenden — nur Icons */
    .sticky-cta .btn--outline span,
    .sticky-cta .btn--primary span,
    .sticky-cta .whatsapp-cta__label {
        display: none;
    }
}

/* ────────────────────────────────────────
   WHATSAPP CTA
   ──────────────────────────────────────── */
/* WhatsApp CTA — shared base */
.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
}
.whatsapp-cta:hover {
    background: #1ebe5d;
    color: #fff;
}

/* Mobile: in sticky-cta Bar */
@media (max-width: 768px) {
    .sticky-cta .whatsapp-cta {
        width: 56px;
        height: 56px;
        border-radius: var(--radius-md);
        padding: 0;
        justify-content: center;
    }
    /* Desktop-Sticky auf Mobile ausblenden */
    body > .whatsapp-cta {
        display: none;
    }
}

/* Desktop: Sticky rechts unten */
@media (min-width: 769px) {
    body > .whatsapp-cta {
        display: none !important;
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 89;
        padding: 12px 20px;
        border-radius: 50px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        font-size: 1rem;
    }
    /* In sticky-cta auf Desktop nicht anzeigen (sticky-cta selbst ist Desktop hidden) */
    .sticky-cta .whatsapp-cta {
        display: none;
    }
}

@media (max-width: 767px) {
  .site-logo__name { display: inline; opacity: 1; }
}

@media (max-width: 767px) {
  .site-logo__name,
  .site-header.is-scrolled .site-logo__name { display: inline !important; opacity: 1 !important; }
}
.sticky-cta__label { text-align: center; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); margin-bottom: 0.25rem; width: 100%; }
