/* ===================================
   Studio 21 - Premium Beauty Experience
   Apple-like Luxury Cosmetic Design
   =================================== */

/* CSS Custom Properties */
:root {
    /* Gold Palette - Premium Luxury */
    --gold-100: #FDF6E9;
    --gold-200: #F5E6C8;
    --gold-300: #E5CFA0;
    --gold-400: #D4B86A;
    --gold-500: #C9A050;
    --gold-600: #B08A3E;
    --gold-700: #8A6830;

    /* Gradient */
    --gold-gradient: linear-gradient(135deg, #D4B86A 0%, #C9A050 40%, #B08A3E 100%);
    --gold-gradient-text: linear-gradient(135deg, #E5CFA0 0%, #C9A050 50%, #B08A3E 100%);
    --gold-shimmer: linear-gradient(90deg, transparent 0%, rgba(212, 184, 106, 0.4) 50%, transparent 100%);

    /* Neutral Palette */
    --white: #FFFFFF;
    --cream-50: #FDFCFA;
    --cream-100: #FAF8F5;
    --cream-200: #F5F0E8;
    --cream-300: #EDE5D8;
    --warm-gray-100: #C9C4BC;
    --warm-gray-200: #9C958A;
    --warm-gray-300: #6B645A;
    --charcoal: #3A3632;
    --black: #1A1918;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;
    --space-4xl: 14rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 25, 24, 0.03);
    --shadow-md: 0 8px 30px rgba(26, 25, 24, 0.06);
    --shadow-lg: 0 20px 60px rgba(26, 25, 24, 0.08);
    --shadow-xl: 0 40px 100px rgba(26, 25, 24, 0.12);
    --shadow-gold: 0 8px 40px rgba(201, 160, 80, 0.25);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

    --transition-fast: 200ms var(--ease-out-quart);
    --transition-smooth: 500ms var(--ease-out-expo);
    --transition-slow: 800ms var(--ease-out-expo);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overscroll-behavior-x: none;
    overscroll-behavior-y: none;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background-color: var(--cream-100);
    line-height: 1.6;
    overflow-x: hidden;
    overscroll-behavior-y: none;
    -webkit-font-smoothing: antialiased;
    cursor: auto;
}

body.has-custom-cursor {
    cursor: none;
}

::selection {
    background: var(--gold-200);
    color: var(--black);
}

a {
    color: inherit;
    text-decoration: none;
}

/* Interactive focus & touch states */
:where(a, button, [role="button"], summary, .accordion-header, .mobile-menu-toggle, .mobile-menu-link, .appointment-rules-summary, .toggle-header) {
    -webkit-tap-highlight-color: transparent;
}

:where(a, button, [role="button"], summary, .accordion-header, .mobile-menu-toggle, .mobile-menu-link, .appointment-rules-summary, .toggle-header):focus-visible {
    outline: 2px solid rgba(201, 160, 80, 0.8);
    outline-offset: 3px;
    border-radius: 8px;
    box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.18);
}

:where(a, button, [role="button"], summary, .accordion-header, .mobile-menu-toggle, .mobile-menu-link, .appointment-rules-summary, .toggle-header):focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

@media (hover: none) and (pointer: coarse) {
    :where(.btn-primary, .nav-cta, .price-btn, .mobile-menu-toggle, .accordion-header, .appointment-rules-summary, .toggle-header, .mobile-menu-link):active {
        transform: translateY(1px);
        filter: saturate(0.96);
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    color: var(--black);
}

.gold {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-text {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--warm-gray-300);
}

/* ===================================
   Preloader
   =================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--cream-100);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

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

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

.preloader-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.preloader-logo span {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preloader-line {
    width: 60px;
    height: 2px;
    background: var(--cream-300);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    animation: preloaderLine 1.2s var(--ease-out-expo) infinite;
}

@keyframes preloaderLine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ===================================
   Custom Cursor
   =================================== */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold-500);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, opacity 0.3s;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold-400);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s var(--ease-out-quart), width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0.6;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(2);
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    opacity: 0.3;
}

@media (max-width: 1024px) {

    .cursor,
    .cursor-follower {
        display: none;
    }

    body,
    body.has-custom-cursor {
        cursor: auto;
    }
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) var(--space-lg);
    box-sizing: border-box;
    transition: background-color 320ms var(--ease-out-expo), box-shadow 320ms var(--ease-out-expo), backdrop-filter 320ms var(--ease-out-expo), -webkit-backdrop-filter 320ms var(--ease-out-expo);
}

.header.scrolled {
    background: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-links a {
    position: relative;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.1em;
    padding: var(--space-xs) 0;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out-expo);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Centered Navigation Layout */
.nav-centered {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-xl);
}

.nav-left {
    justify-self: end;
}

.nav-right {
    justify-self: start;
}

.nav-logo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.25rem;
    color: var(--gold-500);
    margin-bottom: 2px;
}

.nav-logo-center .logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0.05em;
}

.logo-tagline {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--warm-gray-300);
    margin-top: 2px;
}

/* Original nav-cta styles kept for compatibility */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.75rem 1.5rem;
    background: var(--black);
    color: var(--cream-100);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
}

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

.nav-cta svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-cta:hover svg {
    transform: translateX(3px);
}

/* Subpage desktop-only quick return */
.subpage-home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0;
    background: transparent;
    color: var(--charcoal);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.subpage-home-link::before {
    content: "←";
    color: var(--gold-500);
    transition: transform 0.3s var(--ease-out-expo);
}

