/* ============================================
   FRISEUR IM STERN - MODERN HAIR SALON WEBSITE
   ============================================ */

/* CSS Variables */
:root {
    --primary: #c9a86c;
    --primary-dark: #a88b4a;
    --primary-light: #dfc08e;
    --secondary: #1a1a2e;
    --accent: #e8d5b7;
    --dark: #0f0f1a;
    --light: #f8f6f3;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    --gradient-gold: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(15, 15, 26, 0.7) 0%, rgba(15, 15, 26, 0.9) 100%);
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 40px rgba(201, 168, 108, 0.3);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 9999px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--gray-700);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.scissors {
    font-size: 3rem;
    color: var(--primary);
    animation: scissors-spin 1s ease-in-out infinite;
}

@keyframes scissors-spin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: #0a0a0a;
    padding: 0.65rem 0;
    box-shadow: var(--shadow-lg);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.logo-mark {
    height: 56px;
    width: auto;
    transition: transform var(--transition-normal);
}

.logo-text {
    height: 50px;
    width: auto;
    transition: all var(--transition-normal);
}

.logo:hover .logo-mark {
    transform: scale(1.05) rotate(-3deg);
}

.navbar.scrolled .logo-mark {
    height: 48px;
}

.navbar.scrolled .logo-text {
    height: 42px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-normal);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Telefon-Button im Header (nur mobil sichtbar) */
.nav-phone {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--dark);
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex: 0 0 auto;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Extra-Block im mobilen Menü (Buchung + Social) – auf Desktop ausgeblendet */
.nav-mobile-extra {
    display: none;
}

.nav-mobile-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.nav-mobile-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.15rem;
    transition: all var(--transition-normal);
}

.nav-mobile-social a:hover {
    background: var(--gradient-gold);
    color: var(--dark);
    border-color: transparent;
}

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

.hero-slideshow {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    /* Endzustand des Zooms als Basis: verhindert das Zurückspringen
       beim Wechsel, wenn die Animationsklasse entfernt wird. */
    transform: scale(1.18);
    transition: opacity 1.6s ease-in-out;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    animation: hero-zoom 7s ease-out forwards;
}

