/* ==========================================================================
   AURA BRIDAL MAISON DE BEAUTÉ - MASTER STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN SYSTEM & TOKENS (LIGHT BRIDAL LUXURY)
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-bg-base: #FAF8F5;          /* Alabaster Ivory - warm, bright, and clean */
    --color-bg-surface: #FFF6F5;       /* Soft Blush Pink Tint */
    --color-bg-surface-glass: rgba(255, 255, 255, 0.85);
    
    --color-text-primary: #2C2520;     /* Espresso Dark Brown */
    --color-text-secondary: #4A413A;   /* Soft Charcoal/Brown */
    --color-text-muted: #7D7268;       /* Warm Taupe */
    
    --color-accent-gold: #B76E79;      /* Rose Gold */
    --color-accent-gold-light: #C58B93;/* Light Rose Gold */
    --color-accent-gold-dark: #8F4C55; /* Dark Rose Gold */
    --color-accent-gold-rgba: rgba(183, 110, 121, 0.12);
    --color-accent-champagne: #E6C594; /* Champagne Gold */

    --color-border: rgba(183, 110, 121, 0.15);
    --color-border-gold: rgba(183, 110, 121, 0.25);
    --color-border-gold-active: rgba(183, 110, 121, 0.55);
    
    --color-error: #D32F2F;
    --color-success: #388E3C;

    /* Typography */
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Inter', sans-serif;

    /* Spacing (8px Grid System) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    --space-section: 120px;

    /* Layout */
    --container-max-width: 1280px;
    --border-radius-card: 24px;
    --border-radius-btn: 40px;
    --border-radius-input: 12px;

    /* Shadows */
    --shadow-soft: 0 8px 30px rgba(183, 110, 121, 0.05);
    --shadow-luxury: 0 20px 50px rgba(183, 110, 121, 0.08), 0 0 40px rgba(230, 197, 148, 0.05);
    --shadow-glow: 0 0 20px rgba(183, 110, 121, 0.25);

    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background-color: var(--color-bg-base);
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
}

button {
    cursor: pointer;
}

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

/* Accessibility Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: var(--space-md);
    background: var(--color-accent-gold);
    color: #FFF;
    padding: var(--space-sm) var(--space-md);
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: none;
}

/* Screen Reader Only Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --------------------------------------------------------------------------
   3. CUSTOM CURSOR
   -------------------------------------------------------------------------- */
.custom-cursor, .custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    border-radius: 50%;
}

.custom-cursor {
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-accent-gold);
    opacity: 0;
}

.custom-cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--color-accent-gold);
    opacity: 0;
}

@media (pointer: fine) {
    .custom-cursor, .custom-cursor-dot {
        opacity: 1;
    }
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    background-color: rgba(183, 110, 121, 0.05);
    border-color: var(--color-accent-gold-light);
}

/* --------------------------------------------------------------------------
   4. LAYOUT & UTILITIES
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-section) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-gold {
    color: var(--color-accent-gold);
}

/* Typography Classes */
.heading-luxe {
    font-family: var(--font-primary);
    font-weight: 300;
    color: var(--color-text-primary);
    text-transform: uppercase;
}

.heading-sub {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-gold);
    margin-bottom: var(--space-sm);
    display: block;
}

.h1 {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.25;
}

.p-lead {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* --------------------------------------------------------------------------
   5. PARALLAX FLOATING DECORATIONS
   -------------------------------------------------------------------------- */
.floating-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    pointer-events: none;
    will-change: transform, opacity;
    transition: opacity 0.5s ease;
    width: 40px; /* Defensive default width to prevent unstyled SVGs from blowing up */
}

.floating-element svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Initial Layout Positions for Parallax Elements */
.petal-1 { top: 18vh; left: 2vw; width: 45px; opacity: 0.3; }
.petal-2 { top: 85vh; right: 2vw; width: 40px; opacity: 0.25; }
.petal-3 { top: 155vh; left: 3vw; width: 40px; opacity: 0.3; }

.sparkle-1 { top: 28vh; right: 5vw; width: 25px; opacity: 0.6; }
.sparkle-2 { top: 130vh; left: 4vw; width: 20px; opacity: 0.4; }