.subpage-home-link:hover {
    color: var(--gold-600);
}

.subpage-home-link:hover::before {
    transform: translateX(-3px);
}

/* ===================================
   Hero Section - Elegant Spa Style
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-4xl) 0 var(--space-3xl);
    background: var(--cream-50);
}

/* Decorative Petals */
.petal {
    position: absolute;
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 200, 200, 0.6) 0%, rgba(255, 230, 210, 0.4) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    pointer-events: none;
    z-index: 1;
}

.petal-1 {
    top: 15%;
    left: 5%;
    transform: rotate(-30deg);
    width: 60px;
    height: 90px;
    animation: floatPetal 6s ease-in-out infinite;
}

.petal-2 {
    top: 25%;
    left: 20%;
    transform: rotate(15deg);
    width: 40px;
    height: 60px;
    animation: floatPetal 8s ease-in-out infinite 1s;
}

.petal-3 {
    top: 10%;
    right: 30%;
    transform: rotate(-45deg);
    width: 50px;
    height: 75px;
    animation: floatPetal 7s ease-in-out infinite 2s;
}

@keyframes floatPetal {

    0%,
    100% {
        transform: translateY(0) rotate(-30deg);
    }

    50% {
        transform: translateY(-20px) rotate(-25deg);
    }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3xl);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-location {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--warm-gray-300);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeIn 1s var(--ease-out-expo) 0.2s forwards;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    line-height: 1.1;
    color: var(--black);
}

.title-line {
    display: block;
}

.title-line.italic {
    font-style: italic;
}

.hero-description {
    font-size: 1rem;
    color: var(--warm-gray-300);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeIn 1s var(--ease-out-expo) 0.4s forwards;
}

.hero-highlight {
    color: var(--gold-500);
    font-weight: 500;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out-expo) 0.6s forwards;
}

/* Hero Visual - Oval Frame */
.hero-visual {
    position: relative;
    flex-shrink: 0;
}

.hero-image-frame {
    width: 400px;
    height: 480px;
    border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
    overflow: hidden;
    background: var(--cream-200);
    position: relative;
    z-index: 2;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream-200) 0%, var(--cream-300) 100%);
}

.placeholder-text {
    font-size: 0.9rem;
    color: var(--warm-gray-200);
    letter-spacing: 0.1em;
}

.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
    border: 1px solid var(--gold-300);
    z-index: 1;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--warm-gray-300);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    font-size: 1.25rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Buttons */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--gold-gradient);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.btn-primary:hover .btn-shine {
    left: 100%;
    transition: left 0.6s var(--ease-out-expo);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.btn-ghost:hover {
    color: var(--gold-500);
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-image-frame {
        width: 300px;
        height: 360px;
    }

    .petal {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-image-frame {
        width: 250px;
        height: 300px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* ===================================
   Experience Section
   =================================== */
.experience {
    padding: var(--space-4xl) 0 var(--space-3xl);
    background: var(--white);
}

.experience-intro {
    padding-bottom: var(--space-3xl);
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.split-left .section-title {
    margin-bottom: 0;
}

.stat-row {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--cream-300);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--warm-gray-200);
    letter-spacing: 0.05em;
    margin-top: var(--space-xs);
}

/* Marquee */
.experience-marquee {
    overflow: hidden;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--cream-200);
    border-bottom: 1px solid var(--cream-200);
}

.marquee-track {
    display: flex;
    gap: var(--space-lg);
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream-300);
    white-space: nowrap;
}

.marquee-track .dot {
    font-size: 1rem;
    color: var(--gold-400);
    font-style: normal;
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* ===================================
   Services Section - Spa Style
   =================================== */
.services {
    position: relative;
    padding: var(--space-3xl) 0;
    background: var(--cream-100);
    overflow: hidden;
}

/* Gold Swirl Decorations */
.swirl {
    position: absolute;
    width: 100px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-200) 100%);
    border-radius: 50% 0 50% 0;
    opacity: 0.3;
    pointer-events: none;
}

.swirl-1 {
    top: 15%;
    right: 10%;
    transform: rotate(-20deg);
    animation: floatSwirl 8s ease-in-out infinite;
}

.swirl-2 {
    bottom: 20%;
    left: 5%;
    transform: rotate(160deg);
    width: 80px;
    height: 50px;
    animation: floatSwirl 10s ease-in-out infinite 2s;
}

@keyframes floatSwirl {

    0%,
    100% {
        transform: translateY(0) rotate(-20deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-15px) rotate(-15deg);
        opacity: 0.5;
    }
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.services-intro {
    font-size: 1.1rem;
    color: var(--warm-gray-300);
    margin-top: var(--space-sm);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.service-card {
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    width: 180px;
    height: 180px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--cream-200);
    transition: var(--transition-smooth);
}

.service-card:hover .service-image {
    border-color: var(--gold-400);
    box-shadow: var(--shadow-gold);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream-200) 0%, var(--cream-300) 100%);
}

.service-image-placeholder span {
    font-size: 0.8rem;
    color: var(--warm-gray-200);
}

.service-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.service-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--black);
}

.service-arrow {
    font-size: 1.25rem;
    color: var(--warm-gray-200);
    transition: var(--transition-smooth);
}

.service-card:hover .service-arrow {
    color: var(--gold-500);
    transform: translateX(4px);
}