@keyframes hero-zoom {
    from { transform: scale(1.1); }
    to   { transform: scale(1.18); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transform: none;
        transition: opacity 0.4s ease;
    }
    .hero-slide.active {
        animation: none;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.05;
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: float 12s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 108, 0.2);
    border: 1px solid rgba(201, 168, 108, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-full);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-badge i {
    color: var(--primary);
}

.hero-badge span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.title-line {
    display: block;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gray-300);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.title-highlight {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.title-highlight::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-buttons-secondary {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    display: none;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-400);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.7rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-tertiary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-tertiary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-large {
    padding: 0.95rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(201, 168, 108, 0.35);
}

.btn-large:hover {
    box-shadow: 0 12px 35px rgba(201, 168, 108, 0.6);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

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

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 6rem 0;
    background: var(--white);
}

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

.about-images {
    position: relative;
}

.image-stack {
    position: relative;
}

.about-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.secondary-img {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 60%;
    height: 300px;
    object-fit: cover;
    border: 6px solid var(--white);
}

.experience-badge {
    position: absolute;
    top: 2rem;
    left: -2rem;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.experience-badge .years {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
}

.about-content {
    padding-left: 2rem;
}

.about-text {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.about-text strong {
    color: var(--gray-900);
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--accent);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.25rem;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 6rem 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0.05;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
    z-index: 0;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-full);
    font-weight: 500;
    color: var(--gray-600);
    transition: all var(--transition-normal);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--gradient-gold);
    border-color: var(--primary);
    color: var(--dark);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
    color: var(--dark);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.price {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

/* Preislisten-Layout */
.price-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.25rem;
    align-items: start;
}

.price-group {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.price-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.price-group:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.price-group:hover::before {
    transform: scaleX(1);
}

.price-group-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
}

.price-group-title i {
    color: var(--primary);
    font-size: 1.05rem;
}

.price-list {
    display: flex;
    flex-direction: column;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.45rem 0;
    border-bottom: 1px dotted var(--gray-200);
}

.price-list li:last-child {
    border-bottom: none;
}

.pl-name {
    color: var(--gray-700);
    font-size: 0.95rem;
}

.pl-price {
    color: var(--primary-dark);
    font-weight: 600;
    white-space: nowrap;
    font-family: var(--font-heading);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.services-cta p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: 6rem 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

/* einheitliches Raster – keine leeren Felder mehr */
.gallery-item.large {
    grid-row: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 26, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-overlay i {
    display: none;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 500;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
    padding: 6rem 0;
    background: var(--secondary);
}

.team .section-tag {
    color: var(--primary);
}

.team .section-title {
    color: var(--white);
}

.team .section-subtitle {
    color: var(--gray-400);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
    outline: none;
    display: flex;
    flex-direction: column;
}

.team-card:hover,
.team-card:focus-visible {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-gold);
}

.team-image {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-gold);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: var(--border-radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.placeholder-avatar {
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--dark);
    opacity: 0.85;
}

.style-focus {
    font-size: 0.95rem !important;
    color: var(--gray-300) !important;
    font-style: italic;
    margin-bottom: 1.25rem !important;
    /* feste Höhe, damit ein- und zweizeilige Beschreibungen bündig sind */
    min-height: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-more {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.55rem 1.4rem;
    border-radius: var(--border-radius-full);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
    /* immer am unteren Rand -> auf allen Karten dieselbe Höhe */
    margin-top: auto;
}

.btn-more i {
    transition: transform var(--transition-fast);
}

.team-card:hover .btn-more {
    background: var(--primary);
    color: var(--dark);
}

.team-card:hover .btn-more i {
    transform: translateX(4px);
}

/* Team Modal */
.team-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.team-modal.active {
    opacity: 1;
    visibility: visible;
}

.team-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.team-modal-box {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 920px;
    max-height: 90vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px) scale(0.98);
    transition: transform var(--transition-normal);
}

.team-modal.active .team-modal-box {
    transform: translateY(0) scale(1);
}

.team-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--dark);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.team-modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.team-modal-gallery {
    background: var(--secondary);
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 0.75rem;
    max-height: 90vh;
}

.modal-main-image {
    position: relative;
    flex: 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    min-height: 0;
    background: var(--gradient-gold);
}

.modal-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.modal-main-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.modal-main-image.no-image::after {
    content: '\f007';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 5rem;
    color: var(--dark);
    opacity: 0.7;
}

.modal-main-image.no-image img {
    display: none;
}

.modal-thumbs {
    display: flex;
    gap: 0.5rem;
}

.modal-thumb {
    flex: 1;
    aspect-ratio: 1;
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: none;
    transition: border-color var(--transition-fast);
}

.modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.modal-thumb.active {
    border-color: var(--primary);
}

.team-modal-content {
    padding: 2.5rem 2rem;
    overflow-y: auto;
    max-height: 90vh;
    overscroll-behavior: contain;
}

.team-modal-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gray-900);
    margin: 0.25rem 0 0.5rem;
}

.modal-headline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
}

.modal-text p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
}

.modal-specialties {
    margin: 1.5rem 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-200);
}

.modal-specialties h4 {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-specialties h4 i {
    color: var(--primary);
}

.modal-specialties ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modal-specialties li {
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.85rem;
    border-radius: var(--border-radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.modal-specialties li i {
    font-size: 0.7rem;
}

.team-social {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all var(--transition-fast);
}

.team-social a:hover {
    background: var(--primary);
    color: var(--dark);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    line-height: 1.2;
    /* feste Höhe für 1- und 2-zeilige Namen -> alles darunter bündig */
    min-height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.team-info .role {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
    /* feste Höhe, damit ein- und zweizeilige Rollen bündig sind */
    min-height: 2.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-info p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

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

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.google-rating-line {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.google-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gray-700);
}

.google-logo i {
    color: #4285F4;
    font-size: 1.2rem;
}

.stars {
    color: #fbbc04;
    font-size: 1.25rem;
    display: inline-flex;
    gap: 0.1rem;
}

.rating-text {
    color: var(--gray-600);
    font-weight: 500;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.review-stars {
    color: #fbbc04;
    font-size: 0.9rem;
}

.review-text {
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
}

/* ============================================
   CAROUSEL (Team & Bewertungen)
   ============================================ */
.carousel {
    position: relative;
    padding: 0 3.75rem;
}

.carousel-viewport {
    overflow: hidden;
    /* vertikaler Raum, damit Hover-Lift & Schatten nicht abgeschnitten werden
       (beeinflusst die Breitenmessung des Karussells nicht) */
    padding: 16px 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-gold);
    color: var(--dark);
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-gold);
}

.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }

/* Team-Karten: auf großen Bildschirmen alle 5 nebeneinander (kein Karussell nötig) */
.team-grid.carousel-track {
    display: flex;
}

.team-carousel .team-card {
    flex: 0 0 calc((100% - 4 * 2rem) / 5);
    min-width: 0;
}

/* Ab Desktop-Breite sind alle 5 sichtbar -> Pfeile blendet das JS aus,
   daher hier auch den seitlichen Pfeil-Abstand entfernen. */
@media (min-width: 1025px) {
    .team-carousel.carousel {
        padding: 0;
    }
}

/* Review-Karten im Karussell: 3 nebeneinander (Desktop) */
.reviews-slider.carousel-track {
    display: flex;
}

.reviews-carousel .review-card {
    flex: 0 0 calc((100% - 2 * 2rem) / 3);
    min-width: 0;
}

/* Bildpfeile im Team-Modal */
.modal-img-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transition: background var(--transition-fast), opacity var(--transition-fast);
}

.modal-img-arrow:hover {
    background: var(--primary);
    color: var(--dark);
}

.modal-img-arrow.prev { left: 0.6rem; }
.modal-img-arrow.next { right: 0.6rem; }

.modal-img-arrow.hidden {
    display: none;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    min-height: 600px;
}

.contact-info {
    padding-right: 2rem;
}

.contact-text {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-gold);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.1rem;
}

