        :root {
            --bg-deep: #f7f3eb; --bg-dark: #ece5d9; --bg-card: #ffffff;
            --purple: #6b269c; --purple-light: #8d4fbb; --purple-glow: rgba(107,38,156,0.32);
            --purple-subtle: #ead8f4; --purple-dark: #f1e4f7; --purple-mid: #b084d0;
            --white: #1f1b2e; --white-pure: #ffffff; --gray: #5f5671; --gray-dim: #837a95;
            --font-display: 'Fraunces', serif; --font-body: 'DM Sans', sans-serif;
            --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
        }
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--purple) var(--bg-deep); }
        body { font-family: var(--font-body); background: var(--bg-deep); color: var(--white); overflow-x: hidden; cursor: auto; -webkit-font-smoothing: antialiased; display: flex; flex-direction: column; min-height: 100dvh; }
        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }
        button { cursor: auto; font-family: var(--font-body); }
        ::selection { background: var(--purple); color: var(--white-pure); }
        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: var(--bg-deep); }
        ::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 10px; }

        /* BACKGROUND */
        .page-orb {
            position: fixed; border-radius: 50%;
            filter: blur(120px); pointer-events: none; z-index: 0;
            animation: floatOrb 10s ease-in-out infinite;
        }
        .page-orb-1 { width: 660px; height: 660px; background: var(--purple); top: -5%; left: -10%; opacity: 0.15; }
        .page-orb-2 { width: 450px; height: 450px; background: var(--purple-light); bottom: 10%; right: -8%; opacity: 0.10; animation-delay: -4s; }
        @keyframes floatOrb {
            0%, 100% { transform: translate(0,0) scale(1); }
            33% { transform: translate(25px,-25px) scale(1.04); }
            66% { transform: translate(-15px,15px) scale(0.96); }
        }

        /* PAGE HEADER */
        .gallery-header {
            position: relative; z-index: 1;
            padding: 7.5rem 3rem 2.5rem;
            max-width: 1300px; margin: 0 auto; width: 100%;
        }
        .gallery-back {
            display: inline-flex; align-items: center; gap: 0.5rem;
            font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
            text-transform: uppercase; color: var(--purple-light);
            transition: gap 0.3s ease;
            margin-bottom: 2rem;
        }
        .gallery-back:hover { gap: 0.8rem; }
        .gallery-back svg { width: 14px; height: 14px; }
        .gallery-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--purple-light); font-weight: 600; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.6rem; }
        .gallery-label::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--purple-light); }
        .gallery-title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.0; }
        .gallery-title em { font-style: italic; font-weight: 500; color: var(--purple-light); }
        .gallery-count { margin-top: 0.8rem; font-size: 0.85rem; color: var(--gray-dim); }

        /* GALLERY GRID */
        .gallery-grid {
            position: relative; z-index: 1;
            padding: 0 2rem 5rem;
            max-width: 1300px; margin: 0 auto; width: 100%;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.8rem;
            grid-auto-flow: dense;
            grid-auto-rows: 8px;
        }
        .gallery-item {
            border-radius: 12px; overflow: hidden;
            position: relative; aspect-ratio: 4/3;
            background: var(--bg-dark);
            cursor: auto;
            margin: 0;
            width: 100%;
        }
        .gallery-item--horizontal { aspect-ratio: 4/3; }
        .gallery-item--vertical { aspect-ratio: 3/4; }
        .gallery-item img {
            width: 100%; height: 100%; object-fit: cover; display: block;
            transition: transform 0.6s var(--ease-out);
        }
        .gallery-item:hover img { transform: scale(1.06); }
        .gallery-item::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(107,38,156,0.3), transparent 60%);
            opacity: 0; transition: opacity 0.4s ease;
            pointer-events: none;
        }
        .gallery-item:hover::after { opacity: 1; }

        /* SEO COPY SECTION */
        .seo-copy {
            position: relative; z-index: 1;
            background: var(--bg-dark);
            margin: 0;
            padding: 3.2rem 2rem 4.2rem;
        }
        .seo-copy-inner {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
            gap: 1.2rem;
            align-items: center;
        }
        .seo-copy-content {
            padding: clamp(1.2rem, 2vw, 1.8rem);
        }
        .seo-copy h2 {
            font-family: var(--font-display);
            font-size: clamp(1.35rem, 2.2vw, 2rem);
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 0.8rem;
        }
        .seo-copy h3 {
            font-family: var(--font-display);
            font-size: clamp(1.02rem, 1.5vw, 1.25rem);
            line-height: 1.2;
            margin: 1.05rem 0 0.5rem;
            color: var(--purple);
        }
        .seo-copy p {
            font-size: 1.02rem;
            color: var(--gray);
            line-height: 1.72;
        }
        .seo-copy-cta-card {
            border-radius: 22px;
            padding: clamp(0.9rem, 1.45vw, 1.15rem);
            background: linear-gradient(145deg, rgba(107,38,156,0.97), rgba(141,79,187,0.9));
            color: var(--white-pure);
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 18px 45px rgba(107,38,156,0.28);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.52rem;
            width: min(100%, 332px);
            align-self: center;
        }

        .seo-copy-cta-card h3 {
            font-family: var(--font-display);
            font-size: clamp(1.15rem, 1.7vw, 1.42rem);
            line-height: 1.12;
            color: var(--white-pure);
            margin: 0;
        }
        .seo-copy-cta-card p {
            color: rgba(255,255,255,0.9);
            font-size: 0.92rem;
            line-height: 1.55;
        }
