        /* ===== CSS VARIABLES ===== */
        :root {
            --teal: #4ECDC4;
            --teal-dark: #3BB8B0;
            --yellow: #FFD93D;
            --yellow-dark: #F5C800;
            --green: #6BCB77;
            --pink: #FF6B9D;
            --coral: #FF8A5B;
            --cream: #FDF8F3;
            --cream-dark: #F5EDE4;
            --charcoal: #2C3E50;
            --charcoal-light: #546E7A;
            --white: #FFFFFF;
            --shadow-soft: 0 4px 20px rgba(44, 62, 80, 0.08);
            --shadow-medium: 0 8px 30px rgba(44, 62, 80, 0.12);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', sans-serif;
            font-size: 18px;
            line-height: 1.7;
            color: var(--charcoal);
            background: var(--cream);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Baloo 2', cursive;
            line-height: 1.2;
            font-weight: 700;
        }

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

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

        /* ===== UTILITIES ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            text-align: center;
            margin-bottom: 1rem;
            color: var(--charcoal);
        }

        .section-subtitle {
            text-align: center;
            color: var(--charcoal-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        /* Stitched border effect */
        .stitched {
            border: 3px dashed var(--teal);
            border-radius: var(--radius-lg);
        }

        /* ===== DECORATIVE ELEMENTS ===== */
        .star {
            position: absolute;
            width: 20px;
            height: 20px;
            pointer-events: none;
        }

        .star::before {
            content: '✦';
            font-size: 16px;
            color: var(--yellow);
        }

        .star.pink::before { color: var(--pink); }
        .star.teal::before { color: var(--teal); }
        .star.green::before { color: var(--green); }

        /* ===== NAVIGATION ===== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(253, 248, 243, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: var(--shadow-soft);
        }

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

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

        .logo-img {
            height: 55px;
            width: auto;
            object-fit: contain;
            mix-blend-mode: multiply;
        }

        .logo-lets { color: var(--coral); }
        .logo-sew { color: var(--green); }
        .logo-club { color: var(--teal); }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            font-weight: 600;
            color: var(--charcoal);
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--yellow);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

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

        .nav-cta {
            background: var(--teal);
            color: var(--white) !important;
            padding: 10px 24px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .nav-cta::after { display: none !important; }

        .nav-cta:hover {
            background: var(--teal-dark);
            transform: translateY(-2px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--charcoal);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            min-height: 100svh;
            display: flex;
            align-items: flex-end;
            padding: 0;
            position: relative;
            overflow: hidden;
            background: var(--charcoal);
            perspective: 1200px;
        }

        .hero-media {
            position: absolute;
            inset: 0;
            z-index: 0;
            transform-style: preserve-3d;
            will-change: transform;
        }

        .hero-media picture,
        .hero-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hero-veil {
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(180deg, rgba(44, 62, 80, 0.25) 0%, rgba(44, 62, 80, 0.15) 35%, rgba(44, 62, 80, 0.78) 100%),
                linear-gradient(90deg, rgba(44, 62, 80, 0.55) 0%, transparent 55%);
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 7rem 24px 3.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-content {
            max-width: 36rem;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 5.25rem);
            margin-bottom: 0.65rem;
            line-height: 0.95;
            letter-spacing: -0.02em;
            color: var(--white);
            text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
        }

        .hero h1 .highlight-teal { color: var(--teal); }
        .hero h1 .highlight-green { color: var(--green); }
        .hero h1 .highlight-pink { color: var(--pink); }

        .hero-tagline {
            font-size: clamp(1.15rem, 2.4vw, 1.45rem);
            color: var(--white);
            font-family: 'Baloo 2', cursive;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        .hero-description {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.88);
            margin-bottom: 1.75rem;
            max-width: 28rem;
            line-height: 1.55;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .hero .btn-primary {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
        }

        .hero-secondary-links {
            display: flex;
            gap: 1.25rem;
            flex-wrap: wrap;
            margin-top: 1.1rem;
            font-size: 0.95rem;
            font-weight: 700;
        }

        .hero-secondary-links a {
            color: rgba(255, 255, 255, 0.82);
            border-bottom: 2px solid rgba(78, 205, 196, 0.55);
            padding-bottom: 2px;
            transition: color 0.2s ease, border-color 0.2s ease;
        }

        .hero-secondary-links a:hover {
            color: var(--white);
            border-color: var(--yellow);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border-radius: 50px;
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-primary {
            background: var(--teal);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(78, 205, 196, 0.4);
        }

        .btn-primary:hover {
            background: var(--teal-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(78, 205, 196, 0.5);
        }

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

        .btn-secondary:hover {
            background: var(--charcoal);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* ===== STITCH CINEMA (full-page background layer) ===== */
        .stitch-cinema {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            display: grid;
            place-items: center;
            overflow: hidden;
            opacity: 0;
            transition: none;
        }

        .stitch-cinema-pin {
            width: min(920px, 92vw);
            height: min(62vh, 460px);
        }

        .stitch-stage {
            width: 100%;
            height: 100%;
            text-align: center;
        }

        .stitch-stage-kicker,
        .stitch-stage-caption {
            display: none;
        }

        .stitch-scene {
            position: relative;
            width: 100%;
            height: 100%;
            perspective: 1400px;
            perspective-origin: 50% 45%;
        }

        .fabric-product {
            position: absolute;
            inset: 4% 6% 8%;
            transform-style: preserve-3d;
            transform: rotateX(62deg) rotateZ(-8deg) scale(0.82);
            transform-origin: 50% 60%;
            will-change: transform, filter, opacity;
        }

        .fabric-face {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 28px;
            overflow: hidden;
            background:
                radial-gradient(ellipse at 22% 18%, rgba(255,255,255,0.75), transparent 42%),
                radial-gradient(ellipse at 80% 70%, rgba(78, 205, 196, 0.18), transparent 45%),
                repeating-linear-gradient(0deg, #f6eee5 0 3px, #ebe1d4 3px 6px),
                repeating-linear-gradient(90deg, #f8f1e8 0 3px, #efe5d8 3px 6px);
            border: 1px solid rgba(44, 62, 80, 0.08);
            box-shadow:
                0 40px 90px rgba(44, 62, 80, 0.18),
                0 10px 24px rgba(44, 62, 80, 0.1),
                inset 0 0 0 1px rgba(255,255,255,0.35);
            transform: translateZ(1px);
        }

        .fabric-face::after {
            content: '';
            position: absolute;
            inset: 16px;
            border: 1.5px dashed rgba(255, 107, 157, 0.28);
            border-radius: 20px;
            pointer-events: none;
            opacity: 0.35;
        }

        .fabric-edge {
            position: absolute;
            left: 4%;
            right: 4%;
            bottom: -10px;
            height: 18px;
            border-radius: 0 0 22px 22px;
            background: linear-gradient(180deg, #d9cbb8, #c9b8a2);
            transform: rotateX(90deg) translateZ(-8px);
            transform-origin: top center;
            opacity: 0.85;
        }

        .spool {
            position: absolute;
            left: 6%;
            top: 10%;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background:
                conic-gradient(from 0deg, #FF6B9D, #ff9fc0, #FF6B9D, #e25586, #FF6B9D);
            box-shadow: 0 10px 25px rgba(255, 107, 157, 0.35);
            z-index: 5;
            transform: translateZ(40px);
        }

        .spool::before {
            content: '';
            position: absolute;
            inset: 14px;
            border-radius: 50%;
            background: #f7efe6;
            box-shadow: inset 0 0 0 3px rgba(44, 62, 80, 0.08);
        }

        .stitch-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        .stitch-svg .lead-thread {
            fill: none;
            stroke: #FF6B9D;
            stroke-width: 3.4;
            stroke-linecap: round;
            filter: drop-shadow(0 0 4px rgba(255, 107, 157, 0.35));
        }

        .stitch-svg .stitch-outline {
            fill: none;
            stroke: #FF6B9D;
            stroke-width: 3.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .stitch-svg .stitch-fill { opacity: 0; }
        .stitch-svg .stitch-fill tspan:nth-child(1) { fill: #4ECDC4; }
        .stitch-svg .stitch-fill tspan:nth-child(2) { fill: #6BCB77; }
        .stitch-svg .stitch-fill tspan:nth-child(3) { fill: #FF6B9D; }

        #needle-group {
            filter: drop-shadow(0 2px 3px rgba(0,0,0,0.25));
        }

        .stitch-glow {
            position: absolute;
            inset: -20%;
            background: radial-gradient(circle at 50% 55%, rgba(255, 217, 61, 0.18), transparent 55%);
            opacity: 0;
            pointer-events: none;
            z-index: 0;
        }

        /* Let the background animation read through soft page surfaces */
        main,
        footer {
            position: relative;
            z-index: 1;
        }

        .easter-workshop,
        .about,
        .why-us,
        .learn,
        .pricing,
        .gallery,
        .contact {
            background-color: transparent !important;
            background-image: none !important;
        }

        .easter-workshop > .container,
        .about > .container,
        .why-us > .container,
        .learn > .container,
        .pricing > .container,
        .gallery > .container,
        .contact > .container {
            background: rgba(253, 248, 243, 0.72);
            border-radius: 28px;
            padding-top: 2.5rem;
            padding-bottom: 2.5rem;
            backdrop-filter: blur(2px);
        }

        .why-us > .container,
        .about > .container,
        .learn > .container {
            background: rgba(255, 255, 255, 0.78);
        }

        body {
            background:
                radial-gradient(ellipse at 70% 20%, rgba(78, 205, 196, 0.12), transparent 45%),
                radial-gradient(ellipse at 20% 80%, rgba(255, 107, 157, 0.08), transparent 40%),
                var(--cream);
        }

        @media (max-width: 700px) {
            .stitch-cinema-pin {
                width: 110vw;
                height: 46vh;
            }
            .spool { width: 42px; height: 42px; }
            .spool::before { inset: 11px; }
            .easter-workshop > .container,
            .about > .container,
            .why-us > .container,
            .learn > .container,
            .pricing > .container,
            .gallery > .container,
            .contact > .container {
                border-radius: 18px;
                background: rgba(253, 248, 243, 0.82);
            }
        }

        /* ===== DAY TIMELINE ===== */
        .day-timeline {
            margin: 1.75rem 0 0.5rem;
            display: grid;
            gap: 0.85rem;
        }

        .day-timeline h4 {
            font-size: 1.15rem;
            margin-bottom: 0.15rem;
        }

        .day-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.75rem;
            list-style: none;
            counter-reset: daystep;
        }

        .day-steps li {
            position: relative;
            padding: 0.9rem 0.85rem 0.95rem;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(78, 205, 196, 0.35);
            border-radius: var(--radius-md);
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--charcoal);
            line-height: 1.35;
        }

        .day-steps li span {
            display: block;
            font-size: 0.78rem;
            font-weight: 800;
            color: var(--teal-dark);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 0.25rem;
        }

        @media (max-width: 700px) {
            .day-steps { grid-template-columns: 1fr 1fr; }
        }

        /* ===== STICKY BOOK BAR ===== */
        .sticky-book-bar {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 980;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.85rem 1.1rem calc(0.85rem + env(safe-area-inset-bottom));
            background: rgba(44, 62, 80, 0.94);
            color: var(--white);
            box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.18);
            transform: translateY(110%);
            transition: transform 0.35s ease;
        }

        .sticky-book-bar.visible {
            transform: translateY(0);
        }

        .sticky-book-bar p {
            font-size: 0.92rem;
            font-weight: 700;
            line-height: 1.3;
            margin: 0;
        }

        .sticky-book-bar p small {
            display: block;
            font-weight: 600;
            opacity: 0.75;
            font-size: 0.8rem;
        }

        .sticky-book-bar .btn {
            padding: 12px 20px;
            font-size: 0.92rem;
            white-space: nowrap;
            flex-shrink: 0;
        }

        @media (min-width: 901px) {
            .sticky-book-bar { display: none; }
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            padding: 100px 0;
            background: var(--white);
            position: relative;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image-wrapper img {
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-medium);
        }

        .about-image-wrapper::after {
            content: '';
            position: absolute;
            bottom: -15px;
            right: -15px;
            width: 120px;
            height: 120px;
            background: var(--yellow);
            border-radius: var(--radius-lg);
            z-index: -1;
        }

        .about-content h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 1.5rem;
        }

        .about-content p {
            margin-bottom: 1.5rem;
            color: var(--charcoal-light);
        }

        .credentials-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .credential-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: var(--cream);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 2px solid var(--cream-dark);
        }

        .credential-badge .icon {
            width: 20px;
            height: 20px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 0.7rem;
        }

        /* ===== WHY CHOOSE US ===== */
        .why-us {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
            position: relative;
        }

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

        .feature-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
        }

        .feature-card:nth-child(1)::before { background: var(--teal); }
        .feature-card:nth-child(2)::before { background: var(--yellow); }
        .feature-card:nth-child(3)::before { background: var(--green); }
        .feature-card:nth-child(4)::before { background: var(--pink); }

        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .feature-card:nth-child(1) .feature-icon { background: rgba(78, 205, 196, 0.15); }
        .feature-card:nth-child(2) .feature-icon { background: rgba(255, 217, 61, 0.2); }
        .feature-card:nth-child(3) .feature-icon { background: rgba(107, 203, 119, 0.15); }
        .feature-card:nth-child(4) .feature-icon { background: rgba(255, 107, 157, 0.15); }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--charcoal);
        }

        .feature-card p {
            color: var(--charcoal-light);
            font-size: 1rem;
        }

        /* ===== WHAT KIDS LEARN ===== */
        .learn {
            padding: 100px 0;
            background: var(--white);
        }

        .learn-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .learn-list {
            list-style: none;
        }

        .learn-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1.25rem;
            background: var(--cream);
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
        }

        .learn-list li:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-soft);
        }

        .learn-list .check {
            width: 28px;
            height: 28px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .learn-list .text {
            font-weight: 600;
            color: var(--charcoal);
        }

        .learn-image {
            position: relative;
        }

        .learn-image img {
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-medium);
        }

        .learn-image::before {
            content: '';
            position: absolute;
            top: -15px;
            right: -15px;
            bottom: 15px;
            left: 15px;
            border: 4px dashed var(--green);
            border-radius: var(--radius-xl);
            z-index: -1;
        }

        /* ===== EASTER WORKSHOP ===== */
        .easter-workshop {
            padding: 90px 0;
            background: radial-gradient(1200px 500px at 20% 10%, rgba(255, 217, 61, 0.35) 0%, rgba(255, 217, 61, 0) 60%),
                        radial-gradient(900px 500px at 80% 20%, rgba(78, 205, 196, 0.30) 0%, rgba(78, 205, 196, 0) 60%),
                        linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
        }

        .easter-hero {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 2rem;
            align-items: start;
            margin-top: 2rem;
        }

        .easter-lede {
            background: rgba(255, 255, 255, 0.85);
            border: 2px solid rgba(78, 205, 196, 0.35);
            border-radius: var(--radius-xl);
            padding: 2rem;
            box-shadow: var(--shadow-soft);
            backdrop-filter: blur(6px);
        }

        .easter-lede h3 {
            font-family: 'Baloo 2', cursive;
            font-size: 2rem;
            color: var(--charcoal);
            margin-bottom: 0.75rem;
        }

        .easter-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin: 1rem 0 1.25rem;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 8px 12px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.9rem;
            border: 2px solid rgba(44, 62, 80, 0.10);
            background: var(--white);
            color: var(--charcoal);
            white-space: nowrap;
        }

        .chip.teal { border-color: rgba(78, 205, 196, 0.45); }
        .chip.yellow { border-color: rgba(255, 217, 61, 0.65); }
        .chip.pink { border-color: rgba(255, 107, 157, 0.45); }

        .easter-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
            margin-top: 1.25rem;
        }

        .easter-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            box-shadow: var(--shadow-soft);
            border: 2px solid rgba(44, 62, 80, 0.08);
        }

        .easter-card h4 {
            font-family: 'Baloo 2', cursive;
            font-size: 1.25rem;
            color: var(--charcoal);
            margin-bottom: 0.75rem;
        }

        .easter-list {
            list-style: none;
            display: grid;
            gap: 0.55rem;
            margin: 0;
            padding: 0;
        }

        .easter-list li {
            display: flex;
            gap: 0.6rem;
            align-items: flex-start;
            color: var(--charcoal);
            font-weight: 600;
        }

        .easter-list .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-top: 7px;
            flex-shrink: 0;
            background: var(--teal);
        }

        .dates-panel {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 2rem;
            box-shadow: var(--shadow-soft);
            border: 3px dashed rgba(255, 107, 157, 0.45);
        }

        .dates-panel h4 {
            font-family: 'Baloo 2', cursive;
            font-size: 1.4rem;
            color: var(--charcoal);
            margin-bottom: 0.9rem;
        }

        .date-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 10px 0;
            border-bottom: 1px solid rgba(44, 62, 80, 0.08);
            font-weight: 700;
            color: var(--charcoal);
        }

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

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.02em;
            border: 2px solid;
            white-space: nowrap;
        }

        .badge.soldout {
            background: rgba(255, 107, 157, 0.12);
            color: var(--pink);
            border-color: rgba(255, 107, 157, 0.45);
        }

        .badge.available {
            background: rgba(107, 203, 119, 0.12);
            color: var(--green);
            border-color: rgba(107, 203, 119, 0.45);
        }

        .badge.limited {
            background: rgba(255, 138, 91, 0.14);
            color: #B4531F;
            border-color: rgba(255, 138, 91, 0.5);
            white-space: normal;
            text-align: right;
        }

        .easter-cta {
            display: flex;
            gap: 0.75rem;
            align-items: center;
            margin-top: 1.25rem;
            flex-wrap: wrap;
        }

        .easter-cta .btn {
            min-width: 220px;
            justify-content: center;
        }

        .easter-cta-note {
            color: var(--charcoal-light);
            font-weight: 700;
            font-size: 0.95rem;
        }

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

        /* ===== PRICING ===== */
        .pricing {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
        }

        .pricing-card {
            max-width: 450px;
            margin: 0 auto;
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 3rem;
            text-align: center;
            box-shadow: var(--shadow-medium);
            position: relative;
            border: 4px solid var(--teal);
        }

        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--yellow);
            color: var(--charcoal);
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            white-space: nowrap;
        }

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

        .pricing-card h3 {
            font-size: 1.8rem;
            color: var(--charcoal);
            margin-bottom: 1rem;
        }

        .pricing-amount {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 4px;
            margin-bottom: 2rem;
        }

        .pricing-amount .currency {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--teal);
            margin-top: 8px;
        }

        .pricing-amount .price {
            font-family: 'Baloo 2', cursive;
            font-size: 4.5rem;
            font-weight: 800;
            color: var(--teal);
            line-height: 1;
        }

        .pricing-amount .period {
            font-size: 1rem;
            color: var(--charcoal-light);
            margin-top: auto;
            margin-bottom: 8px;
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px dashed var(--cream-dark);
            font-weight: 500;
        }

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

        .pricing-features .check {
            width: 24px;
            height: 24px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .pricing-cta {
            width: 100%;
            justify-content: center;
        }

        .pricing-note {
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: var(--charcoal-light);
        }

        /* ===== QUOTE ===== */
        .quote-section {
            padding: 80px 0;
            background: var(--teal);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .quote-section::before,
        .quote-section::after {
            content: '"';
            position: absolute;
            font-size: 20rem;
            font-family: 'Baloo 2', cursive;
            color: rgba(255, 255, 255, 0.1);
            line-height: 1;
        }

        .quote-section::before {
            top: -50px;
            left: 5%;
        }

        .quote-section::after {
            bottom: -150px;
            right: 5%;
        }

        .quote-text {
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            color: var(--white);
            font-style: italic;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* ===== GALLERY ===== */
        .gallery {
            padding: 100px 0;
            background: var(--cream);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 280px);
            gap: 1.5rem;
        }

        .gallery-item {
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transform: perspective(900px) rotateX(calc(var(--tilt, 0) * 1deg)) translateY(calc(var(--lift, 0) * 1px));
            transition: transform 0.45s ease, opacity 0.45s ease;
        }

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

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

        .gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(44, 62, 80, 0.3) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        /* Feature larger items */
        .gallery-item:nth-child(1) {
            grid-column: span 2;
        }

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

        /* ===== CONTACT ===== */
        .contact {
            padding: 100px 0 110px;
            background:
                linear-gradient(180deg, var(--cream) 0%, var(--white) 40%, var(--white) 100%);
            text-align: left;
        }

        .contact-layout {
            display: grid;
            grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.15fr);
            gap: 2.5rem;
            align-items: stretch;
            max-width: 1100px;
            margin: 0 auto;
        }

        .contact-aside {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-aside-intro h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            margin-bottom: 0.65rem;
            color: var(--charcoal);
            line-height: 1.05;
        }

        .contact-aside-intro p {
            color: var(--charcoal-light);
            font-size: 1.05rem;
            max-width: 28rem;
        }

        .contact-channels {
            display: grid;
            gap: 0.75rem;
        }

        .contact-channel {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            padding: 0.95rem 1.1rem;
            background: var(--white);
            border: 1px solid rgba(78, 205, 196, 0.35);
            border-radius: 18px;
            transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }

        .contact-channel:hover {
            border-color: var(--teal);
            transform: translateY(-2px);
            box-shadow: var(--shadow-soft);
        }

        .contact-channel .channel-mark {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            font-weight: 800;
            font-size: 0.78rem;
            letter-spacing: 0.04em;
            flex-shrink: 0;
            background: rgba(78, 205, 196, 0.16);
            color: var(--teal-dark);
        }

        .contact-channel .channel-mark.mail {
            background: rgba(255, 107, 157, 0.14);
            color: var(--pink);
        }

        .contact-channel strong {
            display: block;
            font-size: 1.05rem;
            font-family: 'Baloo 2', cursive;
            color: var(--charcoal);
            line-height: 1.2;
        }

        .contact-channel span {
            display: block;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--charcoal-light);
        }

        .contact-place {
            background: var(--charcoal);
            color: var(--white);
            border-radius: 24px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            flex: 1;
            min-height: 320px;
        }

        .contact-place-copy {
            padding: 1.35rem 1.4rem 1rem;
        }

        .contact-place-copy h3 {
            font-size: 1.15rem;
            margin-bottom: 0.55rem;
            color: var(--white);
        }

        .contact-place-copy address {
            font-style: normal;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.95rem;
            margin-bottom: 0.9rem;
        }

        .contact-place-copy address strong {
            color: var(--teal);
            font-size: 1rem;
        }

        .contact-place .directions-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--teal);
            color: white;
            padding: 0.55rem 1rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.88rem;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .contact-place .directions-link:hover {
            background: var(--teal-dark);
            transform: translateY(-1px);
        }

        .contact-place .map-container {
            flex: 1;
            min-height: 180px;
            border-radius: 0;
            box-shadow: none;
        }

        .contact-place .map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 180px;
            filter: grayscale(0.15) contrast(1.05);
        }

        .contact-box {
            display: none;
        }

        /* Enquiry Form */
        .enquiry-form {
            background: var(--white);
            padding: 2.25rem 2.35rem 2rem;
            border-radius: 28px;
            box-shadow: var(--shadow-medium);
            text-align: left;
            border: 1px solid rgba(44, 62, 80, 0.06);
            height: 100%;
        }
        .enquiry-form h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--charcoal);
        }

        .enquiry-form > p {
            color: var(--charcoal-light);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

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

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--charcoal);
            font-size: 0.95rem;
        }

        .form-group label .required {
            color: var(--pink);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--cream-dark);
            border-radius: var(--radius-md);
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            color: var(--charcoal);
            background: var(--cream);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--teal);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.15);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--charcoal-light);
            opacity: 0.6;
        }

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

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23546E7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 18px;
            padding-right: 48px;
        }

        .btn-submit {
            width: 100%;
            padding: 16px 32px;
            background: var(--teal);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-family: 'Nunito', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 20px rgba(78, 205, 196, 0.4);
        }

        .btn-submit:hover {
            background: var(--teal-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(78, 205, 196, 0.5);
        }

        .btn-submit:active {
            transform: translateY(-1px);
        }

        .form-note {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.85rem;
            color: var(--charcoal-light);
        }

        .form-note a {
            color: var(--teal);
            font-weight: 600;
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
            color: var(--charcoal-light);
            font-size: 0.9rem;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 2px;
            background: var(--cream-dark);
        }

        .divider span {
            padding: 0 1rem;
        }

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

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        
        .footer-contact h4 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        
        .footer-contact address {
            font-style: normal;
            line-height: 1.7;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }
        
        .footer-contact address strong {
            color: var(--coral);
        }
        
        .footer-phone {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-phone:hover {
            color: var(--coral);
        }

        .footer-logo {
            display: block;
            margin-bottom: 1rem;
        }

        .footer-logo-img {
            height: 80px;
            width: auto;
            object-fit: contain;
            border-radius: var(--radius-md);
            mix-blend-mode: lighten;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            max-width: 300px;
        }

        .footer-links h4,
        .footer-credentials h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--yellow);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.3s ease;
        }

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

        .footer-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .footer-badge .badge-icon {
            width: 24px;
            height: 24px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-inner {
                padding: 6.5rem 24px 2.75rem;
            }

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

            .about-grid,
            .learn-content {
                grid-template-columns: 1fr;
            }

            .about-image-wrapper,
            .learn-image {
                max-width: 500px;
                margin: 0 auto;
            }

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

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

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

            .footer-brand {
                grid-column: span 2;
            }

            .footer-contact {
                grid-column: span 2;
                margin-top: 1rem;
            }

            .contact-layout {
                grid-template-columns: 1fr;
                gap: 1.75rem;
            }

            .enquiry-form {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--cream);
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
                box-shadow: var(--shadow-medium);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .feature-card {
                padding: 2rem;
            }

            .enquiry-form {
                padding: 1.5rem;
            }

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

            .form-group.full-width {
                grid-column: span 1;
            }

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

            .footer-brand {
                grid-column: span 1;
                text-align: center;
            }

            .footer-brand p {
                margin: 0 auto;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(8, 250px);
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 16px;
            }

            .btn {
                padding: 14px 24px;
                font-size: 0.95rem;
            }

        }

        /* ===== ACCESSIBILITY ===== */
        
        /* Skip to content link */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--charcoal);
            color: var(--white);
            padding: 12px 24px;
            border-radius: 0 0 var(--radius-md) var(--radius-md);
            z-index: 10000;
            font-weight: 700;
            transition: top 0.3s ease;
        }

        .skip-link:focus {
            top: 0;
            outline: 3px solid var(--yellow);
            outline-offset: 2px;
        }

        /* Enhanced focus states for keyboard navigation */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 3px solid var(--teal);
            outline-offset: 3px;
        }

        .nav-cta:focus-visible {
            outline-color: var(--yellow);
        }

        .btn:focus-visible {
            outline: 3px solid var(--yellow);
            outline-offset: 3px;
        }

        /* Reduced motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }

            .stitch-cinema {
                display: none !important;
            }

            .sticky-book-bar {
                display: none !important;
            }

            .hero-media {
                transform: none !important;
            }

            .gallery-item {
                transform: none !important;
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            :root {
                --shadow-soft: 0 2px 4px rgba(0, 0, 0, 0.3);
                --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.4);
            }

            .feature-card,
            .credential-badge,
            .learn-list li {
                border: 2px solid var(--charcoal);
            }
        }

        /* 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;
        }

        /* ===== FLOATING BUTTONS ===== */
        
        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 100px;
            right: 24px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-btn svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 50px;
            height: 50px;
            background: var(--charcoal);
            color: var(--white);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow-medium);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--teal);
            transform: translateY(-3px);
        }

        @media (max-width: 900px) {
            body {
                padding-bottom: 72px;
            }

            .whatsapp-btn {
                width: 55px;
                height: 55px;
                bottom: 150px;
                right: 16px;
            }

            .whatsapp-btn svg {
                width: 28px;
                height: 28px;
            }

            .back-to-top {
                width: 45px;
                height: 45px;
                right: 16px;
                bottom: 88px;
            }
        }

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

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

        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

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

        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

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

        /* Stagger children animations */
        .stagger-children > * {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease-out, transform 0.4s ease-out;
        }

        .stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
        .stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
        .stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
        .stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
        .stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
        .stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

        .stagger-children.visible > * {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== LIGHTBOX ===== */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90vh;
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .lightbox.active img {
            transform: scale(1);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--white);
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            background: var(--teal);
            color: var(--white);
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: var(--white);
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .lightbox-nav:hover {
            background: var(--teal);
            color: var(--white);
        }

        .lightbox-prev { left: 20px; }
        .lightbox-next { right: 20px; }

        /* ===== COOKIE BANNER ===== */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--charcoal);
            color: var(--white);
            padding: 1.25rem;
            z-index: 9999;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .cookie-banner.visible {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .cookie-text {
            flex: 1;
            min-width: 280px;
        }

        .cookie-text p {
            margin: 0;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .cookie-text a {
            color: var(--teal);
        }

        .cookie-buttons {
            display: flex;
            gap: 0.75rem;
        }

        .cookie-btn {
            padding: 10px 24px;
            border-radius: 50px;
            font-family: 'Nunito', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .cookie-accept {
            background: var(--teal);
            color: var(--white);
        }

        .cookie-accept:hover {
            background: var(--teal-dark);
        }

        .cookie-decline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .cookie-decline:hover {
            border-color: var(--white);
        }

        /* ===== NEWSLETTER ===== */
        .newsletter {
            background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
            padding: 60px 0;
            text-align: center;
        }

        .newsletter h2 {
            color: var(--white);
            font-size: clamp(1.5rem, 4vw, 2rem);
            margin-bottom: 0.5rem;
        }

        .newsletter p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 0.75rem;
        }

        .newsletter-form input[type="email"] {
            flex: 1;
            padding: 14px 20px;
            border: none;
            border-radius: 50px;
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            outline: none;
        }

        .newsletter-form input[type="email"]:focus {
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
        }

        .newsletter-form button {
            padding: 14px 28px;
            background: var(--yellow);
            color: var(--charcoal);
            border: none;
            border-radius: 50px;
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-form button:hover {
            background: var(--white);
            transform: translateY(-2px);
        }

        .newsletter-note {
            margin-top: 1rem;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
        }

        @media (max-width: 600px) {
            .newsletter-form {
                flex-direction: column;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
        }
    

/* --- Utility classes (replace inline style attributes; the CSP forbids them) --- */
.detail-label { font-weight: 700; color: var(--charcoal-light); margin-bottom: 8px; }
.detail-label-spaced { font-weight: 700; color: var(--charcoal-light); margin: 12px 0 8px; }
.detail-note { font-size: 0.85rem; font-weight: 600; color: var(--charcoal-light); }
.detail-note-strong { margin-top: 14px; color: var(--charcoal-light); font-weight: 700; }
.map-frame { border: 0; }
.hidden-block { display: none; }