/* Services Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .service-image {
        width: 140px;
        height: 140px;
    }

    .swirl {
        display: none;
    }
}


/* ===================================
   Pricing Preview Section (CTA to Prices Page)
   =================================== */
.pricing-preview {
    padding: var(--space-3xl) 0;
    background: var(--cream-50);
    text-align: center;
}

.pricing-preview-content {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-preview-text {
    font-size: 1.1rem;
    color: var(--warm-gray-300);
    margin: var(--space-md) 0 var(--space-lg);
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.pricing-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.pricing-intro {
    font-size: 1.1rem;
    color: var(--warm-gray-300);
    margin-top: var(--space-sm);
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--warm-gray-300);
    background: transparent;
    border: 1px solid var(--cream-300);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pricing-tab:hover {
    border-color: var(--gold-400);
    color: var(--gold-600);
}

.pricing-tab.active {
    background: var(--gold-gradient);
    color: var(--white);
    border-color: transparent;
}

/* Pricing Content */
.pricing-content {
    display: none;
    animation: fadeIn 0.5s var(--ease-out-expo);
}

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

/* Brand Showcase */
.pricing-brand {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--cream-100);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
}

.brand-product {
    width: 180px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.brand-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--space-xs);
}

.brand-info p {
    font-size: 0.95rem;
    color: var(--warm-gray-300);
    line-height: 1.7;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    gap: var(--space-md);
}

.meder-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.simple-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

/* Premium Price Card (Meder) */
.price-card.premium {
    padding: var(--space-lg);
    background: var(--cream-50);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    position: relative;
}

.price-card.premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-300);
}

.price-card.premium.featured {
    border-color: var(--gold-400);
    background: linear-gradient(135deg, var(--gold-100) 0%, var(--cream-50) 100%);
}

.price-card.premium.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.price-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.price-header h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--black);
    margin: 0;
}

.price-tag {
    margin-left: auto;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-badge {
    padding: 0.25rem 0.75rem;
    background: var(--gold-gradient);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.price-desc {
    font-size: 0.9rem;
    color: var(--warm-gray-300);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.price-result {
    padding-top: var(--space-sm);
    border-top: 1px solid var(--cream-200);
}

.result-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: var(--space-xs);
}

.price-result p {
    font-size: 0.85rem;
    color: var(--warm-gray-300);
    line-height: 1.6;
    font-style: italic;
}

/* Simple Price Card (Maniküre/Pediküre) */
.price-card.simple {
    padding: var(--space-md) var(--space-lg);
    background: var(--cream-50);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.price-card.simple:hover {
    border-color: var(--gold-300);
    background: var(--white);
}

.price-simple-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.price-simple-info h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 4px;
}

.price-simple-info p {
    font-size: 0.85rem;
    color: var(--warm-gray-300);
}

.price-simple-tag {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--warm-gray-200);
    margin-top: var(--space-xl);
    font-style: italic;
}

/* Accordion Container */
.pricing-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--cream-200);
}

.accordion-item:first-child {
    border-top: 1px solid var(--cream-200);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.accordion-header:hover {
    opacity: 0.8;
}

.accordion-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--charcoal);
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-500);
    transition: transform 260ms var(--ease-out-quart);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* Accordion Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 380ms var(--ease-out-expo), padding 320ms var(--ease-out-quart);
}

.accordion-item.active .accordion-content {
    max-height: 600px;
    padding-bottom: var(--space-lg);
}

.accordion-intro {
    padding: 0 0 var(--space-md);
    font-size: 0.95rem;
    color: var(--warm-gray-300);
}

/* Price Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table tr {
    border-bottom: 1px solid var(--cream-200);
}

.price-table tr:last-child {
    border-bottom: none;
}

.price-table td {
    padding: var(--space-md) var(--space-sm);
    vertical-align: top;
}

.service-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
}

.service-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--warm-gray-200);
    margin-top: 4px;
}

.service-price {
    text-align: right;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gold-600);
    white-space: nowrap;
}

.featured-row .service-name {
    color: var(--gold-600);
    font-weight: 500;
}

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

/* Pricing Responsive */
@media (max-width: 768px) {
    .accordion-title {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }

    .price-table td {
        padding: var(--space-sm);
    }

    .service-name {
        font-size: 0.9rem;
    }

    .service-price {
        font-size: 0.9rem;
    }
}

/* ===================================
   Team Section
   =================================== */
.team {
    padding: var(--space-3xl) 0;
    background: var(--cream-100);
}