.contact-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact-content a,
.contact-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-content a:hover {
    color: var(--primary);
}

.hours-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0.25rem 1rem;
    font-size: 0.9rem;
}

.day {
    color: var(--gray-700);
    font-weight: 500;
}

.time {
    color: var(--gray-600);
}

.time.closed {
    color: var(--gray-400);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    min-height: 400px;
    flex: 1;
}

.map-address {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.25rem 0.25rem;
    transition: color var(--transition-fast);
}

.map-address i {
    color: var(--primary);
}

.map-address:hover {
    color: var(--primary-dark);
}

.contact-map iframe {
    display: block;
}

/* Google Maps Placeholder (DSGVO) */
.maps-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(15, 15, 26, 0.98));
    backdrop-filter: blur(10px);
    z-index: 10;
}

.maps-placeholder-content {
    text-align: center;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.maps-placeholder-content i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.maps-placeholder-content h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.maps-placeholder-content p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.maps-placeholder-content small {
    display: block;
    color: var(--gray-400);
    font-size: 0.85rem;
}

.maps-placeholder-content small a {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 6rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('img/friseur-im-stern-dinklage-schneideplaetze.webp') center/cover no-repeat;
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--gray-400);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0a0a0a;
    color: var(--gray-400);
    padding: 4rem 0 0;
}

.footer-logo-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.footer-logo-mark {
    height: 50px;
    width: auto;
}

.footer-logo-text {
    height: 28px;
    width: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    border-radius: var(--border-radius-md);
}

.footer-brand p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--dark);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-services a {
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

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

.footer-credits-line {
    color: var(--gray-500);
}

.footer-credits-line a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-credits-line a:hover {
    color: var(--primary-light);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--border-radius-md);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        /* verschwommener, halbtransparenter Hintergrund – Seite bleibt erahnbar */
        background: rgba(12, 12, 18, 0.55);
        backdrop-filter: blur(22px) saturate(130%);
        -webkit-backdrop-filter: blur(22px) saturate(130%);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 5.5rem 2rem 2.5rem;
        gap: 1.4rem;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        font-size: 1.35rem;
        text-align: center;
    }

    /* Buchung + Social im Menü sichtbar machen */
    .nav-mobile-extra {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-top: 1rem;
        padding-top: 1.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        width: 100%;
        max-width: 320px;
    }

    .nav-mobile-book {
        width: 100%;
        justify-content: center;
    }

    .hamburger {
        display: flex;
        margin-left: 1.1rem;
    }

    .nav-phone {
        display: flex;
        margin-left: auto;
    }

    .nav-cta {
        display: none;
    }

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

    /* mobil: erst der Über-uns-Text, dann die Bilder mit 18+-Badge */
    .about-content {
        order: 1;
    }

    .about-images {
        order: 2;
    }

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

    .about-content {
        padding-left: 0;
    }

    .secondary-img {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1rem;
    }

    .experience-badge {
        left: 1rem;
        top: 1rem;
    }

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

    .contact-info {
        padding-right: 0;
    }

    .contact-map {
        height: 400px;
    }

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

