        /* ============================================
           GLAMOUR BEAUTY STUDIO - BEAUTY SALON
           Elegant, Feminine, Luxurious Style
           ============================================ */

        :root {
            /* Colors - Soft Feminine Palette */
            --rose-gold: #c4a47c;
            --rose-gold-light: #d4b896;
            --rose-gold-dark: #a68a5b;
            --blush: #f5e6e0;
            --blush-dark: #edddd5;
            --mauve: #b88b8b;
            --cream: #fdfbf9;
            --charcoal: #2d2926;
            --charcoal-light: #4a4543;
            --white: #ffffff;
            --black: #1a1a1a;

            /* Typography */
            --font-heading: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Montserrat', -apple-system, sans-serif;

            /* Spacing */
            --section-padding: 100px;
            --container-max: 1200px;

            /* Transitions */
            --transition: 0.3s ease;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--charcoal);
            background-color: var(--cream);
        }

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

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

        ul, ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

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

        /* ============================================
           TYPOGRAPHY
           ============================================ */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 600;
            line-height: 1.2;
            color: var(--charcoal);
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
        h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-label {
            display: inline-block;
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: var(--rose-gold);
            margin-bottom: 16px;
        }

        .section-header h2 {
            margin-bottom: 20px;
        }

        .section-header p {
            color: var(--charcoal-light);
            font-size: 1.125rem;
            font-weight: 300;
        }

        /* ============================================
           BUTTONS
           ============================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 36px;
            font-family: var(--font-body);
            font-weight: 500;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            border-radius: 0;
            transition: all var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--rose-gold);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--rose-gold-dark);
        }

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

        .btn-outline:hover {
            background: var(--rose-gold);
            color: var(--white);
        }

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

        .btn-white:hover {
            background: var(--blush);
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all var(--transition);
        }

        .navbar.scrolled {
            background: rgba(253, 251, 249, 0.98);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

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

        .logo {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--white);
            letter-spacing: 0.05em;
        }

        .navbar.scrolled .logo {
            color: var(--charcoal);
        }

        .logo span {
            color: var(--rose-gold);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-link {
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            position: relative;
        }

        .navbar.scrolled .nav-link {
            color: var(--charcoal);
        }

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

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

        .nav-cta {
            padding: 12px 28px;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--white);
            transition: all var(--transition);
        }

        .navbar.scrolled .menu-toggle span {
            background: var(--charcoal);
        }

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

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&q=80') center/cover no-repeat;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(45,41,38,0.4), rgba(45,41,38,0.6));
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-subtitle {
            font-family: var(--font-body);
            font-size: 0.875rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.4em;
            color: var(--rose-gold-light);
            margin-bottom: 24px;
        }

        .hero h1 {
            color: var(--white);
            margin-bottom: 24px;
            font-weight: 500;
        }

        .hero-description {
            font-size: 1.125rem;
            font-weight: 300;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: var(--white);
            opacity: 0.7;
            animation: bounce 2s infinite;
        }

        .scroll-indicator span {
            font-size: 0.625rem;
            text-transform: uppercase;
            letter-spacing: 0.3em;
        }

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

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

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-images {
            position: relative;
        }

        .about-image-main {
            width: 85%;
            position: relative;
            z-index: 1;
        }

        .about-image-main img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
        }

        .about-image-secondary {
            position: absolute;
            bottom: -40px;
            right: 0;
            width: 55%;
            border: 8px solid var(--white);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .about-image-secondary img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
        }

        .about-badge {
            position: absolute;
            top: 40px;
            right: 40px;
            width: 110px;
            height: 110px;
            background: var(--rose-gold);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-align: center;
            z-index: 2;
        }

        .about-badge-number {
            font-family: var(--font-heading);
            font-size: 2.25rem;
            font-weight: 600;
            line-height: 1;
        }

        .about-badge-text {
            font-size: 0.625rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .about-text .section-label {
            text-align: left;
        }

        .about-text h2 {
            margin-bottom: 24px;
        }

        .about-text p {
            color: var(--charcoal-light);
            margin-bottom: 20px;
            font-weight: 300;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .about-feature-icon {
            width: 24px;
            height: 24px;
            color: var(--rose-gold);
        }

        .about-feature span {
            font-size: 0.9375rem;
            font-weight: 500;
        }

        /* ============================================
           SERVICES SECTION
           ============================================ */
        .services {
            background: var(--blush);
        }

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

        .service-card {
            background: var(--white);
            padding: 40px 30px;
            text-align: center;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

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

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

        .service-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--blush);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            transition: all var(--transition);
        }

        .service-card:hover .service-icon {
            background: var(--rose-gold);
        }

        .service-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--rose-gold);
            fill: none;
            stroke-width: 1.5;
            transition: all var(--transition);
        }

        .service-card:hover .service-icon svg {
            stroke: var(--white);
        }

        .service-card h4 {
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--charcoal-light);
            font-size: 0.9375rem;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .service-price {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--rose-gold);
        }

        .service-price span {
            font-size: 0.875rem;
            font-weight: 400;
            color: var(--charcoal-light);
        }

        /* ============================================
           GALLERY SECTION
           ============================================ */
        .gallery {
            background: var(--charcoal);
            padding: var(--section-padding) 0;
        }

        .gallery .section-header h2,
        .gallery .section-header p {
            color: var(--white);
        }

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

        .gallery-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
        }

        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
        }

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

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

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(196, 164, 124, 0.9), rgba(196, 164, 124, 0.7));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity var(--transition);
        }

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

        .gallery-overlay svg {
            width: 40px;
            height: 40px;
            stroke: var(--white);
            fill: none;
            stroke-width: 1.5;
            margin-bottom: 10px;
        }

        .gallery-overlay span {
            color: var(--white);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
        }

        /* ============================================
           TEAM SECTION
           ============================================ */
        .team {
            background: var(--white);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .team-member {
            text-align: center;
        }

        .team-photo {
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .team-photo img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            transition: transform var(--transition);
        }

        .team-member:hover .team-photo img {
            transform: scale(1.05);
        }

        .team-social {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(45,41,38,0.8), transparent);
            padding: 30px 20px 20px;
            display: flex;
            justify-content: center;
            gap: 15px;
            opacity: 0;
            transform: translateY(10px);
            transition: all var(--transition);
        }

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

        .team-social a {
            width: 36px;
            height: 36px;
            background: var(--rose-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
        }

        .team-social a:hover {
            background: var(--white);
        }

        .team-social svg {
            width: 16px;
            height: 16px;
            fill: var(--white);
            transition: all var(--transition);
        }

        .team-social a:hover svg {
            fill: var(--rose-gold);
        }

        .team-name {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            margin-bottom: 4px;
        }

        .team-role {
            font-size: 0.875rem;
            color: var(--rose-gold);
            font-weight: 500;
        }

        /* ============================================
           TESTIMONIALS SECTION
           ============================================ */
        .testimonials {
            background: var(--blush);
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial-item {
            padding: 40px;
        }

        .testimonial-stars {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 24px;
        }

        .testimonial-stars svg {
            width: 20px;
            height: 20px;
            fill: var(--rose-gold);
        }

        .testimonial-quote {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-style: italic;
            color: var(--charcoal);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-info {
            text-align: left;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--charcoal);
        }

        .testimonial-role {
            font-size: 0.875rem;
            color: var(--charcoal-light);
        }

        /* ============================================
           BOOKING SECTION
           ============================================ */
        .booking {
            background: linear-gradient(rgba(45,41,38,0.88), rgba(45,41,38,0.88)),
                        url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=1920&q=80') center/cover no-repeat fixed;
            color: var(--white);
        }

        .booking .section-header h2,
        .booking .section-header p {
            color: var(--white);
        }

        .booking-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .booking-info h3 {
            color: var(--white);
            margin-bottom: 20px;
        }

        .booking-info p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 30px;
            font-weight: 300;
        }

        .booking-benefits {
            margin-bottom: 30px;
        }

        .booking-benefit {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .booking-benefit svg {
            width: 24px;
            height: 24px;
            stroke: var(--rose-gold);
            fill: none;
            stroke-width: 2;
            flex-shrink: 0;
        }

        .booking-benefit span {
            color: rgba(255,255,255,0.9);
        }

        .booking-form {
            background: rgba(255,255,255,0.05);
            padding: 40px;
            backdrop-filter: blur(10px);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 8px;
            color: var(--rose-gold);
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 16px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 0.9375rem;
            transition: all var(--transition);
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--rose-gold);
            background: rgba(255,255,255,0.12);
        }

        .form-select {
            cursor: pointer;
        }

        .form-select option {
            background: var(--charcoal);
            color: var(--white);
        }

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

        .form-submit {
            width: 100%;
            margin-top: 10px;
        }

        /* ============================================
           PRICING SECTION
           ============================================ */
        .pricing {
            background: var(--cream);
        }

        .pricing-table {
            max-width: 900px;
            margin: 0 auto;
            background: var(--white);
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .pricing-category {
            padding: 30px 40px;
            border-bottom: 1px solid var(--blush);
        }

        .pricing-category:last-child {
            border-bottom: none;
        }

        .pricing-category-title {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            color: var(--rose-gold);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--blush);
        }

        .pricing-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
        }

        .pricing-item-name {
            font-weight: 500;
        }

        .pricing-item-dots {
            flex: 1;
            border-bottom: 1px dotted var(--blush-dark);
            margin: 0 15px;
        }

        .pricing-item-price {
            font-family: var(--font-heading);
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--charcoal);
        }

        /* ============================================
           CONTACT SECTION
           ============================================ */
        .contact {
            background: var(--blush);
        }

        .contact-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .contact-card {
            text-align: center;
            padding: 40px 30px;
            background: var(--white);
            transition: all var(--transition);
        }

        .contact-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: var(--rose-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .contact-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--white);
            fill: none;
            stroke-width: 1.5;
        }

        .contact-card h4 {
            margin-bottom: 12px;
        }

        .contact-card p {
            color: var(--charcoal-light);
            line-height: 1.8;
            font-weight: 300;
        }

        .contact-card a {
            color: var(--rose-gold);
            font-weight: 500;
        }

        .contact-card a:hover {
            text-decoration: underline;
        }

        /* ============================================
           INSTAGRAM SECTION
           ============================================ */
        .instagram {
            padding: 60px 0;
            background: var(--white);
            text-align: center;
        }

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

        .instagram-header h3 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .instagram-header svg {
            width: 28px;
            height: 28px;
            stroke: var(--rose-gold);
            fill: none;
            stroke-width: 1.5;
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 0;
        }

        .instagram-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1;
        }

        .instagram-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .instagram-overlay {
            position: absolute;
            inset: 0;
            background: rgba(196, 164, 124, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity var(--transition);
        }

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

        .instagram-overlay svg {
            width: 32px;
            height: 32px;
            stroke: var(--white);
            fill: none;
            stroke-width: 1.5;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: var(--charcoal);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.6);
            margin-bottom: 20px;
            font-weight: 300;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

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

        .footer-social a:hover {
            background: var(--rose-gold);
        }

        .footer-social svg {
            width: 18px;
            height: 18px;
            fill: var(--white);
        }

        .footer-column h4 {
            color: var(--white);
            font-family: var(--font-heading);
            font-size: 1.125rem;
            margin-bottom: 24px;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.6);
            font-weight: 300;
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.4);
            font-size: 0.875rem;
        }

        .footer-bottom a {
            color: var(--rose-gold);
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 992px) {
            :root {
                --section-padding: 80px;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .about-images {
                max-width: 500px;
                margin: 0 auto;
            }

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

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

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

            .booking-content {
                grid-template-columns: 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

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

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                max-width: 350px;
                height: 100vh;
                background: var(--charcoal);
                flex-direction: column;
                justify-content: center;
                gap: 30px;
                transition: right var(--transition);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu .nav-link {
                color: var(--white);
            }

            .menu-toggle {
                display: flex;
                z-index: 1001;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 60px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

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

            .form-row {
                grid-template-columns: 1fr;
            }

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

            .gallery-item:nth-child(1) {
                grid-column: span 1;
                grid-row: span 1;
            }

            .team-grid {
                grid-template-columns: 1fr;
                max-width: 300px;
                margin: 0 auto;
            }

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

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

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .booking-form {
                padding: 30px 20px;
            }

            .about-badge {
                width: 90px;
                height: 90px;
                right: 20px;
                top: 20px;
            }

            .about-badge-number {
                font-size: 1.75rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .pricing-category {
                padding: 20px;
            }

            .pricing-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .pricing-item-dots {
                display: none;
            }
        }

/* ============================================
   PAGE BANNER (inner pages)
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, var(--blush) 0%, var(--blush-dark) 100%);
    padding: 200px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&q=80') center/cover;
    opacity: 0.18;
}
.page-banner > .container { position: relative; z-index: 1; }
.page-banner .section-label {
    color: var(--rose-gold-dark);
    font-family: var(--font-body, sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 18px;
    display: inline-block;
}
.page-banner h1 {
    color: var(--charcoal);
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 18px;
    font-weight: 400;
}
.page-banner h1 em {
    font-style: italic;
    color: var(--rose-gold);
}
.page-banner p {
    color: var(--charcoal-light);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}
.page-banner::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--rose-gold);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq { background: var(--cream); }
.faq-list { max-width: 850px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    margin-bottom: 18px;
    border-radius: 4px;
    border: 1px solid var(--blush-dark);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 30px;
    font-size: 1.1rem;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-weight: 500;
}
.faq-question::after {
    content: '+';
    color: var(--rose-gold);
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform var(--transition);
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    padding: 0 30px 26px;
    color: var(--charcoal-light);
    font-style: italic;
}
.faq-item.active .faq-answer { max-height: 400px; }

/* always-show navbar on inner pages */
.navbar.scrolled { background: rgba(45,41,38,0.97); backdrop-filter: blur(10px); }
