/*
Theme Name: Gojowy Friseur Theme
Theme URI: https://gojowy-friseur.de
Description: A modern WordPress theme for Gojowy Friseur & Kosmetik
Version: 2.6
Author: Danny Lange
Text Domain: gojowy-theme
*/

/* ============================================
   CSS Reset & Custom Properties
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Refined Color Palette - Warm & Inviting */
    --color-white: #FFFFFF;
    --color-cream: #FDF8F5;
    --color-blush: #F9E4E0;
    --color-rose: #D4A5A5;
    --color-rose-deep: #C48B8B;
    --color-mauve: #B8A9C9;
    --color-sage: #B5C4B1;
    --color-gold: #D4AF37;
    --color-charcoal: #3D3D3D;
    --color-warm-gray: #6B5B5B;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #F9E4E0 0%, #E8D5E0 50%, #D5E0E8 100%);
    --gradient-rose: linear-gradient(135deg, #D4A5A5 0%, #C48B8B 100%);
    --gradient-soft: linear-gradient(180deg, #FDF8F5 0%, #FFFFFF 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-2xl: 8rem;

    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
    --header-height-mobile: 70px;
    --border-radius: 24px;
    --border-radius-lg: 40px;
    --border-radius-full: 9999px;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(212, 165, 165, 0.15);
    --shadow-medium: 0 8px 40px rgba(212, 165, 165, 0.2);
    --shadow-glow: 0 0 60px rgba(212, 165, 165, 0.3);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   Base Typography
   ============================================ */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    position: relative;
    display: inline-block;
}

/* Decorative heading underline */
.container > h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-rose);
    border-radius: var(--border-radius-full);
}

h3 { font-size: 1.5rem; }

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

a:hover {
    color: var(--color-rose);
}

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

/* ============================================
   Layout
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.site-main {
    min-height: 60vh;
}

/* Section base */
section {
    position: relative;
}

section .container {
    text-align: center;
}

section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* ============================================
   Decorative Elements
   ============================================ */
.blob-decoration {
    position: absolute;
    border-radius: 50% 40% 60% 50%;
    background: var(--gradient-rose);
    opacity: 0.1;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   Header
   ============================================ */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height-mobile);
    border-bottom: 1px solid rgba(212, 165, 165, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 var(--spacing-md);
}

.navbar-logo {
    width: auto;
    display: block;
}

.site-branding .site-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-branding .tagline {
    font-size: 0.75rem;
    color: var(--color-warm-gray);
    display: none;
}

/* Mobile Navigation */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    color: var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-bounce);
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle svg {
    width: 28px;
    height: 28px;
}

.main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-smooth);
    z-index: 9999;
    overflow-y: auto;
    border-left: 1px solid var(--color-blush);
}

.main-navigation.active {
    right: 0;
}

.nav-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--color-blush);
    border: none;
    cursor: pointer;
    color: var(--color-rose-deep);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-bounce);
}

.nav-close:hover {
    background: var(--color-rose);
    color: var(--color-white);
    transform: rotate(90deg);
}

.main-navigation ul {
    list-style: none;
    padding: 5rem var(--spacing-md) var(--spacing-md);
}

.main-navigation li {
    margin-bottom: var(--spacing-xs);
}

.main-navigation a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--color-charcoal);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    background: var(--color-blush);
    color: var(--color-rose-deep);
    transform: translateX(8px);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(61, 61, 61, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    z-index: 999;
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-mauve) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-height-mobile) + var(--spacing-lg)) var(--spacing-md) var(--spacing-lg);
    background-size: 200% 200%;
    animation: heroGradientShift 12s ease-in-out infinite;
}

/* Decorative radiant blobs */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::before {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.18) 0%, transparent 70%);
    animation: heroBlobPulse 8s ease-in-out infinite;
}