.lipstick-1 { top: 65vh; left: 3vw; width: 32px; opacity: 0.15; }
.brush-1 { top: 185vh; right: 2vw; width: 35px; opacity: 0.15; }
.compact-1 { top: 45vh; right: 4vw; width: 38px; opacity: 0.15; }
.perfume-1 { top: 145vh; right: 3vw; width: 40px; opacity: 0.15; }
.kajal-1 { top: 115vh; left: 2vw; width: 25px; opacity: 0.15; }
.nailpolish-1 { top: 170vh; left: 4vw; width: 32px; opacity: 0.15; }
.jewellery-1 { top: 210vh; left: 3vw; width: 45px; opacity: 0.2; }
.mandala-1 { top: 105vh; right: 3vw; width: 90px; opacity: 0.2; }

/* Enable and scale down floating elements on mobile */
@media (max-width: 767px) {
    .floating-decorations {
        display: block !important;
    }
    .floating-element {
        width: 24px !important; /* Scale down on mobile */
        opacity: 0.12 !important; /* Lower opacity to keep it subtle */
    }
    .mandala-1 {
        width: 55px !important;
    }
    .jewellery-1 {
        width: 32px !important;
    }
    .compact-1 {
        width: 26px !important;
    }
    .perfume-1 {
        width: 28px !important;
    }
}

/* --------------------------------------------------------------------------
   6. BUTTONS & INTERACTIVES
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--border-radius-btn);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--color-accent-gold);
    color: #FFF;
    border: 1px solid var(--color-accent-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-text-primary);
    transform: translateY(100%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover {
    color: #FFF;
    border-color: var(--color-text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover::before {
    transform: translateY(0);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent-gold);
    transform: translateY(100%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-secondary:hover {
    color: #FFF;
    border-color: var(--color-accent-gold);
}

.btn-secondary:hover::before {
    transform: translateY(0);
}

.btn:focus-visible {
    outline: 2px solid var(--color-accent-gold);
    outline-offset: 4px;
}

/* --------------------------------------------------------------------------
   7. SITE HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background-color: var(--color-bg-surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 12px 0;
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 24px var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.site-header.scrolled .header-container {
    padding: 12px var(--space-md);
}

/* Brand Logo */
.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--color-text-primary);
    line-height: 1;
}

.logo-subtext {
    font-family: var(--font-secondary);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    margin-top: 4px;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

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

.nav-link {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-gold);
    transition: var(--transition-smooth);
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1100;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: var(--transition-smooth);
    transform-origin: left center;
}

.mobile-menu-toggle[aria-expanded="true"] .line-1 {
    transform: rotate(45deg) translate(2px, 0px);
}

.mobile-menu-toggle[aria-expanded="true"] .line-2 {
    opacity: 0;
    width: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .line-3 {
    transform: rotate(-45deg) translate(2px, 1px);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-base);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xxl);
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-nav-link {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-accent-gold);
}

.mobile-nav-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.mobile-contact-info {
    margin-top: var(--space-md);
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Hide overlapping header elements when mobile menu is open */
body.mobile-menu-open .brand-logo,
body.mobile-menu-open #header-book-btn {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.mobile-menu-open .site-header {
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
}

/* --------------------------------------------------------------------------
   8. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
    width: 100%;
}

.hero-content {
    text-align: center;
    z-index: 10;
}

.hero-title {
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeRise 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.3s;
}

.hero-desc {
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeRise 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.6s;
}

.hero-actions-container {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeRise 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.9s;
}

.hero-image-column {
    position: relative;
    z-index: 5;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeRise 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.6s;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--color-border);
    max-width: 450px;
    margin: 0 auto;
}

.hero-img-bridal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.hero-image-wrapper:hover .hero-img-bridal {
    transform: scale(1.03);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.08), transparent);
    pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
    color: var(--color-text-muted);
}

.scroll-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: rgba(183, 110, 121, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: var(--color-accent-gold);
    animation: scrollAnim 2s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@media (min-width: 1024px) {
    .hero-section {
        height: 100vh;
        padding-top: 120px;
        padding-bottom: 0;
    }
    
    .hero-grid-container {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-xxl);
    }
    
    .hero-content {
        text-align: left;
    }

    .hero-image-wrapper {
        margin-left: auto;
        margin-right: 0;
    }
}

/* --------------------------------------------------------------------------
   9. GLASSMORPHISM & CARDS
   -------------------------------------------------------------------------- */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.05)), var(--color-bg-surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-card);
    padding: var(--space-xl);
    box-shadow: var(--shadow-luxury);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    border-color: var(--color-border-gold);
    box-shadow: 0 30px 60px rgba(183, 110, 121, 0.12), 0 0 50px rgba(230, 197, 148, 0.04);
}

/* 3D perspective wrapper */
.card-perspective-wrapper {
    perspective: 1000px;
    height: 100%;
}