@media (max-width: 768px) {
    .hero-badge {
        display: none;
    }

    /* Hintergrundbild auf dem Handy besser sichtbar machen */
    .hero-slideshow {
        opacity: 0.5;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(15, 15, 26, 0.5) 0%, rgba(15, 15, 26, 0.82) 100%);
    }

    /* Bubbles deutlich kleiner, damit das Bild erkennbar bleibt */
    .shape-1 { width: 260px; height: 260px; top: -70px; right: -70px; }
    .shape-2 { width: 200px; height: 200px; bottom: -50px; left: -60px; }
    .shape-3 { width: 110px; height: 110px; }

    .hero-content {
        padding: 1.5rem 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.65rem;
        margin-bottom: 2rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Hero-Buttons mobil kompakter (nicht überdimensioniert) */
    .hero-buttons .btn-large {
        padding: 0.7rem 1.3rem;
        font-size: 0.92rem;
        max-width: 320px;
    }

    /* die zwei sekundären Buttons nebeneinander statt gestapelt */
    .hero-buttons-secondary {
        width: 100%;
        max-width: 320px;
        gap: 0.6rem;
        flex-wrap: nowrap;
    }

    .hero-buttons-secondary .btn {
        flex: 1;
        width: auto;
        padding: 0.6rem 0.5rem;
        font-size: 0.82rem;
    }

    /* Statistiken kompakt in einer Reihe */
    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 0.75rem;
        width: 100%;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    /* Galerie mobil: platzsparender horizontaler Swipe-Streifen */
    .gallery-grid {
        display: flex;
        grid-template-columns: none;
        grid-template-rows: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-item,
    .gallery-item.large {
        flex: 0 0 82%;
        height: 240px;
        grid-row: auto;
        scroll-snap-align: center;
    }

    /* Beschriftung mobil dauerhaft sichtbar (kein Hover) */
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(0deg, rgba(15,15,26,0.75) 0%, rgba(15,15,26,0) 55%);
        justify-content: flex-end;
        padding-bottom: 1rem;
    }

    .team-modal {
        padding: 0.75rem;
    }

    .team-modal-box {
        grid-template-columns: 1fr;
        max-height: 94vh;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    /* X bleibt beim Scrollen immer sichtbar (fix am Viewport) */
    .team-modal-close {
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        z-index: 10;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }

    .team-modal-gallery {
        max-height: none;
        flex-direction: column;
    }

    .modal-main-image {
        height: 300px;
        flex: none;
    }

    .team-modal-content {
        max-height: none;
        overflow-y: visible;
        padding: 1.75rem 1.5rem;
    }

    .services-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Footer mobil: linksbündig, Links + Rechtliches nebeneinander */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 2rem 1.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        align-items: center;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .btn {
        width: 100%;
    }
}

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

    .nav-container {
        padding: 0 1rem;
    }

    .logo-mark,
    .navbar.scrolled .logo-mark {
        height: 40px;
    }

    .logo-text,
    .navbar.scrolled .logo-text {
        height: 34px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-badge {
        display: none;
    }

    .title-highlight {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .team-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .review-card {
        padding: 1.5rem;
    }
}

/* ============================================
   ANIMATIONS ON SCROLL - DISABLED
   ============================================ */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Print Styles */
@media print {
    .navbar,
    .hero,
    .back-to-top,
    .lightbox {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }
}

/* ============================================
   CAROUSEL – RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    /* Tablet: 3 Karten sichtbar, Rest als Karussell */
    .team-carousel .team-card {
        flex-basis: calc((100% - 2 * 2rem) / 3);
    }
    .reviews-carousel .review-card {
        flex-basis: calc((100% - 2rem) / 2);
    }
}

@media (max-width: 768px) {
    .carousel {
        padding: 0 3rem;
    }
    .carousel-track {
        gap: 1.25rem;
    }
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    .team-carousel .team-card {
        flex-basis: 100%;
        max-width: none;
        margin: 0;
    }
    .reviews-carousel .review-card {
        flex-basis: 100%;
    }
}

@media (max-width: 480px) {
    .carousel {
        padding: 0 2.5rem;
    }
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }
    .team-carousel .team-card {
        flex-basis: 100%;
        max-width: none;
        margin: 0;
    }
}
