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

        :root {
            --primary: #d4a5a5;
            --secondary: #c9b8a8;
            --sage: #a8b5a0;
            --beige: #f5f0e8;
            --pink-light: #f9e8e8;
            --text-dark: #4a4a4a;
            --text-light: #6b6b6b;
            --white: #ffffff;
        }

        body {
            font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            direction: rtl;
            color: var(--text-dark);
            line-height: 1.7;
            background: var(--beige);
        }

        html {
            scroll-behavior: smooth;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }

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

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .logo img {
            height: 95px;
            width: auto;
            max-width: 280px;
            object-fit: contain;
        }

        nav {
            display: flex;
            gap: 2rem;
        }

        nav a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

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

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--pink-light) 0%, var(--beige) 100%);
            padding: 5rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 165, 165, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(168, 181, 160, 0.12) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            text-align: right;
        }

        .hero-text {
            text-align: right;
        }

        .hero-image {
            order: -1;
        }

        .hero-image img,
        .hero-image video {
            width: 400px;
            height: 400px;
            object-fit: cover;
            border-radius: 50%;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            border: 6px solid var(--pink-light);
        }

        .hero h1 {
            font-size: 2.8rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero .subheadline {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-right: auto;
            margin-left: auto;
        }

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

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            display: inline-block;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(212, 165, 165, 0.3);
        }

        .btn-primary:hover {
            background: #c99595;
            box-shadow: 0 6px 25px rgba(212, 165, 165, 0.4);
            transform: translateY(-2px);
        }

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

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

        /* Sections */
        section {
            padding: 5rem 0;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 3rem;
            font-weight: 700;
        }

        /* About Section */
        .about {
            background: var(--white);
        }

        .about-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;
            margin-top: 2rem;
        }

        .about-images {
            display: flex;
            gap: 3rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .about-person {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .about-circle-image {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            border: 5px solid var(--pink-light);
        }

        .about-person-info {
            text-align: center;
        }

        .about-person-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.3rem;
        }

        .about-person-title {
            font-size: 1rem;
            color: var(--text-light);
        }

        .about-text {
            max-width: 800px;
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--text-light);
            text-align: center;
        }

        /* Services Section */
        .services {
            background: var(--pink-light);
        }

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

        .services-grid .service-card:nth-child(1) { grid-column: 1 / 3; }
        .services-grid .service-card:nth-child(2) { grid-column: 3 / 5; }
        .services-grid .service-card:nth-child(3) { grid-column: 5 / 7; }
        .services-grid .service-card:nth-child(4) { grid-column: 2 / 4; }
        .services-grid .service-card:nth-child(5) { grid-column: 4 / 6; }

        .service-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-image {
            width: 100%;
            aspect-ratio: 3 / 4;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            display: block;
        }

        .service-card h3 {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Events Section */
        .events {
            background: var(--white);
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .event-card {
            background: linear-gradient(135deg, var(--beige) 0%, var(--pink-light) 100%);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
        }

        .event-card h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .event-card p {
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }

        .event-list {
            list-style: none;
            padding: 0;
            margin: 0.5rem 0;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .event-list li {
            color: var(--text-light);
            padding-right: 1rem;
            border-right: 2px solid var(--primary);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .event-price {
            margin-top: 0.8rem;
            font-weight: 600;
            color: var(--text-dark) !important;
        }

        /* Events skeleton loader */
        .event-card.skeleton {
            pointer-events: none;
        }

        .skeleton-line {
            height: 16px;
            border-radius: 8px;
            margin-bottom: 12px;
            background: linear-gradient(90deg, #f0e8e8 25%, #e8d8d8 50%, #f0e8e8 75%);
            background-size: 200% 100%;
            animation: shimmer 1.4s infinite;
        }

        .skeleton-line.wide   { width: 75%; }
        .skeleton-line.medium { width: 55%; }
        .skeleton-line.narrow { width: 40%; }

        @keyframes shimmer {
            0%   { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .events-empty {
            color: var(--text-light);
            font-style: italic;
            text-align: center;
            grid-column: 1 / -1;
            padding: 2rem 0;
        }

        /* Testimonials */
        .testimonials {
            background: var(--beige);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .testimonial-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            border-right: 4px solid var(--primary);
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-light);
            line-height: 1.7;
            text-align: center;
        }

        .testimonial-author {
            text-align: center;
            margin-top: 1rem;
            font-weight: 600;
            color: var(--primary);
            font-size: 0.95rem;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, var(--pink-light) 0%, var(--white) 100%);
            text-align: center;
        }

        .contact-intro {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
        }

        .contact-methods {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2rem;
            background: var(--white);
            color: var(--text-dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .contact-btn.whatsapp {
            background: #25D366;
            color: var(--white);
        }

        .contact-btn.whatsapp-group {
            background: #128C7E;
            color: var(--white);
        }

        .contact-btn.instagram {
            background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
            color: var(--white);
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: var(--white);
            text-align: center;
            padding: 2rem 0;
            font-size: 0.95rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            nav {
                gap: 1rem;
                font-size: 0.9rem;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text {
                text-align: center;
            }

            .hero-image {
                order: 0;
            }

            .hero-image img,
            .hero-image video {
                margin: 0 auto;
                width: 300px;
                height: 300px;
                display: block;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero .subheadline {
                font-size: 1.1rem;
            }

            .about-circle-image {
                width: 200px;
                height: 200px;
            }

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

            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .btn {
                width: 100%;
            }

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

            .services-grid .service-card:nth-child(n) {
                grid-column: auto;
            }

            .events-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Accordion Cards */
        .accordion-card {
            padding: 0;
            overflow: hidden;
        }

        .accordion-header {
            cursor: pointer;
            padding: 2rem;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
        }

        .accordion-header:hover .accordion-icon,
        .accordion-open .accordion-icon {
            background: var(--primary);
            color: var(--white);
        }

        .accordion-title-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .accordion-title-row h3 {
            margin-bottom: 0.3rem;
        }

        .service-subtitle {
            font-size: 0.95rem;
            color: var(--text-light);
            margin: 0;
        }

        .accordion-icon {
            flex-shrink: 0;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 2px solid var(--primary);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 300;
            transition: all 0.3s;
            line-height: 1;
        }

        /* Accordion uses CSS class toggle — no JS inline styles needed */
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s ease;
        }

        .accordion-open .accordion-content {
            max-height: 1200px;
        }

        .accordion-content-inner {
            padding: 0 2rem 2rem;
        }

        .accordion-intro {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.2rem;
            font-size: 1rem;
        }

        .accordion-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            text-align: right;
        }

        .accordion-list li {
            color: var(--text-light);
            line-height: 1.6;
            padding-right: 1rem;
            border-right: 3px solid var(--primary);
            font-size: 0.97rem;
        }

        .accordion-list li strong {
            color: var(--text-dark);
        }

        .accordion-section-title {
            font-weight: 600;
            color: var(--text-dark);
            margin: 1.2rem 0 0.6rem;
            font-size: 1rem;
        }

        /* Coming soon cards */
        .service-card-coming-soon {
            opacity: 0.75;
            text-align: center;
            padding: 2rem;
        }

        .coming-soon-label {
            color: var(--primary);
            font-style: italic;
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }

        /* About person title - allow multi-line */
        .about-person-title {
            font-size: 0.95rem;
            max-width: 200px;
            margin: 0 auto;
        }

        /* Gallery Section */
        .gallery {
            background: var(--white);
            padding-bottom: 3rem;
        }

        .gallery .section-title {
            margin-bottom: 2rem;
        }

        .gallery-carousel {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 0.5rem 2rem 1rem;
            direction: ltr; /* keep scroll direction left-to-right */
        }

        .gallery-carousel::-webkit-scrollbar { display: none; }

        .gallery-item {
            flex: 0 0 calc(30% - 0.5rem);
            scroll-snap-align: start;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 3 / 4;
        }

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

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

        .gallery-video video,
        .gallery-video iframe {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Dots */
        .gallery-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .gallery-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            border: none;
            background: #ddd;
            cursor: pointer;
            padding: 0;
            transition: background 0.3s, transform 0.3s;
        }

        .gallery-dot.active {
            background: var(--primary);
            transform: scale(1.35);
        }

        @media (max-width: 768px) {
            .gallery-item { flex: 0 0 calc(70% - 0.5rem); }
        }

        @media (max-width: 480px) {
            .gallery-item { flex: 0 0 calc(85% - 0.5rem); }
        }

        @media (max-width: 480px) {
            .logo img {
                height: 85px;
            }

            .header-content {
                justify-content: center;
            }

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

            nav {
                display: none;
            }

            .hero h1 {
                font-size: 1.7rem;
            }

            .hero-content {
                gap: 2rem;
            }

            .hero-image img,
            .hero-image video {
                width: 250px;
                height: 250px;
            }
        }
