 /* ── Reset & Base ── */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --brand:    #73075d;
            --accent:   #f8a501;
            --blue:     #001aff;
            --ink:      #1a1a2e;
            --soft:     #f7f4f0;
            --white:    #ffffff;
            --card-bg:  rgba(255,255,255,0.85);
            --radius:   16px;
            --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--soft);
            color: var(--ink);
            overflow-x: hidden;
        }

        /* ── HERO SECTION ── */
        .home-section {
            position: relative;
            min-height: 92vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: var(--ink);
        }

        /* Layered background */
        .home-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/img bg2.jpg');
            
            background-size: cover;
            background-position: center;
            filter: brightness(0.35) saturate(1.2);
            z-index: 0;
        }

        /* Gradient overlay */
        .home-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(115,7,93,0.55) 0%,
                rgba(0,26,255,0.25) 60%,
                transparent 100%
            );
            z-index: 1;
        }

        /* Decorative ring */
        .hero-ring {
            position: absolute;
            width: 520px;
            height: 520px;
            border-radius: 50%;
            border: 1px solidrgba(115,7,93,0.55);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            animation: pulse-ring 4s ease-in-out infinite;
        }
        .hero-ring-2 {
            width: 680px;
            height: 680px;
            border-color: rgba(248,165,1,0.08);
            animation-delay: 1s;
        }

        @keyframes pulse-ring {
            0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
            50%       { transform: translate(-50%,-50%) scale(1.04); opacity: 0.6; }
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center; 
            padding: 40px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            animation: fadeUp 0.9s ease both;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(32px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* Profile Image */
        .profile-image-wrap {
            position: relative;
            display: inline-block;
        }
        .profile-image-wrap::before {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            background: conic-gradient(var(--accent), var(--brand), var(--blue), var(--accent));
            animation: spin 5s linear infinite;
            z-index: -1;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        .profile-image {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 4px solid var(--white);
            object-fit: cover;
            display: block;
        }

        .hero-eyebrow {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent);
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.4rem, 6vw, 4rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1.1;
        }

        .hero-title span {
            color: var(--accent);
        }

        .hero-sub {
            font-size: 1rem;
            color: rgba(255,255,255,0.78);
            max-width: 480px;
            line-height: 1.7;
        }

        .hero-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .badge {
            padding: 6px 16px;
            border-radius: 99px;
            border: 1px solid rgba(255,255,255,0.22);
            font-size: 0.78rem;
            color: rgba(255,255,255,0.85);
            backdrop-filter: blur(8px);
            background: rgba(255,255,255,0.08);
        }

        .hero-cta {
            display: inline-block;
            margin-top: 8px;
            padding: 14px 36px;
            background: var(--accent);
            color: var(--ink);
            font-weight: 700;
            font-size: 0.9rem;
            border-radius: 99px;
            text-decoration: none;
            letter-spacing: 0.04em;
            transition: transform var(--transition), box-shadow var(--transition);
            box-shadow: 0 4px 24px rgba(248,165,1,0.35);
        }
        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 32px #73075d;
        }

        /* Scroll indicator */
        .scroll-hint {
            position: absolute;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            color: rgba(255,255,255,0.45);
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            animation: fadeUp 1.2s 0.5s ease both;
        }
        .scroll-hint .arrow {
            width: 20px;
            height: 20px;
            border-right: 2px solid rgba(255,255,255,0.4);
            border-bottom: 2px solid rgba(255,255,255,0.4);
            transform: rotate(45deg);
            animation: bounce 1.5s infinite;
        }
        @keyframes bounce {
            0%,100% { transform: rotate(45deg) translateY(0); }
            50%      { transform: rotate(45deg) translateY(5px); }
        }

        /* ── GALLERY SECTION ── */
        .gallery-section {
            padding: 90px 40px;
            background: var(--soft);
        }

        .section-header {
            text-align: center;
            margin-bottom: 52px;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--brand);
            margin-bottom: 10px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            color: var(--ink);
            line-height: 1.2;
        }

        .section-line {
            width: 48px;
            height: 3px;
            background: var(--accent);
            margin: 14px auto 0;
            border-radius: 99px;
        }

        /* Masonry-style grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: auto;
            gap: 16px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: var(--radius);
            position: relative;
            background: #ddd;
        }

        /* Layout positions */
        .gallery-item:nth-child(1) { grid-column: 1 / 6;  grid-row: 1 / 3; }
        .gallery-item:nth-child(2) { grid-column: 6 / 9;  grid-row: 1 / 2; }
        .gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
        .gallery-item:nth-child(4) { grid-column: 6 / 10; grid-row: 2 / 3; }
        .gallery-item:nth-child(5) { grid-column: 10 / 13; grid-row: 2 / 3; }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform var(--transition), filter var(--transition);
            filter: saturate(0.9);
        }

        /* Overlay */
        .gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(115,7,93,0.55), transparent 55%);
            opacity: 0;
            transition: opacity var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.06);
            filter: saturate(1.15);
        }
        .gallery-item:hover::after {
            opacity: 1;
        }

        /* Height constraints */
        .gallery-item:nth-child(1) { min-height: 340px; }
        .gallery-item:nth-child(2),
        .gallery-item:nth-child(3) { min-height: 165px; }
        .gallery-item:nth-child(4),
        .gallery-item:nth-child(5) { min-height: 165px; }

        /* More link */
        .gallery-more-wrap {
            text-align: center;
            margin-top: 36px;
        }

        .gallery-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--brand);
            text-decoration: none;
            padding: 10px 24px;
            border: 2px solid var(--brand);
            border-radius: 99px;
            transition: background var(--transition), color var(--transition);
            letter-spacing: 0.04em;
        }
        .gallery-more:hover {
            background: var(--brand);
            color: var(--white);
        }

        /* ── ABOUT STRIP ── */
        .about-strip {
            background: var(--ink);
            padding: 70px 40px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-inner {
            max-width: 700px;
            text-align: center;
        }

        .about-inner .section-tag { color: var(--accent); }
        .about-inner .section-title { color: var(--white); }

        .about-inner p {
            margin-top: 20px;
            color: rgba(255,255,255,0.65);
            font-size: 1rem;
            line-height: 1.85;
        }

        .stat-row {
            display: flex;
            justify-content: center;
            gap: 48px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--accent);
        }

        .stat-label {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.5);
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-top: 4px;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }
            .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; min-height: 220px; }
            .gallery-item:nth-child(2),
            .gallery-item:nth-child(3),
            .gallery-item:nth-child(4),
            .gallery-item:nth-child(5) { grid-column: auto; grid-row: auto; min-height: 160px; }

            .gallery-section { padding: 60px 20px; }
            .about-strip { padding: 60px 24px; }
            .stat-row { gap: 28px; }
        }

        @media (max-width: 480px) {
            .gallery-grid { grid-template-columns: 1fr; }
            .gallery-item:nth-child(n) { grid-column: 1; }
        }