.team-teaser-image-wrapper {
    position: relative;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.team-teaser-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.team-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.team-intro {
    font-size: 1.1rem;
    color: var(--warm-gray-300);
    margin-top: var(--space-sm);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.team-card {
    text-align: left;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    border: none;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
    border-color: transparent;
}

.team-card.featured {
    border-color: transparent;
}

.team-card.featured::before {
    display: none;
}

.team-card--centered {
    text-align: center;
}

.team-card--centered .team-image {
    margin-bottom: 1.5rem;
}

.team-teaser-media {
    transition: transform var(--transition-smooth);
    will-change: transform;
}

.team-teaser-media-frame {
    transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.team-teaser-media-main {
    transition: box-shadow var(--transition-smooth);
}

.team-teaser-media-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo);
    transform-origin: center;
}

.team-teaser-media-badge {
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

.team-teaser-media:hover .team-teaser-media-frame {
    transform: translate(6px, -6px);
    border-color: rgba(201, 160, 80, 0.55);
}

.team-teaser-media:hover .team-teaser-media-image {
    transform: scale(1.04);
}

.team-teaser-media:hover .team-teaser-media-badge {
    transform: translate(-4px, -4px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.12);
}

@media (hover: none) {
    .team-teaser-media:hover {
        transform: none;
    }

    .team-teaser-media:hover .team-teaser-media-frame {
        transform: none;
        border-color: rgba(201, 160, 80, 0.3);
    }

    .team-teaser-media:hover .team-teaser-media-image {
        transform: none;
    }

    .team-teaser-media:hover .team-teaser-media-badge {
        transform: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }
}

.team-image {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--cream-200);
    overflow: hidden;
    border-radius: var(--radius-md);
}

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

.team-card--person-centered .team-image img {
    /* Fuellt den kompletten Rahmen und hält das Gesicht sichtbar */
    object-position: center 14%;
    transform: scale(1);
}

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

.team-card--person-centered:hover .team-image img {
    transform: scale(1.03);
}

/* Placeholder styling */
.team-card.placeholder .team-image {
    background: linear-gradient(135deg, var(--cream-200) 0%, var(--cream-300) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-placeholder-icon {
    width: 80px;
    height: 80px;
    color: var(--warm-gray-100);
}

.team-placeholder-icon svg {
    width: 100%;
    height: 100%;
}

.team-info {
    padding: var(--space-md) 0;
}

.team-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray-300);
    margin-bottom: 0;
}

.team-bio {
    display: none;
}

/* Team Responsive */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

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

    .team-info h3 {
        font-size: 1rem;
    }
}

/* ===================================
   Philosophy Section
   =================================== */
.philosophy {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--charcoal);
    overflow: hidden;
}

.philosophy-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        radial-gradient(circle at 20% 50%, var(--gold-500) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, var(--gold-600) 0%, transparent 50%);
}

.philosophy-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.quote-block {
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 10rem;
    line-height: 0.5;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.4;
    display: block;
    margin-bottom: var(--space-md);
}

.quote-block blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream-100);
    line-height: 1.5;
    margin-bottom: var(--space-lg);
}

.quote-block cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--gold-400);
}

.philosophy-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.feature {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: background 0.3s;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.03);
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    color: var(--gold-400);
    font-size: 0.8rem;
}

.feature h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream-100);
    margin-bottom: var(--space-xs);
}

.feature p {
    font-size: 0.85rem;
    color: var(--warm-gray-100);
    line-height: 1.5;
}

/* Philosophy Image Frame - Arch Shape */
.philosophy-image-frame {
    width: 100%;
    max-width: 350px;
    height: 420px;
    border-radius: 50% 50% 0 0 / 40% 40% 0 0;
    overflow: hidden;
    background: var(--cream-200);
    position: relative;
}

.philosophy-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(201, 160, 80, 0.3);
}

.philosophy-image-placeholder span {
    font-size: 0.9rem;
    color: var(--warm-gray-100);
    letter-spacing: 0.1em;
}

.swirl-philosophy {
    top: 50%;
    right: 15%;
    transform: rotate(-30deg);
    opacity: 0.2;
}

/* Philosophy Responsive */
@media (max-width: 1024px) {
    .philosophy-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    .philosophy-left {
        order: 1;
    }

    .philosophy-right {
        order: 2;
        display: flex;
        justify-content: center;
    }

    .philosophy-image-frame {
        max-width: 280px;
        height: 340px;
    }

    .philosophy-features {
        max-width: 400px;
        margin: var(--space-lg) auto 0;
    }

    .feature {
        text-align: left;
    }
}


/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--cream-50);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-md);
}

.contact-text {
    font-size: 1.1rem;
    color: var(--warm-gray-300);
    line-height: 1.8;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--cream-200);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateX(8px);
    border-color: var(--gold-300);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    color: var(--white);
    flex-shrink: 0;
}

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

.contact-info {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gray-200);
    margin-bottom: 4px;
}

.contact-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--black);
}

.contact-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-gray-200);
    transition: var(--transition-fast);
}

.contact-arrow svg {
    width: 20px;
    height: 20px;
}

.contact-card:hover .contact-arrow {
    color: var(--gold-500);
    transform: translate(4px, -4px);
}

/* ===================================
   Location Section
   =================================== */
.location {
    padding: var(--space-3xl) 0;
    background: var(--cream-100);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

.location-info {
    max-width: 450px;
}

.location-address {
    margin: var(--space-md) 0;
}

.address-line {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--black);
    line-height: 1.4;
}

.address-line:first-child {
    font-size: 1.75rem;
}

.location-desc {
    font-size: 1rem;
    color: var(--warm-gray-300);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.location-map {
    position: relative;
}

.map-frame {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream-200);
    box-shadow: var(--shadow-md);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
}

/* Location Responsive */
@media (max-width: 1024px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .location-info {
        max-width: 100%;
    }

    .map-frame {
        height: 350px;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: var(--space-xl) 0;
    background: var(--cream-100);
    border-top: 1px solid var(--cream-200);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer.animate-hidden {
    opacity: 0;
    transform: translateY(50px);
}

.footer.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-lg);
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid var(--cream-200);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--black);
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--warm-gray-200);
    letter-spacing: 0.1em;
    margin-top: var(--space-xs);
}