.card-perspective {
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
    height: 100%;
}

/* --------------------------------------------------------------------------
   10. HOME PAGE SECTIONS
   -------------------------------------------------------------------------- */

/* Philosophy / About Teaser */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

.philosophy-image-container {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

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

.philosophy-image-container:hover .philosophy-img {
    transform: scale(1.03);
}

.philosophy-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 30px rgba(183, 110, 121, 0.08);
    pointer-events: none;
}

.philosophy-text-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.signature-container {
    margin-top: var(--space-md);
}

.signature {
    font-family: var(--font-primary);
    font-size: 28px;
    font-style: italic;
    color: var(--color-accent-gold);
}

.signature-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

/* Featured Services */
.services-teaser-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.service-teaser-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-teaser-img-wrapper {
    position: relative;
    border-radius: var(--border-radius-card) var(--border-radius-card) 0 0;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.service-teaser-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-teaser-card:hover .service-teaser-img {
    transform: scale(1.04);
}

.service-teaser-content {
    border-top: none;
    border-radius: 0 0 var(--border-radius-card) var(--border-radius-card);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--space-md);
}

.service-teaser-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.service-teaser-price {
    font-family: var(--font-primary);
    font-size: 24px;
    color: var(--color-accent-gold);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    aspect-ratio: 1;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(250, 248, 245, 0.85);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 2;
    padding: var(--space-md);
}

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

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

.gallery-text {
    font-family: var(--font-primary);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
    border-bottom: 1px solid var(--color-accent-gold);
    padding-bottom: 4px;
}

/* Testimonials Slider */
.testimonial-section {
    background: linear-gradient(180deg, var(--color-bg-base) 0%, #FFF5F4 50%, var(--color-bg-base) 100%);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 250px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.quote-icon {
    font-family: var(--font-primary);
    font-size: 72px;
    line-height: 1;
    color: var(--color-accent-gold-rgba);
    display: block;
    margin-bottom: -24px;
}

.testimonial-text {
    font-family: var(--font-primary);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.5;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-gold);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-xl);
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

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

/* --------------------------------------------------------------------------
   11. SERVICES PAGE
   -------------------------------------------------------------------------- */
.editorial-header {
    padding-top: calc(var(--space-section) + 60px);
    text-align: center;
}

.services-category-block {
    margin-bottom: var(--space-xxl);
}

.category-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xxl);
}

.category-sidebar {
    position: static;
    height: auto;
}

.category-image-wrap {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    aspect-ratio: 16/10;
    margin-bottom: var(--space-md);
}

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

.category-info .h2 {
    margin-bottom: var(--space-sm);
}

.category-desc {
    color: var(--color-text-muted);
}

/* Pricing List */
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.pricing-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    border-bottom: 1px solid rgba(183, 110, 121, 0.08);
    padding-bottom: var(--space-md);
}

.pricing-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-sm);
}

.pricing-item-name {
    font-family: var(--font-primary);
    font-size: 22px;
    color: var(--color-text-primary);
    font-weight: 400;
}

.pricing-item-leader {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(183, 110, 121, 0.2);
}

.pricing-item-price-col {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-item-duration {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.pricing-item-price {
    font-family: var(--font-primary);
    font-size: 22px;
    color: var(--color-accent-gold);
}

.pricing-item-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    max-width: 600px;
}

/* --------------------------------------------------------------------------
   12. ABOUT PAGE
   -------------------------------------------------------------------------- */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.team-card {
    display: flex;
    flex-direction: column;
}

.team-img-wrapper {
    position: relative;
    border-radius: var(--border-radius-card) var(--border-radius-card) 0 0;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.team-content {
    border-top: none;
    border-radius: 0 0 var(--border-radius-card) var(--border-radius-card);
    text-align: center;
}

.team-role {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-gold);
    margin-bottom: var(--space-xs);
    display: block;
}

.team-bio {
    font-size: 14px;
    margin-top: var(--space-sm);
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   13. CONTACT & BOOKING
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xxl);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.info-block-title {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-gold);
}

.info-block-content {
    font-size: 16px;
    color: var(--color-text-primary);
}

/* Map Mockup */
.map-mockup {
    border-radius: var(--border-radius-card);
    height: 300px;
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.map-placeholder-bg {
    width: 100%;
    height: 100%;
    background-color: #FCF9F7;
    background-image: 
        radial-gradient(rgba(183, 110, 121, 0.05) 1px, transparent 0),
        radial-gradient(rgba(0, 0, 0, 0.01) 2px, transparent 0);
    background-size: 24px 24px, 48px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    animation: float 3s ease-in-out infinite;
}

.marker-pin {
    width: 20px;
    height: 20px;
    background-color: var(--color-accent-gold);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: var(--shadow-glow);
}

.marker-label {
    font-family: var(--font-primary);
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
    text-transform: uppercase;
}

/* Forms & Inputs */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
}