.hero-section::after {
    width: 350px;
    height: 350px;
    bottom: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(181, 150, 181, 0.15) 0%, transparent 70%);
    animation: heroBlobPulse 8s ease-in-out infinite 4s;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto var(--spacing-md);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: var(--spacing-md);
    padding: 1rem 2.5rem;
    background: var(--color-white);
    color: var(--color-rose-deep);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--border-radius-full);
    text-decoration: none;
    transition: all var(--transition-bounce);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta:hover {
    color: var(--color-rose-deep);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero-cta svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

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

@keyframes heroGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes heroBlobPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

/* Wave divider */
.hero-section .wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.hero-section .wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   Extensions / Haarverlängerung Section
   ============================================ */
.extensions-section {
    background: var(--color-cream);
    padding: var(--spacing-2xl) 0;
}

.extensions-subtitle {
    text-align: center;
    color: var(--color-warm-gray);
    font-size: 1.15rem;
    margin-top: calc(var(--spacing-xl) * -1 + var(--spacing-sm));
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.extensions-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

/* Before/After Slider */
.ba-slider {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    user-select: none;
    -webkit-user-select: none;
}

.ba-slider .ba-after {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-slider .ba-before {
    position: absolute;
    inset: 0;
    clip-path: inset(0 50% 0 0);
    overflow: hidden;
}

.ba-slider .ba-before img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: col-resize;
    z-index: 3;
    -webkit-appearance: none;
    appearance: none;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    z-index: 2;
}

.ba-handle-line {
    flex: 1;
    width: 3px;
    background: var(--color-white);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}

.ba-handle-circle {
    width: 44px;
    height: 44px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
    color: var(--color-rose-deep);
}

.ba-label {
    position: absolute;
    bottom: var(--spacing-sm);
    padding: 0.35rem 0.85rem;
    background: rgba(0, 0, 0, 0.55);
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-full);
    pointer-events: none;
    z-index: 2;
}

.ba-label--before {
    left: var(--spacing-sm);
}

.ba-label--after {
    right: var(--spacing-sm);
}

/* Extensions Info & CTA */
.extensions-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.extensions-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-warm-gray);
    margin-bottom: var(--spacing-lg);
}

.hairdreams-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.2rem;
    background: var(--color-blush);
    color: var(--color-rose-deep);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--border-radius-full);
    transition: all var(--transition-bounce);
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.hairdreams-badge:hover {
    color: var(--color-rose-deep);
    transform: translateY(-2px);
    background: var(--color-rose-light);
    box-shadow: 0 4px 12px rgba(212, 165, 165, 0.3);
}

.extensions-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-rose);
    color: var(--color-white);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--border-radius-full);
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-glow);
    align-self: flex-start;
}

.extensions-cta:hover {
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 165, 165, 0.4);
}

.extensions-cta svg {
    flex-shrink: 0;
}

/* ============================================
   Instagram Feed Section
   ============================================ */
.instagram-section {
    background: var(--color-white);
    padding: var(--spacing-2xl) 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    max-width: 1000px;
    margin: 0 auto;
}

.instagram-item {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-smooth);
}

.instagram-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

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

.instagram-item:hover img {
    transform: scale(1.08);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.7) 0%, rgba(196, 139, 139, 0.8) 100%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    color: var(--color-white);
}

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

.instagram-follow-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-rose);
    color: var(--color-white);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--border-radius-full);
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-glow);
}

.instagram-follow-btn:hover {
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 165, 165, 0.4);
}

.instagram-fallback {
    color: var(--color-warm-gray);
    font-size: 1.1rem;
    padding: var(--spacing-lg) 0;
}

.instagram-fallback a {
    color: var(--color-rose-deep);
    font-weight: 600;
}

/* ============================================
   Team Section - Curved Background
   ============================================ */
.team-section {
    background: var(--color-cream);
    position: relative;
    padding: var(--spacing-2xl) 0;
}

.team-section .container {
    position: relative;
    z-index: 2;
}

.team-intro {
    text-align: center;
    color: var(--color-warm-gray);
    font-size: 1.15rem;
    margin-top: calc(var(--spacing-xl) * -1 + var(--spacing-sm));
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-smooth);
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

/* Team Image */
.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.team-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(61, 61, 61, 0.7) 0%,
        rgba(61, 61, 61, 0.15) 40%,
        transparent 100%
    );
    transition: opacity var(--transition-smooth);
}

.team-card:hover .team-image-overlay {
    background: linear-gradient(
        to top,
        rgba(196, 139, 139, 0.8) 0%,
        rgba(196, 139, 139, 0.15) 45%,
        transparent 100%
    );
}

/* Placeholder for members without photo */
.team-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--color-rose);
    opacity: 0.5;
}

/* Team Info - overlaid on image bottom */
.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-sm);
    z-index: 2;
    text-align: left;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 4px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

.team-position {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.team-skill-tag {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-mauve) 100%);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    border: none;
    text-shadow: none;
    letter-spacing: 0.5px;
}

.team-socials {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.team-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-mauve) 100%);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.team-social-link:hover {
    background: var(--color-white);
    color: var(--color-rose-deep);
    transform: scale(1.15);
}