.footer-address {
    font-size: 0.75rem;
    color: var(--warm-gray-300);
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cream-300);
    border-radius: 50%;
    color: var(--warm-gray-300);
    transition: var(--transition-smooth);
}

.social-link:hover {
    border-color: var(--gold-400);
    color: var(--gold-500);
    transform: translateY(-2px);
}

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

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--warm-gray-300);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-500);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--warm-gray-200);
}

/* ===================================
   Scroll Animations
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1200px) {
    .hero-visual {
        width: 35%;
        right: 2%;
    }

    .hero-badge {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 var(--space-lg);
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .split-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .treatments-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .philosophy-features {
        max-width: 500px;
        margin: 0 auto;
    }

    .feature {
        text-align: left;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .contact-right {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===================================
   Mobile Menu & Hamburger
   =================================== */

/* Hamburger Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: transform 300ms var(--ease-out-expo), opacity 220ms var(--ease-out-quart), background-color 220ms var(--ease-out-quart);
    transform-origin: center;
}

/* Hamburger Animation - Active State */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--cream-50);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 360ms var(--ease-out-expo), visibility 360ms var(--ease-out-expo);
}

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

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 360ms var(--ease-out-expo) 80ms, opacity 360ms var(--ease-out-expo) 80ms;
}

.mobile-menu.active .mobile-menu-nav {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 260ms var(--ease-out-quart);
    position: relative;
}

.mobile-menu-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-500);
    transition: width 260ms var(--ease-out-expo);
}

.mobile-menu-link:hover {
    color: var(--gold-600);
}

.mobile-menu-link:hover::after {
    width: 100%;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    :root {
        --space-3xl: 6rem;
        --space-4xl: 8rem;
    }

    /* Mobile Header Styling */
    .header {
        background: rgba(250, 248, 245, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        height: 80px;
        padding: var(--space-xs) var(--space-md);
    }

    .nav-logo-center .logo-text {
        font-size: 1.2rem;
    }

    .nav-logo-center .logo-tagline {
        font-size: 0.55rem;
        letter-spacing: 0.15em;
    }

    .nav.nav-centered {
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: var(--space-md);
        top: 50%;
        transform: translateY(-50%);
    }

    .subpage-home-link {
        display: none;
    }

    .nav-logo-center {
        margin: 0;
        position: relative;
        left: 0;
        transform: none;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .stat-row {
        flex-direction: column;
        gap: var(--space-md);
    }

    .footer-top {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    /* Team Grid Mobile */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .team-info h3 {
        font-size: 1rem;
    }

    .team-info p {
        font-size: 0.8rem;
    }

    /* Experience Grid Mobile */
    .experience-features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    /* Section Padding Mobile */
    section {
        padding-top: var(--space-2xl);
        padding-bottom: var(--space-2xl);
    }

    .section-header {
        margin-bottom: var(--space-lg);
    }

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

    .section-subtitle {
        font-size: 0.85rem;
    }

    /* Team Showcase Mobile */
    .team-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .team-showcase-image {
        max-width: 200px;
        margin: 0 auto;
    }

    .team-showcase-content {
        text-align: center;
    }

    .team-showcase-title {
        font-size: 1.5rem;
    }

    .stat-badge {
        padding: var(--space-sm) var(--space-md);
    }

    .stat-badge .stat-number {
        font-size: 1.25rem;
    }

    .stat-badge .stat-label {
        font-size: 0.65rem;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-header {
        margin-bottom: 30px;
    }

    .testimonial-card {
        width: 280px;
        padding: 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .testimonial-stars {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .author-name {
        font-size: 0.85rem;
    }

    .author-date {
        font-size: 0.75rem;
    }

    /* Contact Section Mobile */
    .contact-wrapper {
        gap: var(--space-lg);
    }

    .contact-card {
        padding: var(--space-md);
    }

    .contact-card h3 {
        font-size: 1rem;
    }

    .contact-card p {
        font-size: 0.85rem;
    }

    /* Footer Mobile */
    .footer {
        padding: var(--space-xl) 0 var(--space-md);
    }

    .footer-logo {
        font-size: 1.25rem;
    }

    .footer-tagline {
        font-size: 0.7rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .contact-card {
        padding: var(--space-md);
    }
}

/* ===================================
   Legal Pages (Impressum/Datenschutz)
   =================================== */
.header-light {
    background: var(--cream-50);
    border-bottom: 1px solid var(--cream-200);
    height: 80px;
}

.header-light .nav {
    height: 100%;
}

.legal-page {
    padding: calc(80px + var(--space-2xl)) 0 var(--space-3xl);
    background: linear-gradient(180deg, #faf8f5 0%, #f7f2ea 100%);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.legal-line {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 0 auto;
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 18px;
    padding: clamp(1.3rem, 2.8vw, 2.2rem);
    box-shadow: 0 20px 44px rgba(58, 54, 50, 0.08);
    border: 1px solid var(--cream-200);
}

.legal-section {
    margin-bottom: clamp(1.2rem, 2.6vw, 1.8rem);
    padding-bottom: clamp(1rem, 2.4vw, 1.3rem);
    border-bottom: 1px solid var(--cream-200);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: clamp(0.6rem, 1.8vw, 0.9rem);
}

.legal-section h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-top: clamp(0.65rem, 2vw, 0.95rem);
    margin-bottom: clamp(0.4rem, 1.3vw, 0.55rem);
}

.legal-section p {
    font-size: clamp(0.95rem, 1.25vw, 1rem);
    color: var(--warm-gray-300);
    line-height: 1.72;
    margin-bottom: 0.62rem;
    text-wrap: pretty;
}

.legal-section ul {
    margin: 0.55rem 0 0.85rem;
    padding-left: 1.2rem;
}

.legal-section li {
    font-size: clamp(0.95rem, 1.2vw, 1rem);
    color: var(--warm-gray-300);
    line-height: 1.68;
    margin-bottom: 0.28rem;
}

.legal-section a {
    color: var(--gold-500);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.legal-section a:hover {
    color: var(--gold-600);
}

.legal-info-block {
    background: linear-gradient(180deg, #f9f5ef 0%, #f6f0e7 100%);
    padding: clamp(0.8rem, 1.8vw, 1rem);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(201, 160, 80, 0.2);
}

.legal-info-block h3 {
    margin-top: 0;
    color: var(--gold-600);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-info-block p {
    margin-bottom: var(--space-xs);
}

.legal-section p:last-child,
.legal-info-block p:last-child,
.legal-section ul:last-child {
    margin-bottom: 0;
}

.legal-footer {
    text-align: center;
    margin-top: clamp(1.4rem, 2.8vw, 2rem);
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: calc(60px + 1.6rem) 0 2.4rem;
    }

    .legal-header {
        margin-bottom: 1.35rem;
    }

    .legal-title {
        font-size: clamp(2rem, 9vw, 2.7rem);
        margin-bottom: 0.7rem;
    }

    .legal-line {
        width: 52px;
    }

    .legal-content {
        border-radius: 12px;
        padding: 1rem 0.95rem;
        box-shadow: 0 10px 26px rgba(58, 54, 50, 0.08);
    }

    .legal-section {
        margin-bottom: 1.1rem;
        padding-bottom: 0.95rem;
    }

    .legal-section h2 {
        font-size: 1.2rem;
        margin-bottom: 0.55rem;
    }

    .legal-section h3 {
        font-size: 0.93rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 0.92rem;
        line-height: 1.62;
    }

    .legal-section ul {
        margin: 0.45rem 0 0.75rem;
        padding-left: 1.05rem;
    }

    .legal-info-block {
        padding: 0.76rem 0.82rem;
        border-radius: 10px;
        margin-bottom: 0.72rem;
    }

    .legal-footer .btn-primary {
        min-width: min(100%, 320px);
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .legal-content {
        padding: 0.88rem 0.82rem;
    }

    .legal-section h2 {
        font-size: 1.12rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 0.89rem;
    }
}

/* ===================================
   Prices Page (Separate Page)
   =================================== */
.prices-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 300px;
    margin-top: 80px;
}

.prices-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl);
    background: var(--white);
}

.prices-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--charcoal);
}

.prices-hero-image {
    position: relative;
    overflow: hidden;
}

.prices-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream-200) 0%, var(--cream-300) 100%);
}

.prices-image-placeholder span {
    font-size: 0.9rem;
    color: var(--warm-gray-200);
}

.prices-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prices-page {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.prices-accordion {
    max-width: 900px;
    margin: 0 auto;
}

/* Price List Rows */
.price-list {
    background: var(--cream-50);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--cream-200);
}

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

.price-row.featured {
    background: rgba(201, 160, 80, 0.08);
}

.price-row.featured .service-title {
    color: var(--gold-600);
}

.price-service {
    flex: 1;
    padding-right: var(--space-md);
}

.service-title {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.price-row .service-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--warm-gray-200);
}

.price-amount {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gold-600);
    white-space: nowrap;
}