.form-input, .form-select, .form-textarea {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-input);
    padding: 16px;
    color: var(--color-text-primary);
    transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    background-color: #FFF;
    box-shadow: 0 0 15px rgba(183, 110, 121, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Validation Styling */
.form-input.error, .form-select.error, .form-textarea.error {
    border-color: var(--color-error);
}

.error-message {
    font-size: 12px;
    color: var(--color-error);
    margin-top: 4px;
}

.form-message {
    padding: var(--space-md);
    border-radius: var(--border-radius-input);
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(56, 142, 60, 0.1);
    border: 1px solid var(--color-success);
    color: var(--color-success);
}

.form-message.error {
    display: block;
    background-color: rgba(211, 47, 47, 0.1);
    border: 1px solid var(--color-error);
    color: var(--color-error);
}

/* --------------------------------------------------------------------------
   14. SITE FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: #FFF0EE;
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-xxl);
}

.footer-upper {
    padding-bottom: var(--space-xxl);
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xxl);
}

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

.footer-tagline {
    font-size: 14px;
    color: var(--color-text-muted);
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.social-link:hover {
    color: var(--color-accent-gold);
}

.footer-title {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--color-text-primary);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.footer-links-list, .footer-hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-link {
    font-size: 14px;
    color: var(--color-text-muted);
}

.footer-link:hover {
    color: var(--color-text-primary);
    padding-left: 4px;
}

.footer-hours-list li {
    font-size: 14px;
    color: var(--color-text-muted);
    display: flex;
    justify-content: space-between;
    max-width: 250px;
}

.newsletter-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

/* Newsletter Form */
.form-group-newsletter {
    display: flex;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-btn);
    padding: 4px;
    background-color: #FFF;
    transition: var(--transition-fast);
}

.form-group-newsletter:focus-within {
    border-color: var(--color-accent-gold);
}

.form-input-newsletter {
    flex-grow: 1;
    padding: 12px 20px;
    font-size: 13px;
    color: var(--color-text-primary);
}

.form-input-newsletter:focus {
    outline: none;
}

.btn-newsletter {
    background-color: var(--color-accent-gold);
    color: #FFF;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--border-radius-btn);
    padding: 0 24px;
    transition: var(--transition-fast);
}

.btn-newsletter:hover {
    background-color: var(--color-text-primary);
}

.footer-lower {
    border-top: 1px solid rgba(183, 110, 121, 0.08);
    padding: var(--space-md) 0;
}

.lower-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    text-align: center;
}

.copyright {
    font-size: 12px;
    color: var(--color-text-muted);
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.legal-link {
    font-size: 12px;
    color: var(--color-text-muted);
}

.legal-link:hover {
    color: var(--color-text-primary);
}

/* --------------------------------------------------------------------------
   15. ANIMATIONS & REVEALS
   -------------------------------------------------------------------------- */
@keyframes fadeRise {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scrollAnim {
    0% {
        top: -20px;
        opacity: 0;
    }
    50% {
        top: 20px;
        opacity: 1;
    }
    100% {
        top: 60px;
        opacity: 0;
    }
}

@keyframes float {
    0% { transform: translateY(0) rotate(-45deg); }
    50% { transform: translateY(-10px) rotate(-45deg); }
    100% { transform: translateY(0) rotate(-45deg); }
}

/* Scroll-based Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* --------------------------------------------------------------------------
   16. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */

/* Large Tablets & Laptops (1024px) */
@media (min-width: 1024px) {
    .desktop-nav {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }

    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xxl);
    }

    .category-sidebar {
        position: sticky;
        top: 120px;
        height: fit-content;
    }

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

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

    .category-row {
        grid-template-columns: 350px 1fr;
        gap: var(--space-xxl);
    }

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

    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: var(--space-xxl);
    }

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

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

    .lower-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

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

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

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

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

/* --------------------------------------------------------------------------
   17. ACCESSIBILITY OVERRIDES
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-delay: 0s !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
    
    .custom-cursor, .custom-cursor-dot, .floating-decorations {
        display: none !important;
    }
    
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-bg img, .service-teaser-card:hover .service-teaser-img, .philosophy-image-container:hover .philosophy-img {
        transform: none !important;
    }
}
