/* ── RESET & BASE ── */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --blush:    #FCEBE5;
            --rose:     #C48A8A;
            --dark:     hsl(0, 27%, 8%);
            --grey:     hsl(0, 0%, 40%);
            --light:    hsl(0, 0%, 100%);
            --card-bg:  hsl(0, 64%, 89%);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: "Poppins", sans-serif;
            background: var(--light);
            color: var(--dark);
        }

        /* ── HEADER (mirrors main site) ── */
        .header {
            background: hsl(0, 0%, 100%);
            padding: 0 35px;
            position: sticky;
            top: 0;
            z-index: 900;
            transition: box-shadow 0.3s ease;
        }

        .header.scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 0 30px;
        }

        .header.scrolled .navbar { padding: 8px 15px; }
        .header.scrolled .navbar img { height: 50px; }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
        }

        .navbar img { height: 65px; }

        nav ul {
            display: flex;
            align-items: center;
            gap: 50px;
            list-style: none;
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            font-family: "Poppins";
            font-size: 16px;
        }

        nav a:hover {
            text-decoration: underline;
            text-underline-offset: 5px;
            text-decoration-thickness: 2px;
        }

        nav .contact-link { 
            display: none; 
        }

        nav .mobile-only {
            display: none;
        }

        .btn-contact {
            background: var(--dark);
            color: var(--light);
            padding: 8px 26px;
            border: none;
            cursor: pointer;
            font-family: "Poppins";
            font-size: 15px;
            text-transform: uppercase;
            text-decoration: none;
            transition: 0.3s ease-in-out;
        }

        .btn-contact:hover {
            background: var(--rose);
            box-shadow: 0 10px 28px rgba(196,138,138,0.35);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
            box-shadow: none;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: var(--dark);
            transition: 0.3s ease;
        }

        /* ── HERO BANNER ── */
        .page-hero {
            background: var(--blush);
            padding: 100px 120px 80px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::after {
            content: "SERVICES";
            position: absolute;
            right: -20px;
            bottom: -30px;
            font-family: "Playfair Display";
            font-size: 180px;
            font-weight: 600;
            color: rgba(196,138,138,0.12);
            line-height: 1;
            pointer-events: none;
            white-space: nowrap;
        }

        .hero-eyebrow {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .hero-eyebrow span {
            display: block;
            width: 40px;
            height: 1px;
            background: var(--rose);
        }

        .hero-eyebrow p {
            font-family: "Poppins";
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--rose);
        }

        .page-hero h1 {
            font-family: "Playfair Display";
            font-size: 72px;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.1;
            margin-bottom: 20px;
            max-width: 700px;
        }

        .page-hero p {
            font-size: 17px;
            color: var(--grey);
            line-height: 1.8;
            max-width: 560px;
        }

        /* Sale Promo Section */

        .sale-promo {
            background-color: #ffffff;
            padding: 70px 120px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        .sale-promo-left {
            flex: 1;
        }

        .sale-promo-eyebrow {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #C48A8A;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sale-promo-eyebrow::before {
            content: "";
            width: 30px;
            height: 1.5px;
            background: #C48A8A;
            display: inline-block;
        }

        .sale-promo-left h2 {
            font-family: "Playfair Display", serif;
            font-size: 40px;
            font-weight: 500;
            color: #1a0a06;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .sale-promo-left p {
            font-size: 15px;
            color: #5a3329;
            line-height: 1.75;
            margin-bottom: 8px;
        }

        .sale-code-note {
            font-size: 13px;
            color: #7a4a3a;
            margin-bottom: 28px;
        }

        .btn-sale {
            display: inline-block;
            background: #1a0a06;
            color: #ffffff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 14px 28px;
            transition: background 0.3s ease;
            margin-top: 10px;   
        }

        .btn-sale:hover {
            background: #C48A8A;
        }

        /* Responsive */

        @media (max-width: 1024px) {
            .sale-promo {
                padding: 60px 30px;
                gap: 40px;
            }

            .sale-promo-left h2 {
                font-size: 32px;
            }
        }

        /* ── SECTION WRAPPER ── */
        .section {
            padding: 100px 120px;
        }

        .section-alt { background: var(--blush); }
        .section-dark { background: var(--dark); color: var(--light); }

        .section-label {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 16px;
        }

        .section-label span {
            display: block;
            width: 40px;
            height: 1px;
            background: var(--rose);
        }

        .section-label p {
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--rose);
        }

        .section-title {
            font-family: "Playfair Display";
            font-size: 46px;
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .section-dark .section-title { color: var(--light); }

        .section-sub {
            font-size: 16px;
            color: var(--grey);
            line-height: 1.8;
            max-width: 520px;
            margin-bottom: 60px;
        }

        .section-dark .section-sub { color: hsl(0,0%,65%); }

        /* ── NAIL SERVICES ── */
        .services-intro {
            /*display: flex;*/
            display: none;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
        }

        .services-intro > div:first-child { max-width: 550px; }

        .booking-nudge {
            text-align: right;
        }

        .booking-nudge p {
            font-size: 14px;
            color: var(--grey);
            margin-bottom: 12px;
        }

        /* Pricing grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            background: hsl(0,0%,88%);
            border: 2px solid hsl(0,0%,88%);
        }

        .pricing-card {
            background: var(--light);
            padding: 40px 36px;
            position: relative;
            transition: 0.3s ease;
        }

        .pricing-card:hover { background: var(--blush); }

        .pricing-tag {
            display: inline-block;
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: var(--rose);
            color: var(--light);
            padding: 4px 12px;
            margin-bottom: 20px;
        }

        .pricing-card h3 {
            font-family: "Playfair Display";
            font-size: 26px;
            font-weight: 500;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .pricing-card.featured h3 { color: var(--light); }

        .pricing-card .desc {
            font-size: 14px;
            color: var(--grey);
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .pricing-card.featured .desc { color: hsl(0,0%,65%); }

        .price-row {
            display: flex;
            align-items: baseline;
            gap: 6px;
            margin-bottom: 24px;
        }

        .price-row .currency { font-size: 16px; color: var(--rose); font-weight: 500; }

        .price-row .amount {
            font-family: "Playfair Display";
            font-size: 48px;
            font-weight: 600;
            color: var(--dark);
            line-height: 1;
        }

        .pricing-card.featured .amount { color: var(--light); }

        .price-row .suffix { font-size: 13px; color: var(--grey); }

        .pricing-card ul {
            list-style: none;
            border-top: 1px solid hsl(0,0%,90%);
            padding-top: 20px;
        }

        .pricing-card.featured ul { border-color: rgba(255,255,255,0.1); }

        .pricing-card ul li {
            font-size: 14px;
            color: var(--grey);
            padding: 8px 0;
            border-bottom: 1px solid hsl(0,0%,95%);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .pricing-card.featured ul li {
            color: hsl(0,0%,70%);
            border-color: rgba(255,255,255,0.07);
        }

        .pricing-card ul li span {
            font-family: "Playfair Display";
            font-size: 15px;
            color: var(--dark);
            font-weight: 500;
        }

        .pricing-card.featured ul li span { color: var(--light); }

        .btn-book {
            display: inline-block;
            background: var(--dark);
            color: var(--light);
            border: none;
            cursor: pointer;
            padding: 15px 25px;
            font-size: 15px;
            text-transform: uppercase;
            font-family: "Poppins";
            transition: 0.3s ease;
            text-decoration: none;
            margin-top: 28px;
            width: 100%;
            text-align: center;
        }

        .btn-book:hover {
            background: var(--rose);
            box-shadow: 0 10px 28px rgba(196,138,138,0.35);
        }

        /* ── NAIL COURSE ── */
        .course-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .course-visual {
            position: relative;
        }

        .course-visual img {
            width: 100%;
            display: block;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        /* ── COURSE SLIDESHOW ── */
        .course-slideshow {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .course-slideshow .slide {
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .course-slideshow .slide.active {
            opacity: 1;
            position: relative; /* keeps the container height */
        }

        .slide-dots {
            position: absolute;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .dot.active {
            background: var(--light);
        }

        .course-badge {
            position: absolute;
            bottom: -25px;
            right: -25px;
            width: 120px;
            height: 120px;
            background: var(--rose);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--light);
            text-align: center;
            box-shadow: 0 8px 24px rgba(196,138,138,0.5);
        }

        .course-badge strong {
            font-family: "Playfair Display";
            font-size: 26px;
            line-height: 1;
        }

        .course-badge span {
            font-size: 10px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-top: 4px;
        }

        /*.course-content {}*/

        .course-content .section-title { margin-bottom: 20px; }

        .course-content p {
            font-size: 15px;
            color: var(--grey);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .course-includes {
            list-style: none;
            margin-bottom: 36px;
        }

        .course-includes li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid hsl(0,0%,90%);
            font-size: 14px;
            color: var(--dark);
        }

        .course-includes li:first-child { border-top: 1px solid hsl(0,0%,90%); }

        .check {
            width: 20px;
            height: 20px;
            background: var(--rose);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .check::after {
            content: "✓";
            color: var(--light);
            font-size: 11px;
            font-weight: 700;
        }

        .course-price-box {
            background: var(--blush);
            padding: 28px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .course-price-box p {
            font-size: 13px;
            color: var(--grey);
            margin: 0;
        }

        .course-price-box strong {
            font-family: "Playfair Display";
            font-size: 36px;
            color: var(--dark);
        }

        .btn-course {
            display: inline-block;
            background: var(--dark);
            color: var(--light);
            padding: 15px 30px;
            font-size: 15px;
            text-transform: uppercase;
            font-family: "Poppins";
            text-decoration: none;
            transition: 0.3s ease;
        }

        .btn-course:hover {
            background: var(--rose);
            box-shadow: 0 10px 28px rgba(196,138,138,0.35);
        }

        /* ── MERCHANDISE ── */
        .merch-intro {
            max-width: 560px;
            margin-bottom: 60px;
        }

        .merch-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 50px;
        }

        .merch-card {
            background: var(--light);
            overflow: hidden;
            transition: 0.3s ease;
            position: relative;
        }

        .merch-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }

        .merch-img-wrap {
            aspect-ratio: 3/4;
            background: var(--blush);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* Decorative product placeholder icons */
        .merch-icon {
            font-size: 64px;
            line-height: 1;
            opacity: 0.4;
        }

        .merch-overlay {
            position: absolute;
            inset: 0;
            background: rgba(26,15,15,0.0);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            transition: 0.3s ease;
        }

        .merch-card:hover .merch-overlay {
            background: rgba(26,15,15,0.35);
        }

        .merch-overlay a {
            display: inline-block;
            background: var(--light);
            color: var(--dark);
            padding: 10px 18px;
            font-size: 12px;
            text-transform: uppercase;
            font-family: "Poppins";
            text-decoration: none;
            opacity: 0;
            transform: translateY(10px);
            transition: 0.3s ease;
        }

        .merch-card:hover .merch-overlay a {
            opacity: 1;
            transform: translateY(0);
        }

        .merch-info {
            padding: 18px 16px;
        }

        .merch-info h4 {
            font-family: "Playfair Display";
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 6px;
        }

        .merch-info p {
            font-size: 12px;
            color: var(--grey);
            margin-bottom: 10px;
        }

        .merch-info .merch-price {
            font-family: "Playfair Display";
            font-size: 20px;
            color: var(--dark);
        }

        /* ── FAQ / ADD-ONS ── */
        .addons-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            background: hsl(0,0%,88%);
            border: 2px solid hsl(0,0%,88%);
            margin-top: 40px;
        }

        .addon-card {
            background: var(--light);
            padding: 32px 28px;
            transition: 0.3s ease;
        }

        .addon-card:hover { background: var(--blush); }

        .addon-card .num {
            font-family: "Playfair Display";
            font-size: 48px;
            font-weight: 300;
            color: hsl(0,0%,88%);
            line-height: 1;
            margin-bottom: 16px;
        }

        .addon-card h4 {
            font-family: "Playfair Display";
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .addon-card p {
            font-size: 14px;
            color: var(--grey);
            line-height: 1.7;
        }

        /* ── BOOK CTA STRIP ── */
        .cta-strip {
            background: var(--blush);
            padding: 80px 120px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .cta-strip h2 {
            font-family: "Playfair Display";
            font-size: 48px;
            color: var(--dark);
            font-weight: 500;
            max-width: 500px;
            line-height: 1.1;
        }

        .cta-strip p {
            font-size: 15px;
            color: hsl(0, 0%, 40%);
            margin-top: 12px;
        }

        .btn-cta-dark {
            display: inline-block;
            background: var(--dark);
            color: hsl(0, 0%, 100%);
            padding: 18px 36px;
            font-size: 15px;
            text-transform: uppercase;
            font-family: "Poppins";
            text-decoration: none;
            transition: 0.3s ease;
            flex-shrink: 0;
            font-weight: 500;
        }

        .btn-cta-dark:hover {
            background: var(--rose);
            box-shadow: 0 10px 28px rgba(196,138,138,0.35);
        }

        /* ── FOOTER ── */
        .footer {
            background: var(--dark);
            color: hsl(0, 0%, 80%);
            padding: 60px 8% 20px;
            font-family: 'Poppins';
            font-size: 14px;
        }

        .footer-container {
            display: flex;
            gap: 50px;
        }

        .col-brand { width: 35%; }
        .col-brand .logo img { width: 150px; }
        .col-brand p { line-height: 1.6; font-size: 13px; color: hsl(0,0%,70%); }

        .col-brand .socials { display: flex; margin-top: 15px; }
        .col-brand .socials img {
            width: 25px; height: 25px; padding: 3px;
            border-radius: 5px; background-color: var(--light);
        }
        .col-brand .socials a { margin-right: 10px; }

        .footer-container h3 {
            color: var(--light);
            font-family: "Poppins";
            font-weight: 400;
            margin-bottom: 10px;
            font-size: 19px;
        }

        .footer-container ul { list-style: none; padding: 0; }
        .footer-container ul li { margin-bottom: 10px; font-size: 14px; }
        .footer-container ul li a { text-decoration: none; color: hsl(0,0%,70%); transition: 0.3s; }
        .footer-container ul li a:hover { color: var(--light); }
        .hours span { color: hsl(0,0%,70%); }

        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 15px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            font-size: 13px;
        }

        .footer-bottom .footer-links {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-links a { margin-left: 15px; color: hsl(0,0%,70%); text-decoration: none; }
        .footer-links a:hover { color: var(--light); }

        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            z-index: 1000;
        }

        .whatsapp-float img {
            width: 100%;
            height: 100%;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            transition: 0.3s ease-in-out;
            border-radius: 5px;
        }

        .whatsapp-float img:hover { scale: 1.05; }

        /* ── ANIMATIONS ── */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── TABLET ── */
        @media (max-width: 1024px) {
            .page-hero { padding: 80px 60px 60px; }
            .page-hero h1 { font-size: 54px; }
            .page-hero::after { font-size: 120px; }
            .breadcrumb { padding: 16px 60px; }
            .section { padding: 80px 60px; }
            .merch-cta { padding: 50px 60px; }
            .cta-strip { padding: 60px 60px; }
            .pricing-grid { grid-template-columns: 1fr 1fr; }
            .merch-grid { grid-template-columns: repeat(2, 1fr); }
            .course-layout { grid-template-columns: 1fr; gap: 50px; }
            .course-visual { max-width: 500px; }
        }

        /* ── MOBILE ── */
        @media (max-width: 768px) {
            .header { padding: 0 15px; }
            .navbar { padding: 10px 5px; }
            .navbar img { height: 50px; }

            nav ul {
                flex-direction: column;
                gap: 0;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--light);
                z-index: 999;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
            }

            nav.open ul {
                max-height: 400px;
                opacity: 1;
                padding: 10px 0;
            }

            nav ul li a {
                display: block;
                padding: 14px 25px;
                border-bottom: 1px solid hsl(0, 0%, 93%);
            }

            nav .contact-link { 
                display: block; 
            }

            nav .mobile-only {
                display: block;
            }

            .hamburger { 
                display: flex; 
            }

            .header .btn-contact { 
                display: none; 
            }

            .page-hero { 
                padding: 60px 25px 50px; 
            }

            .page-hero h1 { 
                font-size: 38px; 
            }

            .page-hero p { 
                font-size: 15px; 
            }

            .page-hero::after { 
                display: none; 
            }

            .breadcrumb { 
                padding: 12px 25px; 
            }

            .section { 
                padding: 60px 25px; 
            }

            .services-intro { 
                flex-direction: column; 
                gap: 20px; 
            }

            .booking-nudge { 
                text-align: center;
                width: 100%; 
            }

            .btn-enquire {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .pricing-grid { grid-template-columns: 1fr; }
            .addons-grid { grid-template-columns: 1fr; }
            .merch-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

            .merch-cta {
                padding: 50px 25px;
                flex-direction: column;
                gap: 20px;
            }

            .merch-cta h3 { font-size: 28px; }

            .cta-strip {
                flex-direction: column;
                padding: 60px 25px;
                text-align: center;
            }

            .cta-strip h2 { font-size: 34px; }

            .course-badge { width: 90px; height: 90px; bottom: -15px; right: -10px; }
            .course-badge strong { font-size: 20px; }

            .footer { padding: 50px 25px 20px; }
            .footer-container { flex-direction: column; gap: 35px; }
            .col-brand { width: 100%; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
            .footer-links { display: flex; flex-direction: column; justify-content: center; align-items: center; }
        }

        @media (max-width: 428px) {
            .merch-grid { grid-template-columns: 1fr; }
            .page-hero h1 { font-size: 30px; }
        }