.prices-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

.prices-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--warm-gray-200);
    margin-top: var(--space-lg);
    font-style: italic;
}

@media (max-width: 768px) {
    .prices-hero {
        grid-template-columns: 1fr;
    }

    .prices-hero-content {
        padding: var(--space-xl);
        order: 2;
    }

    .prices-hero-image {
        order: 1;
        min-height: 200px;
    }

    .price-row {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .price-amount {
        align-self: flex-end;
    }
}

/* ===================================
   Products Page
   =================================== */
.products-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
    overflow: hidden;
}

.products-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.products-hero-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--white);
    text-align: center;
}

/* Products Info Section */
.products-info {
    padding: var(--space-xl) 0;
    background: var(--cream-50);
    text-align: center;
}

.products-info-text {
    font-size: 1.1rem;
    color: var(--warm-gray-300);
    max-width: 600px;
    margin: 0 auto;
}

.products-info-text strong {
    color: var(--gold-600);
}

/* Products Page Content */
.products-page {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

/* Product Card */
.product-card {
    text-align: center;
}

.product-image {
    margin-bottom: var(--space-md);
}

.product-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-100);
    border-radius: var(--radius-md);
    border: 1px solid var(--cream-200);
}

.product-image-placeholder span {
    font-size: 0.9rem;
    color: var(--warm-gray-200);
    letter-spacing: 0.1em;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.product-description {
    font-size: 0.9rem;
    color: var(--warm-gray-300);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.product-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--charcoal);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.product-btn:hover {
    background: var(--gold-500);
}

.products-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* Products Responsive */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .products-hero-title {
        letter-spacing: 0.15em;
    }
}

/* ===================================
   Location Section - Full Width Map
   =================================== */