/* ============================================
   Pricing Section - Organic Shape Background
   ============================================ */
.pricing-section {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-2xl) 0;
}

/* Decorative blob */
.pricing-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(181, 196, 177, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    pointer-events: none;
}

/* Price Tabs */
.price-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.price-tab {
    padding: 1rem 2.5rem;
    background: var(--color-white);
    border: 2px solid var(--color-blush);
    border-radius: var(--border-radius-full);
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-charcoal);
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-soft);
}

.price-tab:hover {
    border-color: var(--color-rose);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.price-tab.active {
    background: var(--gradient-rose);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

/* Price Content */
.price-content {
    display: none;
    position: relative;
    z-index: 1;
}

.price-content.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

/* Service Groups */
.service-group {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 165, 165, 0.1);
    transition: all var(--transition-smooth);
    min-width: 0;
    overflow: hidden;
}

.service-group:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.service-group:last-child {
    margin-bottom: 0;
}

.service-group h3 {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--color-blush);
    display: inline-block;
    position: relative;
}

.service-group h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-rose);
    border-radius: var(--border-radius-full);
}

/* Tiered Price Table */
/* Tiered Price Table */
.price-table {
    width: 100%;
    margin-top: var(--spacing-sm);
    border-collapse: separate;
    border-spacing: 0;
}

.price-table-header th {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--gradient-rose);
    font-weight: 700;
    color: var(--color-white);
    font-size: 0.9rem;
    text-align: center;
}

.price-table-header th:first-child {
    text-align: left;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.price-table-header th:last-child {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.price-table-row td {
    padding: var(--spacing-sm) var(--spacing-md);
    transition: background var(--transition-fast);
}

.price-table-row:nth-child(even) td {
    background: var(--color-cream);
}

.price-table-row:hover td {
    background: var(--color-blush);
}

.price-table-row:nth-child(even) td:first-child,
.price-table-row:hover td:first-child {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.price-table-row:nth-child(even) td:last-child,
.price-table-row:hover td:last-child {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.service-name {
    color: var(--color-charcoal);
    font-weight: 500;
    text-align: left;
}

.service-price {
    color: var(--color-rose-deep);
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

/* Simple Price List */
.simple-price-list {
    width: 100%;
    margin-top: var(--spacing-sm);
    border-collapse: separate;
    border-spacing: 0;
}

.simple-price-item td {
    padding: var(--spacing-sm) var(--spacing-md);
    transition: background var(--transition-fast);
}

.simple-price-item:nth-child(even) td {
    background: var(--color-cream);
}

.simple-price-item:hover td {
    background: var(--color-blush);
}

.simple-price-item:nth-child(even) td:first-child,
.simple-price-item:hover td:first-child {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.simple-price-item:nth-child(even) td:last-child,
.simple-price-item:hover td:last-child {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.simple-price-item .service-name {
    width: 100%;
}

.service-duration {
    color: var(--color-warm-gray);
    font-size: 0.9rem;
    font-style: italic;
    margin-left: var(--spacing-xs);
}

.simple-price-item .service-price {
    font-size: 1.1rem;
}

.price-note {
    color: var(--color-warm-gray);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
    padding: 0 var(--spacing-md);
}

/* ============================================
   Testimonials Section - Wave Background
   ============================================ */
.testimonials-section {
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-mauve) 100%);
    position: relative;
    color: var(--color-white);
    overflow: hidden;
    padding: var(--spacing-2xl) 0;
}

.testimonials-section h2 {
    color: var(--color-white);
}

.testimonials-section h2::after {
    background: var(--color-white);
}

/* Google Rating Card */
.google-rating {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-smooth);
}

.google-rating:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

.rating-score {
    font-family: 'Nunito', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: var(--spacing-sm);
}

.rating-stars svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

.star-icon.empty {
    color: rgba(255, 255, 255, 0.3);
}

.rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.rating-text a {
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    color: var(--color-charcoal);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

/* Quote decoration */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: var(--color-blush);
    line-height: 1;
    pointer-events: none;
    opacity: 0.5;
}

.testimonial-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.testimonial-stars .rating-stars {
    justify-content: flex-start;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: block;
    color: var(--color-rose-deep);
    font-style: normal;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: var(--color-white);
    position: relative;
    padding: var(--spacing-2xl) 0;
}

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

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--spacing-lg);
}

.contact-details {
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-mauve) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
}

.contact-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-rose-deep);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-bounce);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--gradient-rose);
    color: var(--color-white);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-item strong {
    display: block;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

.contact-info-item a:hover {
    color: var(--color-white);
}

/* Business Hours */
.business-hours {
    background: var(--color-white);
    padding: var(--spacing-md) var(--spacing-sm);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--color-blush);
    min-width: 0;
}

