/* ===================================================
   Coiffure Ken — Modern Webflow-Inspired Design
   Based on coiffeurvilla.ch aesthetic
   Clean, Minimal, Professional Salon Design
   =================================================== */

:root {
    /* Color Palette - Modern & Clean */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f7f5;
    --bg-tertiary: #f3f1ee;
    --text-primary: #2d2d2d;
    --text-secondary: #666666;
    --text-light: #999999;
    --accent-primary: #d4a574;
    --accent-dark: #a88865;
    --border-color: #e5e5e5;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 120px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ===================================================
   Mobile Call Button
   =================================================== */

.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--accent-primary);
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
}

.mobile-call-btn:hover {
    background: var(--accent-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.mobile-call-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: flex;
    }
}

/* ===================================================
   Container & Layout
   =================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* ===================================================
   Announcement Banner (Laufschrift)
   =================================================== */

.announcement-banner {
    display: block;
    width: 100%;
    background: var(--accent-primary);
    color: white;
    padding: 0.8rem 1rem;
    text-decoration: none;
    overflow-x: hidden;
    overflow-y: visible;
    transition: all 0.3s ease;
    z-index: 50;
    margin: 0;
}

.announcement-banner:hover {
    background: var(--accent-dark);
    padding: 1rem 1rem;
}

.announcement-text {
    display: inline-block;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    animation: scroll-marquee 25s linear infinite;
    will-change: transform;
}

.announcement-banner:hover .announcement-text {
    animation-play-state: paused;
    cursor: pointer;
}

.announcement-banner.hidden {
    display: none !important;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 900px) {
    .announcement-text {
        font-size: 0.9rem;
        animation: scroll-marquee 22s linear infinite;
    }
}

@media (max-width: 480px) {
    .announcement-banner {
        padding: 0.6rem 0.5rem;
    }

    .announcement-text {
        font-size: 0.8rem;
        animation: scroll-marquee 20s linear infinite;
    }
}

/* ===================================================
   Header & Navigation
   =================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

.nav-brand {
    display: none;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1 0 auto;
    justify-content: flex-start;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--accent-primary);
}

.nav-logo-link {
    display: flex;
    align-items: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.nav-menu .btn-cta {
    background: var(--accent-primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu .btn-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Desktop Dropdown */
.nav-dropdown-parent {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-arrow {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.nav-dropdown-parent:hover .nav-arrow {
    opacity: 1;
}

.nav-link-dropdown {
    display: block;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    min-width: 220px;
    padding: 0.75rem 0;
    list-style: none;
    margin: 0;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 200;
    overflow: visible;
}

.nav-dropdown-parent:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 1rem 1.5rem 1rem 5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
    text-align: center;
}

.nav-dropdown-item:hover {
    background: var(--bg-tertiary);
    color: var(--accent-primary);
}

/* Desktop CTA Button */
.nav-cta-desktop {
    display: inline-block;
    background: var(--accent-primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 1rem;
    flex-shrink: 0;
}

.nav-cta-desktop:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Mobile Toggle Button */
.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    margin-left: auto;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.nav-mobile-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.nav-mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-mobile-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Overlay */
.nav-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 99;
    overflow-y: auto;
    overflow-x: hidden;
}

.nav-mobile-overlay.is-open {
    display: flex;
    flex-direction: column;
}

.nav-mobile-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    min-height: 70px;
    flex-shrink: 0;
}

.nav-mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.nav-mobile-close:hover {
    color: var(--accent-primary);
}

.nav-mobile-close svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2.5;
}

.nav-mobile-menu {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
    flex: 1;
}

.nav-mobile-link {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    transition: color 0.2s ease;
}

.nav-mobile-link:active {
    color: var(--accent-primary);
}

/* Mobile Submenu */
.nav-mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-mobile-submenu-toggle:active {
    color: var(--accent-primary);
}

.nav-mobile-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.nav-mobile-submenu-toggle[aria-expanded="true"] .nav-mobile-arrow {
    transform: rotate(180deg);
}