.seo-copy-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: fit-content;
    margin-top: 0.2rem;
    padding: 0.62rem 0.96rem;
    border-radius: 999px;
    background: var(--white-pure);
    color: var(--purple);
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.seo-copy-cta-btn .btn-icon {
    width: 0.95rem;
    height: 0.95rem;
    display: inline-flex;
}
.seo-copy-cta-btn .btn-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

        .seo-copy-cta-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 22px rgba(31,27,46,0.2);
        }

        /* LIGHTBOX */
        .lightbox {
            position: fixed; inset: 0; z-index: 99990;
            background: rgba(10, 7, 20, 0.95);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none;
            transition: opacity 0.3s ease;
        }
        .lightbox.open { opacity: 1; pointer-events: auto; }
        .lightbox-img-wrap {
            max-width: min(92vw, 1200px);
            max-height: 88vh;
            position: relative;
        }
        .lightbox-img-wrap img {
            max-width: 100%; max-height: 88vh;
            object-fit: contain; border-radius: 8px;
            display: block;
            box-shadow: 0 32px 80px rgba(0,0,0,0.6);
        }
        .lightbox-close {
            position: absolute; top: -2.8rem; right: 0;
            background: none; border: none; color: rgba(255,255,255,0.7);
            font-size: 1.5rem; cursor: pointer; padding: 0.4rem;
            transition: color 0.2s ease;
            line-height: 1;
        }
        .lightbox-close:hover { color: #fff; }
        .lightbox-btn {
            position: fixed; top: 50%; transform: translateY(-50%);
            width: 52px; height: 52px; border-radius: 50%;
            background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
            color: #fff; display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: all 0.3s ease; z-index: 10;
        }
        .lightbox-btn:hover { background: var(--purple); border-color: var(--purple); transform: translateY(-50%) scale(1.08); }
        .lightbox-btn svg { width: 20px; height: 20px; }
        .lightbox-prev { left: 1.5rem; }
        .lightbox-next { right: 1.5rem; }
        .lightbox-counter {
            position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
            color: rgba(255,255,255,0.6); font-size: 0.82rem; letter-spacing: 0.1em;
            background: rgba(0,0,0,0.4); padding: 0.35rem 1rem; border-radius: 100px;
        }

        /* RESPONSIVE */
        @media (max-width: 900px) {
            .seo-copy { padding: 2.4rem 1rem 3rem; }
            .seo-copy-inner { grid-template-columns: 1fr; }
            .seo-copy-content { padding: 1rem; }
            .seo-copy-cta-card { width: 100%; max-width: none; align-self: stretch; }
        }
        @media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
        @media (max-width: 768px) {
            body { cursor: auto; }
            .gallery-header { padding: 6.5rem 1.5rem 2rem; }
            .gallery-grid { padding: 0 1rem 3rem; gap: 0.5rem; }
            .lightbox-btn { width: 40px; height: 40px; }
            .lightbox-prev { left: 0.5rem; }
            .lightbox-next { right: 0.5rem; }
            .back-to-top { bottom: 1.2rem; right: 1.2rem; cursor: auto; }
        }
        @media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
    