.business-hours h3 {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.hours-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.hours-row {
    transition: all var(--transition-fast);
}

.hours-row td {
    padding: 0.75rem var(--spacing-sm);
}

.hours-row:nth-child(even) td {
    background: var(--color-cream);
}

.hours-row:hover td {
    background: var(--color-blush);
}

.hours-row:nth-child(even) td:first-child,
.hours-row:hover td:first-child {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.hours-row:nth-child(even) td:last-child,
.hours-row:hover td:last-child {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.hours-row.closed {
    opacity: 0.5;
}

.hours-day {
    font-weight: 600;
    color: var(--color-charcoal);
    text-align: left;
}

.hours-time {
    color: var(--color-rose-deep);
    font-weight: 500;
    white-space: nowrap;
    text-align: right;
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    background: var(--color-cream);
    padding: var(--spacing-2xl) 0;
}

.map-wrapper {
    position: relative;
    padding-bottom: 50%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-address {
    text-align: center;
    margin-top: var(--spacing-md);
    color: var(--color-charcoal);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.map-address svg {
    color: var(--color-rose-deep);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-navigation {
    margin-bottom: var(--spacing-md);
}

.footer-navigation ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm) var(--spacing-lg);
}

.footer-navigation a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
}

.footer-navigation a:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Service Archive Page
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-bounce);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-blush);
}

.service-card h3 {
    margin-bottom: var(--spacing-xs);
}

.service-card .price {
    color: var(--color-rose-deep);
    font-weight: 700;
    font-size: 1.3rem;
    margin: var(--spacing-xs) 0;
}

.service-card .description {
    color: var(--color-warm-gray);
    line-height: 1.7;
}

/* ============================================
   Single Pages & Posts
   (Impressum, Datenschutz, Kontakt, single service …)
   Body gets the `inner-page` class from functions.php.
   ============================================ */
.inner-page .site-main {
    /* Clear the fixed header — the front-page hero handles this itself. */
    padding-top: calc(var(--header-height-mobile) + var(--spacing-lg));
    padding-bottom: var(--spacing-xl);
    background:
        radial-gradient(110% 50% at 50% 0%, var(--color-blush) 0%, rgba(249, 228, 224, 0) 55%),
        var(--gradient-soft);
}

.inner-page .site-main > .container {
    /* Comfortable reading measure for long-form / legal copy. */
    max-width: 820px;
}

/* Page title */
.inner-page .entry-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.inner-page .entry-header h1 {
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}

.inner-page .entry-header h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 64px;
    height: 4px;
    border-radius: var(--border-radius-full);
    background: var(--gradient-rose);
}