.nav-mobile-submenu {
    list-style: none;
    padding: 0 0 0 1.5rem;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-mobile-submenu.is-open {
    max-height: 500px;
}

.nav-mobile-submenu li a {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    border: none;
    transition: color 0.2s ease;
}

.nav-mobile-submenu li a:active {
    color: var(--accent-primary);
}

.nav-mobile-menu > li:last-child {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.nav-mobile-menu .btn-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--accent-primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-mobile-menu .btn-cta:active {
    background: var(--accent-dark);
}

/* ===================================================
   Hero Section
   =================================================== */

/* Ken Burns Effect */
.hero-bg-wrapper {
    position: absolute;
    top: -10%;
    left: 0;
    right: 0;
    bottom: -10%;
    overflow: hidden;
    z-index: 0;
}

.ken-burns {
    width: 100%;
    height: 100%;
    animation: kenburns 24s ease-in-out infinite;
    transform-origin: center center;
    will-change: transform;
}

@keyframes kenburns {
    0% {
        transform: scale(1.05) translate(0, 0);
    }
    50% {
        transform: scale(1.15) translate(-1%, -0.5%);
    }
    100% {
        transform: scale(1.05) translate(0, 0);
    }
}

.section-hero {
    padding: 0;
    position: relative;
    margin-top: 0;
    height: 100vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.6;
    animation: scroll-bounce 2s ease-in-out infinite;
    transition: opacity 0.3s;
}

.hero-scroll-hint:hover {
    opacity: 1;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    display: block;
}

.hero-label {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    max-width: 750px;
    letter-spacing: -0.5px;
}

.hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 650px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-glass,
.btn-hero-solid {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: none;
}

.btn-hero-glass {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-hero-glass:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-3px);
}

.btn-hero-solid {
    background: var(--accent-primary);
    color: white;
}

.btn-hero-solid:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

/* background-attachment: fixed breaks on iOS — only enable on non-touch desktop */
@media (min-width: 769px) and (hover: hover) {
    .section-hero {
        background-attachment: fixed;
    }
}

/* ===================================================
   Sections
   =================================================== */

.section {
    padding: 8rem 0;
    background: white;
}

.section:nth-child(even) {
    background: var(--bg-secondary);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-title::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-primary);
    margin-bottom: 1.5rem;
}

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

.section-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.section-text p:last-child {
    margin-bottom: 0;
}

.section-media img {
    width: 100%;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    aspect-ratio: auto;
}

/* ===================================================
   About Section
   =================================================== */

.about-section {
    background: var(--bg-secondary) !important;
}

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

.about-image-wrap {
    position: relative;
}

.about-image-accent {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    border: 2px solid var(--accent-primary);
    border-radius: 6px;
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    display: block;
}

.about-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 300;
    color: var(--accent-dark);
    line-height: 1.6;
    border-left: 3px solid var(--accent-primary);
    padding-left: 1.25rem;
    margin: 1.5rem 0 2rem 0;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.about-text p:last-of-type {
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrap {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-stats {
        gap: 2rem;
    }
}

/* ===================================================
   Process Steps
   =================================================== */

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

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 6px;
    box-shadow: var(--shadow-light);
    border-top: 3px solid var(--accent-primary);
}

.process-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===================================================
   CTA Banner
   =================================================== */