.location-fullwidth {
    position: relative;
    height: 70vh;
    min-height: 500px;
}

.location-map-large {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.location-map-large iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(30%) contrast(1.1);
}

.location-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: var(--space-xl);
    pointer-events: none;
}

.location-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    pointer-events: auto;
}


.location-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

.location-address {
    margin-bottom: var(--space-md);
}

.address-line {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
}

.location-desc {
    font-size: 0.95rem;
    color: var(--warm-gray-300);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

/* Location Responsive */
@media (max-width: 768px) {
    .location-fullwidth {
        height: auto;
        min-height: auto;
    }

    .location-map-large {
        position: relative;
        height: 350px;
    }

    .location-overlay {
        position: relative;
        padding: var(--space-lg);
        background: var(--cream-50);
    }

    .location-card {
        max-width: 100%;
        box-shadow: none;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        border: none;
    }
}

/* ===================================
   Hero Fullscreen - High End
   =================================== */
.hero-fullscreen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: -12vh 0;
    z-index: 1;
    transform: translate3d(0, 0, 0);
    transform-origin: center center;
    will-change: transform;
    backface-visibility: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-fullscreen-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 var(--space-xl);
}

.hero-card {
    max-width: 550px;
    margin-left: 10%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(42px) scale(0.965);
    filter: blur(6px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo), box-shadow var(--transition-smooth), filter 1s var(--ease-out-expo), background 0.45s var(--ease-out-expo);
}

body.hero-ready .hero-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

@media (hover: hover) and (pointer: fine) {
    body.hero-ready .hero-card:hover {
        transform: translateY(-9px) scale(1.006);
        box-shadow: 0 48px 82px -22px rgba(0, 0, 0, 0.24);
        background: rgba(255, 255, 255, 0.95);
    }
}

.hero-tagline {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--gold-600);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero-headline-italic {
    font-style: italic;
    color: var(--charcoal);
}

.hero-subtext {
    font-size: 1rem;
    color: var(--warm-gray-300);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.hero-buttons {
    margin-bottom: var(--space-lg);
}

.hero-address {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--warm-gray-300);
}

.hero-address span:first-child {
    color: var(--gold-500);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

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

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--charcoal);
    text-transform: uppercase;
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-fullscreen {
        min-height: 100svh;
    }

    .hero-fullscreen-content {
        padding: 0 var(--space-md);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-bg-overlay {
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0.52) 0%,
                rgba(255, 255, 255, 0.68) 50%,
                rgba(255, 255, 255, 0.80) 100%);
    }

    .hero-card {
        margin: 0;
        max-width: 100%;
        padding: var(--space-xl) var(--space-lg);
        text-align: center;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }

    .hero-tagline {
        font-size: 0.65rem;
    }

    .hero-headline {
        font-size: 2.5rem;
        margin-bottom: var(--space-md);
    }

    .hero-subtext {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-buttons {
        margin-bottom: var(--space-xl);
    }

    .hero-address {
        justify-content: center;
        font-size: 0.8rem;
    }

    .hero-scroll-indicator {
        bottom: var(--space-lg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-card {
        opacity: 1;
        transform: none;
        transition: none;
        filter: none;
    }
}

/* ===================================
   Pricing Preview Cards
   =================================== */
.pricing-preview {
    padding: 80px 0;
    background: #faf9f7;
}

.pricing-preview-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-preview-text {
    max-width: 500px;
    margin: 0 auto;
    color: #7a7a7a;
}

.pricing-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    /* Square aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, #e8ddd0 0%, #d4c4b0 100%);
    transition: transform 0.6s ease;
}

.pricing-card:hover .pricing-card-bg {
    transform: scale(1.08);
}

.pricing-card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 2;
}

.pricing-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #2d2d2d;
    margin-bottom: 8px;
    text-align: center;
}

.pricing-card-price {
    font-size: 0.9rem;
    color: #7a7a7a;
}

.pricing-card-price strong {
    color: #c9a050;
    font-weight: 600;
}

.pricing-card-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 24px;
    background: linear-gradient(to top, rgba(201, 160, 80, 0.95) 0%, rgba(201, 160, 80, 0.4) 50%, transparent 100%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover .pricing-card-hover {
    opacity: 1;
}

.pricing-card-cta {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.pricing-preview-cta {
    text-align: center;
}

/* Pricing Cards Responsive */
@media (max-width: 1024px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }

    .pricing-card-title {
        font-size: 0.95rem;
    }
}

/* ===================================
   Pricing Cards with Hover Effect
   =================================== */
.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 1025px) {
    .pricing-cards-container {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    }
}

.price-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.price-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #e8ddd0 0%, #d4c4b0 100%);
    transition: transform 0.5s ease;
}

.price-card:hover .price-card-bg {
    transform: scale(1.05);
}

/* Title - Always visible, centered */
.price-card>.price-card-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.22;
    text-align: center;
    color: #5a5a5a;
    padding: 0 1rem;
    margin: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.price-card>.price-card-title.price-card-title--split {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 0 1.45rem;
    letter-spacing: 0.075em;
    line-height: 1.14;
}

.price-card:hover>.price-card-title {
    opacity: 0;
}

/* Hover Overlay */
.price-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 28px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.price-card:hover .price-card-overlay {
    opacity: 1;
}

.price-card-overlay .price-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.05rem, 1.45vw, 1.2rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.22;
    text-wrap: balance;
    color: #5a5a5a;
    margin: 0 0 12px 0;
}