/* Content surface — a soft card that matches the rest of the theme */
.inner-page .entry-content {
    background: var(--color-white);
    border: 1px solid rgba(212, 165, 165, 0.12);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    padding: clamp(1.5rem, 4vw, 3.5rem);
    text-align: left;
    color: var(--color-warm-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Vertical rhythm for arbitrary editor output */
.inner-page .entry-content > * + * {
    margin-top: var(--spacing-sm);
}

.inner-page .entry-content p {
    color: var(--color-warm-gray);
}

/* Headings within content (override base inline-block + 800 weight) */
.inner-page .entry-content h2,
.inner-page .entry-content h3,
.inner-page .entry-content h4 {
    display: block;
    color: var(--color-charcoal);
    font-weight: 700;
    line-height: 1.3;
}

.inner-page .entry-content h2 {
    font-size: clamp(1.4rem, 3vw, 1.7rem);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(212, 165, 165, 0.18);
}

.inner-page .entry-content h3 {
    font-size: 1.25rem;
    margin-top: var(--spacing-md);
}

.inner-page .entry-content h4 {
    font-size: 1.05rem;
    margin-top: var(--spacing-md);
}

/* First block sits flush with the top of the card */
.inner-page .entry-content > :first-child {
    margin-top: 0;
}
.inner-page .entry-content > h2:first-child {
    padding-top: 0;
    border-top: 0;
}

/* Links stay legible and on-brand in dense body copy */
.inner-page .entry-content a {
    color: var(--color-rose-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    word-break: break-word;
}
.inner-page .entry-content a:hover {
    color: var(--color-rose);
}

.inner-page .entry-content strong,
.inner-page .entry-content b {
    color: var(--color-charcoal);
    font-weight: 700;
}

/* Lists */
.inner-page .entry-content ul,
.inner-page .entry-content ol {
    padding-left: 1.5rem;
}
.inner-page .entry-content li + li {
    margin-top: var(--spacing-xs);
}
.inner-page .entry-content ul li::marker {
    color: var(--color-rose);
}

/* Quotes / callouts */
.inner-page .entry-content blockquote {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-cream);
    border-left: 4px solid var(--color-rose);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
}

/* <address> blocks are common in an Impressum */
.inner-page .entry-content address {
    font-style: normal;
    line-height: 1.9;
}

/* Tables */
.inner-page .entry-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.inner-page .entry-content th,
.inner-page .entry-content td {
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 1px solid rgba(212, 165, 165, 0.2);
    text-align: left;
    vertical-align: top;
}
.inner-page .entry-content th {
    background: var(--color-cream);
    color: var(--color-charcoal);
    font-weight: 700;
}

/* Media & dividers */
.inner-page .entry-content img {
    border-radius: var(--border-radius);
    margin-top: var(--spacing-md);
}
.inner-page .entry-content hr {
    border: 0;
    height: 1px;
    background: rgba(212, 165, 165, 0.25);
    margin: var(--spacing-md) 0;
}

/* Single-service extras */
.inner-page .service-meta {
    margin-top: var(--spacing-sm);
    color: var(--color-warm-gray);
}
.inner-page .entry-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}
.inner-page .back-link {
    margin-top: var(--spacing-lg);
    text-align: center;
}

/* Desktop: clear the taller header, add breathing room */
@media (min-width: 768px) {
    .inner-page .site-main {
        padding-top: calc(var(--header-height) + var(--spacing-xl));
        padding-bottom: var(--spacing-2xl);
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
    :root {
        --header-height: 90px;
    }

    .site-header {
        height: var(--header-height);
    }

    .site-branding .site-title {
        font-size: 1.75rem;
    }

    .site-branding .tagline {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .main-navigation {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        border: none;
    }

    .nav-close {
        display: none;
    }

    .main-navigation ul {
        display: flex;
        padding: 0;
        gap: var(--spacing-xs);
    }

    .main-navigation li {
        margin: 0;
    }

    .main-navigation a {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.95rem;
    }

    .main-navigation a:hover,
    .main-navigation .current-menu-item a {
        transform: none;
        background: var(--color-blush);
    }

    .nav-overlay {
        display: none;
    }

    .hero-section {
        padding: calc(var(--header-height) + var(--spacing-xl)) var(--spacing-md) var(--spacing-xl);
        min-height: 65vh;
    }


    .extensions-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .ba-slider {
        aspect-ratio: 3 / 4;
    }

    .extensions-cta {
        align-self: flex-start;
    }

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

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
        gap: var(--spacing-sm);
    }

    .team-image {
        aspect-ratio: 3 / 3.5;
    }

    .team-name {
        font-size: 1.05rem;
    }

    .team-position {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .team-card:hover {
        transform: translateY(-6px);
    }

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

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

    .business-hours {
        padding: var(--spacing-lg);
    }

    .contact-container > * {
        max-width: none;
    }

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

/* ============================================
   Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .hero-section::before {
        width: 700px;
        height: 700px;
        top: -200px;
        left: -150px;
    }

    .hero-section::after {
        width: 500px;
        height: 500px;
        bottom: -150px;
        right: -120px;
    }

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

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

/* ============================================
   Mobile Team Cards — alternating row layout
   ============================================ */
@media (max-width: 767px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .team-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    /* Even cards: picture on the right */
    .team-card:nth-child(even) {
        flex-direction: row-reverse;
    }

    .team-image {
        width: 40%;
        flex-shrink: 0;
        aspect-ratio: auto;
    }

    .team-image-overlay {
        display: none;
    }

    .team-info {
        position: static;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: var(--spacing-sm) var(--spacing-md);
        flex: 1;
        min-width: 0;
    }

    /* Tags align toward the image side */
    .team-card:nth-child(odd) .team-skills {
        align-self: flex-start;
        justify-content: flex-start;
    }

    .team-card:nth-child(even) .team-skills {
        align-self: flex-end;
        justify-content: flex-end;
    }

    .team-card {
        position: relative;
    }

    .team-socials {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        margin-top: 0;
    }

    /* Image left → socials on the right edge */
    .team-card:nth-child(odd) .team-socials {
        right: var(--spacing-sm);
    }

    /* Image right → socials on the left edge */
    .team-card:nth-child(even) .team-socials {
        left: var(--spacing-sm);
    }

    .team-name {
        color: var(--color-charcoal);
        text-shadow: none;
        font-size: 1.05rem;
    }

    .team-position {
        color: var(--color-warm-gray);
        text-shadow: none;
    }

    .team-skill-tag {
        background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-mauve) 100%);
        color: var(--color-white);
        border: none;
        text-shadow: none;
    }

    .team-socials {
        margin-top: 8px;
    }

    .team-social-link {
        background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-mauve) 100%);
        border: none;
        color: var(--color-white);
    }

    .team-social-link:hover {
        background: var(--color-white);
        color: var(--color-rose-deep);
    }

    .team-card:hover {
        transform: none;
    }
}