.cta-banner {
    background: var(--text-primary);
    padding: 4rem 0;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-banner-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-banner-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.cta-banner .btn-cta--large {
    background: var(--accent-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.cta-banner .btn-cta--large:hover {
    background: var(--accent-dark);
}

@media (max-width: 768px) {
    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================================
   Weiterbildung / Seminar
   =================================================== */

.seminar-meta-clean {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.seminar-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.seminar-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.seminar-checklist li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.seminar-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 500;
}

.seminar-notice {
    background: var(--bg-secondary);
    border-left: 3px solid var(--accent-primary);
    border-radius: 4px;
    padding: 2rem;
}

.notice-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.seminar-notice h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.seminar-notice p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .seminar-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-steps[style*="repeat(4"] {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* ===================================================
   Showcase Full-Width Image
   =================================================== */

.showcase-image {
    width: 100%;
    overflow: hidden;
    max-height: 520px;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================================
   Preise / Services Table
   =================================================== */

#angebot {
    background: white;
}

.preise-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
}

.preise-table td {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.td-kategorie {
    font-weight: 600;
    color: var(--accent-primary);
    width: 35%;
    letter-spacing: 0.3px;
}

.td-leistung {
    color: var(--text-secondary);
    width: 45%;
}

.td-preis {
    text-align: right;
    color: var(--text-primary);
    font-weight: 500;
    width: 20%;
}

.row-kategorie td {
    padding-top: 2.5rem;
    border-top: 2px solid var(--accent-primary);
}

.row-kategorie:first-child td {
    border-top: none;
    padding-top: 0;
}

.preise-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 2rem;
    line-height: 1.7;
}

/* ===================================================
   Carousel / Gallery
   =================================================== */

/* Foto Grid */
.lookbook-intro {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.lookbook-intro p {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

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

.foto-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    aspect-ratio: 4 / 5;
}

.foto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.foto-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}

.foto-item:hover img {
    transform: scale(1.04);
}

.foto-item:hover::after {
    background: rgba(0,0,0,0.15);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0.5rem;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    cursor: pointer;
    padding: 1rem 0.75rem;
    border-radius: 4px;
    opacity: 0.7;
    transition: all 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
    opacity: 1;
}

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

.lightbox-counter {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.foto-placeholder {
    background: var(--border-color);
    aspect-ratio: 3/4;
}

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

@media (max-width: 768px) {
    .foto-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .lookbook-intro {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===================================================
   Kontakt Section
   =================================================== */

#kontakt {
    background: white;
    border-top: 1px solid var(--border-color);
}

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

.kontakt-intro {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.kontakt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    min-height: 480px;
}

.kontakt-infos {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.kontakt-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.kontakt-info-row svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.kontakt-info-row .info-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 0 0 0.3rem;
}

.kontakt-info-row p,
.kontakt-info-row a {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.6;
}

.info-phone {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent-primary);
    text-decoration: none;
    letter-spacing: -0.3px;
}

.info-phone:hover {
    color: var(--accent-dark);
}

.contact-link {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: border-color 0.2s;
}

.contact-link:hover {
    border-bottom-color: var(--accent-primary);
}

.hours-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hours-list-simple li {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.hours-list-simple li span:first-child {
    min-width: 80px;
    font-weight: 500;
}

.hours-list-simple li.closed {
    color: var(--text-secondary);
}

.kontakt-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    background: var(--accent-primary);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 4px;
    transition: background 0.2s ease;
    align-self: flex-start;
}

.kontakt-call-btn:hover {
    background: var(--accent-dark);
}

.kontakt-maps-wrapper {
    border-radius: 6px;
    overflow: hidden;
    min-height: 420px;
}

.kontakt-maps-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
}

/* ===================================================
   Buttons
   =================================================== */

.btn-cta,
.btn-cta--large {
    background: var(--accent-primary);
    color: white;
    padding: 0.85rem 2.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: none;
}

.btn-cta:hover,
.btn-cta--large:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-cta--large {
    padding: 1.1rem 2.8rem;
    font-size: 0.95rem;
}

/* ===================================================
   Footer
   =================================================== */

.site-footer {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 3.5rem 0 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem 2rem 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-primary);
}

.footer-col p {
    margin: 0;
    line-height: 1.6;
}

.footer-col a {
    color: var(--text-secondary);
}

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

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 35px;
    width: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-logo-link:hover .footer-logo {
    opacity: 1;
}

.footer-phone {
    margin: 0;
    line-height: 1.6;
}

.footer-col .footer-phone a {
    color: #000000 !important;
    text-decoration: none;
}

.footer-col .footer-phone a:hover {
    color: var(--accent-primary) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-light);
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--text-secondary);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-inner a {
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.footer-inner a:hover {
    color: white;
    border-bottom-color: var(--accent-primary);
}

/* ===================================================
   Responsive — Tablet (900px)
   =================================================== */

@media (max-width: 900px) {
    .container {
        padding: 0 2.5rem;
    }

    .nav-inner {
        padding: 0 2.5rem;
        height: 70px;
    }

    .nav-menu {
        display: none;
    }

    .nav-logo-link {
        display: flex;
        align-items: center;
        z-index: 100;
    }

    .nav-logo-img {
        height: 35px;
    }

    .nav-cta-desktop {
        display: none;
    }

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

    .section {
        padding: 5.5rem 0;
    }

    .section-title {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero-label {
        margin-bottom: 1rem;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-split {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .section-media {
        order: -1;
    }

    .preise-table td {
        padding: 1rem 0;
        font-size: 0.9rem;
    }

    .carousel {
        height: 400px;
        margin-top: 2.5rem;
    }

    .carousel-item {
        width: 220px;
        height: 320px;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

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

    .kontakt-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: auto;
    }

    .kontakt-maps-wrapper,
    .kontakt-maps-wrapper iframe {
        min-height: 360px;
    }

    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 2.5rem 2rem 2.5rem;
    }
}

/* ===================================================
   Responsive — Mobile (480px)
   =================================================== */

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-inner {
        padding: 0 1.5rem;
        height: 60px;
    }

    .nav-brand {
        font-size: 1rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section:nth-child(even) {
        background: white;
    }

    .section-title {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }

    .section-title::before {
        width: 45px;
        height: 2px;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 1rem;
    }

    .hero-label {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-hero-glass,
    .btn-hero-solid {
        width: 100%;
        padding: 0.85rem 1.5rem;
    }

    .hero-split {
        gap: 2rem;
    }

    .preise-table td {
        padding: 0.8rem 0;
        font-size: 0.85rem;
    }

    .td-kategorie,
    .td-leistung,
    .td-preis {
        font-size: 0.85rem;
    }

    .carousel {
        height: 320px;
        margin-top: 2rem;
    }

    .carousel-item {
        width: 160px;
        height: 260px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .carousel-btn--prev { left: 0.75rem; }
    .carousel-btn--next { right: 0.75rem; }

    .kontakt-header {
        margin-bottom: 3rem;
    }

    .kontakt-intro {
        font-size: 0.95rem;
    }

    .kontakt-info-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-bottom: 2rem;
    }

    .kontakt-maps-wrapper {
        height: 320px;
        margin-bottom: 2rem;
    }

    .kontakt-call-btn {
        font-size: 0.85rem;
        padding: 0.9rem 1.5rem;
    }

    .info-phone {
        font-size: 1.1rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        font-size: 0.85rem;
        gap: 1.5rem;
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .footer-col h4 {
        font-size: 0.9rem;
    }

    .footer-social {
        gap: 0.8rem;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* ===================================================
   Subpage Parallax Hero
   =================================================== */

.subpage-hero {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    padding: 0 0 3rem 0;
}

.subpage-hero-bg {
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    bottom: -20%;
    background-size: cover;
    background-position: center 50%;
    z-index: 0;
}

.subpage-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.subpage-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.subpage-hero .back-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.subpage-hero .back-link:hover {
    color: white;
}

.subpage-hero h1.section-title {
    color: white;
}

.subpage-hero h1.section-title::before {
    background: var(--accent-primary);
}

@media (max-width: 768px) {
    .subpage-hero {
        min-height: 240px;
        padding-bottom: 2.5rem;
    }
}

/* ===================================================
   Brand Marquee / Laufschrift
   =================================================== */

.brand-strip {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brand-strip-label {
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.brand-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.brand-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-right: 1px solid var(--border-color);
}

.brand-item:last-child {
    border-right: none;
}

.brand-item img {
    height: 36px;
    width: 160px;
    display: block;
    filter: brightness(0) opacity(0.4);
    object-fit: contain;
    transition: filter 0.3s ease;
}

.brand-item:hover img {
    filter: brightness(0) opacity(0.7);
}

@media (max-width: 600px) {
    .brand-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .brand-item {
        border-right: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        padding: 1.5rem 1rem;
    }

    .brand-item:nth-child(2),
    .brand-item:nth-child(4) {
        border-right: none;
    }

    .brand-item:nth-child(3),
    .brand-item:nth-child(4) {
        border-bottom: none;
    }
}