.price-card-overlay .price-card-title.price-card-title--split {
    align-items: flex-start;
    gap: 0.04rem;
}

.price-card-title--split br {
    display: block;
}

.price-card-price {
    font-size: 0.95rem;
    color: #7a7a7a;
    margin: 0 0 auto 0;
}

.price-card-price strong {
    color: #c9a050;
    font-weight: 600;
}

.price-card-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.price-btn {
    padding: 10px 18px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 260ms var(--ease-out-quart), color 220ms var(--ease-out-quart), border-color 220ms var(--ease-out-quart), transform 260ms var(--ease-out-quart);
}

.price-btn.primary {
    background: #c9a050;
    color: #fff;
}

.price-btn.primary:hover {
    background: #b8903f;
}

.price-btn.secondary {
    background: transparent;
    color: #c9a050;
    border: 1px solid #c9a050;
}

.price-btn.secondary:hover {
    background: #c9a050;
    color: #fff;
}

/* Pricing Cards Responsive */
@media (max-width: 1024px) {
    .pricing-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards-container .price-card:last-child {
        grid-column: 1 / -1;
        width: calc((100% - 24px) / 2);
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .pricing-cards-container {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 1rem;
    }

    .price-card {
        aspect-ratio: 16/10;
        min-height: 180px;
    }

    .pricing-cards-container .price-card:last-child {
        grid-column: auto;
        width: 100%;
        justify-self: stretch;
    }

    .price-card::after {
        content: '›';
        position: absolute;
        bottom: 14px;
        right: 16px;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        font-weight: 300;
        color: rgba(201, 160, 80, 0.6);
        border: 1px solid rgba(201, 160, 80, 0.25);
        border-radius: 50%;
        z-index: 4;
        pointer-events: none;
    }

    .price-card>.price-card-title {
        font-size: 1.15rem;
    }

    .price-card-overlay {
        padding: 24px;
    }

    .price-card-overlay .price-card-title {
        font-size: 1.2rem;
        letter-spacing: 0.07em;
    }

    .price-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}

/* ===================================
   Testimonials Section - Horizontal Scroll
   =================================== */

.testimonials {
    padding: 100px 0;
    background: var(--cream-100);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
}

.google-badge svg {
    flex-shrink: 0;
}

/* Marquee Animation Container */
.testimonials-marquee {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    /* Animation is now fully JS-driven for seamless resume after touch */
    width: max-content;
}


/* Testimonial Card */
.testimonial-card {
    display: inline-block;
    flex-shrink: 0;
    width: 380px;
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    font-size: 1.2rem;
    color: var(--gold-500);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--cream-200);
}

.author-name {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.author-date {
    font-size: 0.85rem;
    color: var(--warm-gray-200);
}

/* CTA Link */
.testimonials-cta {
    text-align: center;
    margin-top: 40px;
}

.testimonials-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-500);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, gap 0.3s ease;
}

.testimonials-link:hover {
    color: var(--gold-600);
    gap: 12px;
}

.testimonials-link svg {
    transition: transform 0.3s ease;
}

.testimonials-link:hover svg {
    transform: translate(2px, -2px);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-card {
        width: 300px;
        padding: 24px;
    }

    .testimonials-track {
        gap: 16px;
        animation-duration: 30s;
    }
}

/* ===================================
   HIGH-END DESIGN UPGRADES
   =================================== */

/* ---------------------------------
   1. GRAIN TEXTURE (z-index: -1)
   Subtile Papier-Textur HINTER allem
   --------------------------------- */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: -1;
}

/* ---------------------------------
   2. GLASMORPHISM UTILITIES
   Nur neue Klassen, nichts überschreiben
   --------------------------------- */
.glass-light {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.glass-subtle {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Glass-Effekt für Pricing Card Overlay */
.price-card-overlay {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ---------------------------------
   3. PAGE TRANSITIONS
   Synchronisiert mit Preloader
   --------------------------------- */

/* Sanftes Einblenden NACH dem Preloader */
body.page-ready {
    animation: pageEnterSmooth 0.6s ease-out;
}

@keyframes pageEnterSmooth {
    from {
        opacity: 0.9;
    }

    to {
        opacity: 1;
    }
}

/* Exit-Animation beim Navigieren */
body.page-exit {
    animation: pageExitSmooth 0.25s ease-in forwards;
}

@keyframes pageExitSmooth {
    to {
        opacity: 0;
    }
}

/* ---------------------------------
   4. BLUR-UP IMAGE LOADING
   Nur für Bilder mit .lazy-blur Klasse
   --------------------------------- */
img.lazy-blur {
    filter: blur(12px);
    opacity: 0.8;
    transition: filter 0.5s ease-out, opacity 0.5s ease-out;
}

img.lazy-blur.loaded {
    filter: blur(0);
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .preloader-line::after,
    .petal-1,
    .petal-2,
    .petal-3,
    .swirl-1,
    .swirl-2,
    .scroll-arrow,
    .scroll-line {
        animation: none !important;
    }

    .mobile-menu,
    .mobile-menu-nav,
    .mobile-menu-link::after,
    .accordion-content,
    .accordion-icon,
    .btn-primary,
    .price-card,
    .pricing-card-bg,
    .price-card-bg,
    .price-card-overlay,
    .testimonial-card,
    .testimonials-link svg {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