/* ============================================
   Mobile Pricing Table
   ============================================ */
@media (max-width: 600px) {
    .service-group {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .price-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Simple price list — reduce cell padding */
    .simple-price-item td {
        padding: var(--spacing-sm) var(--spacing-xs);
    }

    .simple-price-list .service-price {
        white-space: normal;
    }

    /* Tiered table — collapse to card layout */
    .price-table-header {
        display: none;
    }

    .price-table,
    .price-table thead,
    .price-table tbody,
    .price-table-row,
    .price-table-row td {
        display: block;
    }

    .price-table-row {
        padding: var(--spacing-sm);
        margin-bottom: var(--spacing-xs);
        border-radius: var(--border-radius);
        background: var(--color-cream);
    }

    .price-table-row td.service-name {
        font-size: 1.05rem;
        margin-bottom: var(--spacing-xs);
        font-weight: 600;
        padding: 0 0 var(--spacing-xs) 0;
    }

    .price-table-row td.service-price {
        text-align: left;
        font-size: 0.95rem;
        display: flex;
        justify-content: space-between;
        padding: var(--spacing-xs) 0;
        border-top: 1px dashed var(--color-blush);
    }

    .price-table-row td.service-price::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--color-warm-gray);
    }
}

/* ============================================
   GLightbox Theme
   ============================================ */
.glightbox-clean .gslide-title {
    font-family: 'Nunito', sans-serif;
    color: var(--color-white);
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
    background: var(--color-rose-deep);
    border-radius: 50%;
}

.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
    background: var(--color-rose);
}

/* ============================================
   Scroll-Reveal Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Floating Phone CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--gradient-rose);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--border-radius-full);
    box-shadow: 0 6px 24px rgba(196, 139, 139, 0.45);
    text-decoration: none;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.floating-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-cta:hover {
    box-shadow: 0 8px 32px rgba(196, 139, 139, 0.6);
    transform: translateY(-2px);
    color: var(--color-white);
}

.floating-cta svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .floating-cta {
        padding: 14px;
    }

    .floating-cta span {
        display: none;
    }
}

/* ============================================
   Live Open/Closed Badge
   ============================================ */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.status-badge::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-badge.open {
    background: #E8F5E9;
    color: #2E7D32;
}

.status-badge.open::before {
    background: #2E7D32;
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.status-badge.closed {
    background: #FFEBEE;
    color: #C62828;
}

.status-badge.closed::before {
    background: #C62828;
    box-shadow: 0 0 0 2px rgba(198, 40, 40, 0.2);
}

/* ============================================
   Swipeable Testimonials Carousel (Mobile)
   ============================================ */
.carousel-dots {
    display: none;
}

@media (max-width: 767px) {
    .testimonials-section {
        overflow: clip;
    }

    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: var(--spacing-sm);
        padding-bottom: var(--spacing-sm);
        scrollbar-width: none;
        margin-left: calc(-1 * var(--spacing-md));
        margin-right: calc(-1 * var(--spacing-md));
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 85vw;
        max-width: 85vw;
        scroll-snap-align: center;
        overflow: visible;
        overflow-wrap: break-word;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: var(--spacing-sm);
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.35);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .carousel-dot.active {
        background: var(--color-white);
        transform: scale(1.3);
    }
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .floating-cta {
        transition: none;
    }

    .testimonial-card,
    .team-card,
    .service-group {
        transition: none;
    }

    .hero-section,
    .hero-section::before,
    .hero-section::after {
        animation: none;
    }

    .hero-cta,
    .hero-logo,
    .hero-section h1,
    .hero-subtitle,
    .hero-description {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .site-header,
    .map-section {
        display: none !important;
    }

    section::before,
    section::after {
        display: none !important;
    }

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